/* ===============================
    ARTICLE CONTAINER
    =============================== */
.article-container {
    width: 100%;
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
    overflow: visible !important;
    height: auto !important;
}

@media (max-width: 1000px) {
    .article-container {
        padding: 0 2rem;
    }

    .article-hero-heading {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

.article-hero-heading {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3.5rem;
    margin-bottom: 3.5rem;
    padding-top: 5rem;
    justify-content: flex-start;
    min-height: 140px;
    /* Break out of container to full width */
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    max-width: 140rem;
    padding-left: 4rem;
    padding-right: 4rem;
    box-sizing: border-box;
}


/* Hero image container with fixed size and cropping */
.main-article-hero.image-container {
    width: 535px;
    aspect-ratio: 4 / 3;
    height: auto;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(37, 105, 243, 0.08);
    margin-left: 0;
}

.main-article-hero.image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 0;
}

@media (min-width: 768px) {
    .article-container {
        padding: 0 3rem;
    }
}

/* Tablet breakpoint for hero image */
@media (max-width: 1024px) {
    .main-article-hero.image-container {
        width: 380px;
    }
}

.article-heading-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    word-break: break-word;
    align-items: flex-start;
    text-align: left;
    padding-top: 0;
}


/* ===============================
    ARTICLE CATEGORY CHIP(S)
    =============================== */

.chip-label {
    display: inline-block;
    position: relative;
    z-index: 1;
    border: none;
    margin-right: 0.75rem;
    margin-bottom: 0.75rem;
    background: #f5f7fa;
    color: #1769ff;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(37, 105, 243, 0.10);
    text-align: left;
    visibility: visible;
    opacity: 1;
}

/* ===============================
    MAIN ARTICLE TITLE & METADATA
    =============================== */
.main-article-title {
    font-size: 64px;
    font-weight: 700;
    margin: 1.2rem 0 1.7rem 0;
    padding-bottom: 0.2rem;
    letter-spacing: -0.02em;
    color: #111111;
}

.main-article-meta-tags {
    margin-bottom: 0;
    margin-right: 4rem;
    line-height: 2.5;
}

.article-meta-tag {
    display: flex;
    align-items: center;
    gap: 0.6em;
    white-space: nowrap;
    line-height: 1.4;
}

