/* WYSIWYG Content Styles */
.wysiwyg-content {
    line-height: 1.75;
    color: var(--color-zinc-600);
    font-size: 1.125rem;
    /* text-lg */
}

.wysiwyg-content p {
    margin-bottom: 1.5rem;
}

.wysiwyg-content p:last-child {
    margin-bottom: 0;
}

.wysiwyg-content h1,
.wysiwyg-content h2,
.wysiwyg-content h3,
.wysiwyg-content h4,
.wysiwyg-content h5,
.wysiwyg-content h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.25;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-zinc-900);
}

.wysiwyg-content h2 {
    font-size: 1.875rem;
    /* 3xl */
}

.wysiwyg-content h3 {
    font-size: 1.5rem;
    /* 2xl */
}

.wysiwyg-content h4 {
    font-size: 1.25rem;
    /* xl */
}

.wysiwyg-content ul {
    list-style-type: disc;
    padding-left: 1.625rem;
    margin-bottom: 1.5rem;
}

.wysiwyg-content ol {
    list-style-type: decimal;
    padding-left: 1.625rem;
    margin-bottom: 1.5rem;
}

.wysiwyg-content li {
    margin-bottom: 0.5rem;
    padding-left: 0.375rem;
}

/* Fix for double markers if list-none is applied by parent */
.wysiwyg-content ul.list-none,
.wysiwyg-content ol.list-none {
    list-style-type: none;
    padding-left: 0;
}

.wysiwyg-content a {
    color: var(--color-orange-600);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 500;
}

.wysiwyg-content a:hover {
    color: var(--color-orange-700);
}

.wysiwyg-content strong,
.wysiwyg-content b {
    font-weight: 700;
    color: var(--color-zinc-900);
}

/* Override for Orange Highlight Sections */
.wysiwyg-highlight-orange strong,
.wysiwyg-highlight-orange b {
    color: var(--color-orange-600) !important;
}

.wysiwyg-content blockquote {
    border-left: 4px solid var(--color-orange-500);
    padding: 1.5rem;
    margin: 2rem 0;
    background-color: var(--color-zinc-50);
    font-style: italic;
    color: var(--color-zinc-900);
    font-weight: 500;
}

.wysiwyg-content blockquote p:last-child {
    margin-bottom: 0;
}

.wysiwyg-content img,
.wysiwyg-content iframe,
.wysiwyg-content video {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.wysiwyg-content figure {
    margin: 2rem 0;
}

.wysiwyg-content figcaption {
    font-size: 0.875rem;
    color: var(--color-zinc-500);
    text-align: center;
    margin-top: 0.75rem;
}