.meta-icon {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.article-share-icons-row {
    display: flex;
    flex-direction: row;
    gap: 0.75em;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

/* Remove bullets from all share icons, including nested lists */
.article-share-icons-row,
.article-share-icons-row li {
    list-style: none;
    background: none;
    margin-left: 0;
    padding-left: 0;
}

/* Remove background from share icon buttons */
.article-share-icons-row button.geico-icon {
    background: none;
    box-shadow: none;
    border: none;
    padding: 0;
    margin: 0;
    border-radius: 0;
}

.main-article-meta-share-row {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    margin-top: 1.5rem;
}

.main-article-share {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 220px;
}

.main-article-share .share-title {
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

/* ===============================
    ARTICLE LAYOUT
    (main columns: left = Key Takeaways + content, right = table of contents)
    =============================== */
.article-top-columns {
    display: flex;
    gap: 5rem;
    margin-bottom: 2.5rem;
    align-items: stretch;
}

/* Ensure sticky TOC never overlaps footer when no sources */
.article-top-columns.no-sources {
    margin-bottom: 1rem;
}

/* Left column: Key Takeaways + Article Content - Figma: 928px at 1440px viewport */
.article-top-left {
    flex: 1;
    max-width: 928px;
    min-width: 0;
}

/* Right column: Table of Contents - Figma: 255px at 1440px viewport */
.article-top-right {
    width: 255px;
    flex-shrink: 0;
    background: #f5f3f0;
    border-radius: 12px;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: fit-content;
    justify-content: flex-start;
    position: sticky;
    top: 7.5rem;
    z-index: 10;
}

/* Tablet (1024px - 1279px) - slightly scaled */
@media (max-width: 1279px) and (min-width: 1024px) {
    .article-top-columns {
        gap: 3rem;
    }

    .article-top-left {
        max-width: 750px;
    }
}

/* Tablet Small (769px - 1023px) - narrower layout */
@media (max-width: 1023px) and (min-width: 769px) {
    .article-top-columns {
        gap: 2.5rem;
    }

    .article-top-left {
        max-width: none;
        flex: 1;
    }
}

/* ===============================
    KEY TAKEAWAYS
    =============================== */
.key-takeaways {
    background: #f5f3f0;
    color: #1C1C1EB2;
    padding: 2rem 2.5rem 1.5rem 2.5rem;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    box-shadow: none;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.key-takeaways h2 {
    font-size: 2rem;
    /* color: #111111; */
    margin-top: 0;
    font-weight: 700;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ===============================
    TABLE OF CONTENTS
    =============================== */
.table-of-contents {
    background: #f5f3ee;
    border-radius: 2em;
    padding: 2.5rem 2rem 2.5rem 2rem;
    margin-bottom: 0;
    width: 100%;
}

.toc-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-align: left;
    color: #111111;
    border-bottom: 1px solid #E5E5E0;
    padding-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hide toggle button on desktop - TOC title shows normally */
@media (min-width: 769px) {
    .toc-title {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .toc-toggle-btn {
        display: block;
        background: none;
        border: none;
        padding: 0;
        margin: 0;
        cursor: default;
        font-size: 2.2rem;
        color: #111111;
        border-radius: 0;
        border-bottom: 1px solid #E5E5E0;
        text-align: left;
    }

    .toc-toggle-btn:hover {
        background: none;
    }

    .toc-toggle-btn::after {
        display: none;
    }
}

.toc-list {
    scroll-behavior: smooth;
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.toc-item {
    margin-bottom: 2.2rem;
    font-size: 1.75rem;
    font-weight: 400;
    color: #222;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    padding: 1em 1em;
    display: block;
    text-decoration: none;
    text-align: left;
    list-style: none;
    border-radius: 4px;
}

.toc-item:last-child {
    margin-bottom: 0;
}

.toc-item-selected {
    background: #0066e0;
    color: #fff;
    font-weight: 700;
}

/* Ensure TOC anchor links scroll headings below sticky header */
.article-content h2[id] {
    scroll-margin-top: var(--toc-scroll-offset, 100px);
}

/* ===============================
    ARTICLE CONTENT BLOCKS
    =============================== */
.content-block,
.content-block * {
    margin-bottom: 2.5rem;
    line-height: 2;
}

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

/* Remove double spacing if two blocks of same type are adjacent */
.content-block + .content-block {
    margin-top: 0;
    margin-bottom: 2rem;
}
.article-content {
    padding: 2rem 0 4.5rem 0;
}

.article-content ul li {
    display: list-item;
    list-style-type: disc;
}

.article-content ol li {
    display: list-item;
    list-style-type: decimal;
}

.content-block.paragraph-block ul {
    list-style: disc inside;
    padding-left: 2em;
    margin-left: 0;
}

.content-block.paragraph-block ol {
    list-style: decimal inside;
    padding-left: 2em;
    margin-left: 0;
}

/* Override CMS list classes */
.article-content ol.list,
.article-content ol.list--ordered,
.content-block.paragraph-block ol.list,
.content-block.paragraph-block ol.list--ordered {
    list-style: decimal inside !important;
    padding-left: 2em !important;
    margin-left: 0 !important;
    counter-reset: none !important;
}

.article-content ol.list li,
.article-content ol.list--ordered li,
.content-block.paragraph-block ol.list li,
.content-block.paragraph-block ol.list--ordered li {
    display: list-item !important;
    list-style-type: decimal !important;
    padding-left: 0 !important;
    counter-increment: none !important;
}

.article-content ol.list li::before,
.article-content ol.list--ordered li::before,
.content-block.paragraph-block ol.list li::before,
.content-block.paragraph-block ol.list--ordered li::before {
    content: none !important;
    display: none !important;
}

.article-content ul.list,
.article-content ul.list--unordered,
.content-block.paragraph-block ul.list,
.content-block.paragraph-block ul.list--unordered {
    list-style: disc inside !important;
    padding-left: 2em !important;
    margin-left: 0 !important;
}

.article-content ul.list li,
.article-content ul.list--unordered li,
.content-block.paragraph-block ul.list li,
.content-block.paragraph-block ul.list--unordered li {
    display: list-item !important;
    list-style-type: disc !important;
    padding-left: 0 !important;
}

.article-content ul.list li::before,
.article-content ul.list--unordered li::before,
.content-block.paragraph-block ul.list li::before,
.content-block.paragraph-block ul.list--unordered li::before {
    content: none !important;
    display: none !important;
}

/* ===============================
    WHAT DOES THIS MEAN BLOCK
    =============================== */
.what-does-this-mean-block {
    background: #f5f3f0;
    padding: 2rem 2.5rem 1.5rem 2.5rem;
    border-radius: 12px;
    margin-bottom: 2.5rem;
    box-shadow: none;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.what-does-this-mean-block h2 {
    font-size: 2rem;
    color: #222222;
    margin-top: 0;
    font-weight: 600;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.what-does-this-mean-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-align: left;
    color: #111111;
    border-bottom: 1px solid #E5E5E0;
    padding-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===============================
    FAQ BLOCK
    =============================== */
.faq-block h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-top: 3rem;
    margin-bottom: 2rem;
    color: #111;
    letter-spacing: -0.01em;
}

.faq-block .faq-item {
    border-bottom: 1px solid #ddd;
    padding: 1rem 0;
}

.faq-question.accordion-description {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.75rem;
    font-weight: 400;
    color: #111;
    padding: 0.5rem 0;
    transition: color 0.2s;
    text-align: left;
    position: relative;
}

.faq-question-text {
    flex: 1 1 auto;
    text-align: left;
    font-weight: 400;
}

.faq-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    margin-left: 1rem;
    margin-right: 0;
    vertical-align: middle;
    transition: transform 0.3s cubic-bezier(.4, 0, .2, 1);
    background: none;
    position: relative;
    flex-shrink: 0;
}

.faq-arrow::before {
    content: '';
    display: block;
    width: 0.7em;
    height: 0.7em;
    border-right: 3px solid #2569F3;
    border-bottom: 3px solid #2569F3;
    transform: rotate(45deg);
    position: relative;
    left: 0;
    top: 0.05em;
}

.faq-question[aria-expanded="true"] .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer.accordion-content {
    padding-left: 2.5rem;
    padding-top: 0.5rem;
    font-size: 1.75rem;
    color: #222;
    font-weight: 400;
    transition: max-height 0.3s cubic-bezier(.4, 0, .2, 1), opacity 0.3s cubic-bezier(.4, 0, .2, 1);
    overflow: hidden;
}

/* ===============================
    COLUMNLAYOUT BLOCK
    =============================== */
.columns {
    width: 100%;
}

.column-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.column-box {
    width: 50%;
    background: #f5f3ee;
    border-radius: 2em;
    border: 1px solid #eceae3;
    padding: 2rem 1.5rem;
    box-sizing: border-box;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.column-box h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.column-box p {
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0;
}

@media (max-width: 1200px) {
    .column-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .column-box {
        width: 100%;
    }
}

/* ===============================
    TABBED CONTENT
    =============================== */
.tabs-block {
    margin-bottom: 2.5rem;
}

.tabbed-content-tabs {
    display: flex;
    gap: 1.25rem;
    background: #0066e0;
    padding: 0.5rem 1.5rem;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    border-radius: 2em;
    justify-content: flex-start;
}

.tabbed-content-tab {
    background: #0066e0;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 0.65em 2.2em;
    border-radius: 2em;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s;
    outline: none;
    margin-bottom: 0;
    box-shadow: none;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.tabbed-content-tab.active,
.tabbed-content-tab[aria-selected="true"] {
    background: #fff;
    color: #0066e0;
    font-weight: 900;
    border: 2px solid #0066e0;
    z-index: 1;
}

.tabbed-content-tab:not(.active):not([aria-selected="true"]) {
    background: #0066e0;
    color: #fff;
    border: none;
}

.tabbed-content-panels {
    border: 2px solid #0066e0;
    border-radius: 2em;
    background: #fff;
    padding: 2.5rem 2rem;
    margin-top: -1.5rem;
}

/* ===============================
    IMAGE BLOCKS
    =============================== */
.image-block img {
    width: 100%;
    display: block;
}

/* ===============================
    EMBEDDED YOUTUBE VIDEO
    =============================== */
.video-block video {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.video-embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.video-embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===============================
    CALL-TO-ACTION (CTA) BLOCK
    =============================== */

.cta-block {
    background: #0066e0;
    color: white;
    padding: 2rem;
    border-radius: 24px;
    text-align: center;
    margin: 2rem 2rem;
}

.cta-block h2,
.cta-block h2[id] {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    border-radius: 12px;
}

.cta-block p {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.cta-button {
    background: #fff;
    color: #111;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 32px;
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    margin-right: 1rem;
    transition: background 0.2s, color 0.2s;
}

.cta-button.cta-primary {
    background: #fff;
    color: #111;
    border: none;
}

.cta-button.cta-secondary {
    background: #0066cc;
    color: #fff;
    border: 2px solid #fff;
    margin-right: 0;
}

/* ===============================
    TABLE BLOCK
    =============================== */
.table-block table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.table-block th,
.table-block td {
    width: auto;
    height: 56px;
    text-align: center;
    vertical-align: middle;
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
    box-sizing: border-box;
}

.table-block thead th {
    background: #1769ff;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

.table-block th.table-header,
.content-block.table-block table th.table-header {
    background: #1567f6;
    color: #fff;
    font-weight: 700;
    border-bottom: 2px solid #1567f6;
    text-align: center;
}

/* ===============================
    SOURCES BLOCK
    =============================== */
.article-sources {
    margin: 2.5rem 0 2.5rem 0;
    padding-bottom: 7rem;
    border-top: 1px solid #ddd;
}

.sources-list {
    list-style-type: disc;
    padding-left: 2rem;
    margin-left: 0;
    margin-bottom: 0.5rem;
}

.source-item,
.article-sources li {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

/* ===============================
    MOBILE RESPONSIVE STYLES
    =============================== */

/* Mobile: Stack everything vertically */
@media (max-width: 768px) {
    /* Hero section - stack vertically */
    .article-hero-heading {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 2.5rem;
        padding-top: 2rem;
        padding-left: 2rem;
        padding-right: 2rem;
        align-items: flex-start;
    }

    .main-article-hero.image-container {
        width: 100%;
        max-width: 400px;
        aspect-ratio: 4 / 3;
        height: auto;
    }

    /* Main title */
    .main-article-title {
        font-size: 64px;
        margin: 1rem 0 1.2rem 0;
    }

    /* Meta tags and share - stack vertically */
    .main-article-meta-share-row {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .main-article-meta-tags {
        margin-right: 0;
    }

    .main-article-share {
        min-width: auto;
        width: 100%;
    }

    /* Article layout - stack vertically with custom order */
    .article-top-columns {
        flex-direction: column;
        gap: 0;
        margin-bottom: 2rem;
    }

    /* Use display: contents to flatten hierarchy for flexbox ordering */
    .article-top-left {
        display: contents;
    }

    /* Set order: Key Takeaways (1), TOC (2), Article Content (3) */
    .key-takeaways {
        order: 1;
        padding: 1.5rem 2rem;
        margin-bottom: 2rem;
    }

    /* TOC appears between Key Takeaways and Article Content */
    .article-top-right {
        order: 2;
        position: static;
        max-width: none;
        width: 100%;
        margin-bottom: 2rem;
        padding-bottom: 0;
    }

    /* Article Content comes after TOC */
    .article-content {
        order: 3;
    }

    .key-takeaways h2 {
        font-size: 1.8rem;
    }

    /* Table of Contents - collapsible on mobile */
    .table-of-contents {
        padding: 0;
        margin-bottom: 0;
        background: transparent;
    }

    /* TOC header wrapper */
    .toc-title {
        margin-bottom: 0;
        padding: 0;
        border: none;
    }

    /* TOC toggle button - only visible/functional on mobile */
    .toc-toggle-btn {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        background: #f5f3f0;
        border: none;
        border-radius: 12px;
        cursor: pointer;
        font-size: 1.8rem;
        font-weight: 700;
        color: #111111;
        padding: 1.1rem 1.6rem;
        min-height: 4.4rem;
        line-height: 1.2;
        transition: background 0.2s;
        position: relative;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        text-align: left;
    }

    .toc-title-text {
        flex: 1;
        display: inline-flex;
        align-items: center;
        line-height: 1.2;
    }

    /* Add arrow to TOC button on mobile */
    .toc-toggle-btn::after {
        content: '';
        display: block;
        width: 0.7em;
        height: 0.7em;
        border-right: 3px solid #2569F3;
        border-bottom: 3px solid #2569F3;
        transform: rotate(45deg) translateY(-1px);
        transition: transform 0.3s cubic-bezier(.4, 0, .2, 1);
        margin-left: 1rem;
        flex-shrink: 0;
    }

    .toc-toggle-btn[aria-expanded="true"]::after {
        transform: rotate(-135deg) translateY(1px);
    }

    /* TOC list - hidden by default on mobile */
    .toc-list {
        display: none;
        background: #f5f3f0;
        border-radius: 0 0 12px 12px;
        padding: 0.75rem 1.6rem 1.4rem 1.6rem;
        margin-top: 0.4rem;
    }

    .toc-list.toc-visible {
        display: block;
    }

    .toc-item {
        font-size: 1.6rem;
        padding: 0.5em 0.6em;
        margin-bottom: 1.1rem;
    }

    /* Article content */
    .article-content {
        padding: 0 0 2rem 0;
    }

    /* Content blocks */
    .content-block,
    .content-block * {
        margin-bottom: 2rem;
    }

    /* FAQ */
    .faq-block h2 {
        font-size: 2.4rem;
        margin-top: 2rem;
    }

    .faq-question.accordion-description {
        font-size: 1.6rem;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .faq-question-text {
        min-width: 0;
        padding-right: 0.75rem;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .faq-arrow {
        margin-top: 0.35rem;
    }

    .faq-answer.accordion-content {
        font-size: 1.6rem;
        padding-left: 1rem;
    }

    /* Columns - already stack at 1200px, adjust padding */
    .column-box {
        padding: 1.5rem 1.2rem;
    }

    .column-box h3 {
        font-size: 1.6rem;
    }

    /* Tabbed content */
    .tabbed-content-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        gap: 0.75rem;
        padding: 0.5rem 1rem;
        -webkit-overflow-scrolling: touch;
        align-items: center !important;
    }

    .tabbed-content-tab {
        font-size: 1.4rem;
        padding: 0.65em 1.5em;
        text-align: left;
        justify-content: flex-start;
        flex-shrink: 0;
        white-space: nowrap;
        margin-bottom: 0 !important;
        align-self: center;
    }

    .tabbed-content-panels {
        padding: 1.5rem 1rem;
    }

    /* CTA block */
    .cta-block {
        padding: 1.5rem 1.2rem;
    }

    .cta-block h2,
    .cta-block h2[id] {
        font-size: 1.8rem;
    }

    .cta-block p {
        font-size: 1.6rem;
    }

    .cta-button {
        display: block;
        margin: 0.5rem 0;
        text-align: center;
    }

    /* Table - scroll horizontally if needed */
    .table-block {
        overflow-x: auto;
    }

    .table-block table {
        min-width: 500px;
    }

    /* Sources */
    .article-sources {
        padding-bottom: 3rem;
        margin: 2rem 0 2rem 0;
    }

    .article-sources h2 {
        font-size: 2.2rem;
    }

    /* Breadcrumbs */
    .kh-breadcrumb-item {
        font-size: 1.3rem;
    }

    /* Category chips */
    .chip-label {
        font-size: 1.3rem;
        padding: 5px 14px;
    }

    /* What Does This Mean block */
    .what-does-this-mean-block {
        padding: 1.5rem 2rem;
    }

    .what-does-this-mean-title {
        font-size: 1.8rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .article-container {
        padding: 0 1.5rem;
    }

    .main-article-hero.image-container {
        max-width: 320px;
    }

    .main-article-title {
        font-size: 2.5rem;
    }

    .key-takeaways {
        padding: 1.5rem 1.5rem;
    }

    /* .toc-list {
        padding: 1rem 1.5rem 1.5rem 1.5rem;
    } */

    .faq-block h2 {
        font-size: 2rem;
    }

    .article-sources h2 {
        font-size: 2rem;
    }
}

/* ===============================
    DARK MODE STYLES
    =============================== */
.dark .main-article-title {
    color: #FEFEFE;
}

.dark .key-takeaways {
    background: #2C2C2E;
    color: #FEFEFE;
}

.dark .key-takeaways h2 {
    color: #FEFEFE;
    border-bottom-color: #444444;
}

.dark .key-takeaways h3,
.dark .key-takeaways p,
.dark .key-takeaways li,
.dark .key-takeaways span {
    color: #FEFEFE;
}

.dark .table-of-contents {
    background: #2C2C2E;
}

.dark .toc-title {
    color: #FEFEFE;
    border-bottom-color: #444444;
}

.dark .toc-toggle-btn {
    color: #FEFEFE;
    border-bottom-color: #444444;
}

.dark .toc-toggle-btn {
    background: #2C2C2E;
}

.dark .toc-toggle-btn::after {
    border-right-color: #80C2FF;
    border-bottom-color: #80C2FF;
}

.dark .toc-item {
    color: #FEFEFE;
}

.dark .toc-list {
    background: #2C2C2E;
}

.dark .article-top-right {
    background: #2C2C2E;
}

/* FAQ Block - Dark Mode */
.dark .faq-block h2 {
    color: #FEFEFE;
}

.dark .faq-block .faq-item {
    border-bottom-color: #444444;
}

.dark .faq-question.accordion-description {
    color: #FEFEFE;
}

.dark .faq-question-text {
    color: #FEFEFE;
}

.dark .faq-arrow::before {
    border-right-color: #80C2FF;
    border-bottom-color: #80C2FF;
}

.dark .faq-answer.accordion-content {
    color: #E0E0E0;
}