:root {
    --navy-950: #071426;
    --navy-900: #0b1f3a;
    --navy-800: #12345a;
    --navy-700: #1b4a78;
    --gold-500: #d5a83f;
    --gold-400: #e2bd62;
    --gold-100: #fbf4df;
    --cream: #fffdf8;
    --surface: #ffffff;
    --surface-soft: #f5f7fa;
    --surface-blue: #eef4fa;
    --text: #172033;
    --text-soft: #586273;
    --border: #dce3eb;
    --success: #2f7d5c;
    --shadow-sm: 0 8px 24px rgba(7, 20, 38, 0.08);
    --shadow-md: 0 18px 48px rgba(7, 20, 38, 0.12);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--surface-soft);
    color: var(--text);
    font-family: "Inter", Arial, sans-serif;
    line-height: 1.72;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

button,
a,
input,
textarea,
select {
    font: inherit;
}

a {
    color: inherit;
}

button {
    border: 0;
}

img {
    display: block;
    max-width: 100%;
}

::selection {
    background: rgba(213, 168, 63, 0.28);
    color: var(--navy-950);
}

.reading-progress {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1200;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
}

.reading-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
    transition: width 80ms linear;
}

.article-page {
    overflow: hidden;
}

.article-container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.article-breadcrumb {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.article-breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 17px 0;
    list-style: none;
    color: var(--text-soft);
    font-size: 0.875rem;
    white-space: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
}

.article-breadcrumb ol::-webkit-scrollbar {
    display: none;
}

.article-breadcrumb li {
    display: inline-flex;
    align-items: center;
}

.article-breadcrumb li[aria-hidden="true"] {
    color: #9aa5b3;
    font-size: 0.7rem;
}

.article-breadcrumb a {
    color: var(--navy-700);
    text-decoration: none;
    font-weight: 600;
}

.article-breadcrumb a:hover {
    color: var(--navy-950);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.article-breadcrumb [aria-current="page"] {
    color: var(--text-soft);
}

.article-hero {
    position: relative;
    isolation: isolate;
    padding: 78px 0 74px;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 86% 12%, rgba(226, 189, 98, 0.2), transparent 30%),
        radial-gradient(circle at 12% 90%, rgba(71, 122, 174, 0.22), transparent 34%),
        linear-gradient(135deg, var(--navy-950), var(--navy-900) 58%, #102b4d);
}

.article-hero::before,
.article-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.article-hero::before {
    width: 360px;
    height: 360px;
    top: -210px;
    right: -70px;
}

.article-hero::after {
    width: 520px;
    height: 520px;
    bottom: -395px;
    left: -110px;
}

.article-hero-inner {
    max-width: 930px;
}

.article-category-link {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 13px;
    border: 1px solid rgba(226, 189, 98, 0.42);
    border-radius: 999px;
    background: rgba(213, 168, 63, 0.12);
    color: var(--gold-400);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
}

.article-category-link:hover {
    background: rgba(213, 168, 63, 0.2);
}

.article-hero h1 {
    max-width: 900px;
    margin: 22px 0 20px;
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(2.35rem, 5vw, 4.2rem);
    line-height: 1.1;
    letter-spacing: -0.045em;
}

.article-introduction {
    max-width: 810px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1.04rem, 1.8vw, 1.22rem);
    line-height: 1.75;
}

.article-byline {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
}

.author-mark {
    display: grid;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(226, 189, 98, 0.45);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--navy-950);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
}

.author-details {
    display: grid;
    gap: 3px;
}

.author-details strong {
    font-size: 0.98rem;
}

.author-details span {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.84rem;
}

.article-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.article-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 650;
    text-decoration: none;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.article-action-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(226, 189, 98, 0.45);
    background: rgba(255, 255, 255, 0.12);
}

.article-action-btn:focus-visible,
.article-category-link:focus-visible,
.article-content a:focus-visible,
.article-sidebar a:focus-visible,
.related-articles a:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(226, 189, 98, 0.55);
    outline-offset: 3px;
}

.copy-status {
    min-height: 24px;
    margin: 10px 0 0;
    color: var(--gold-400);
    font-size: 0.86rem;
    font-weight: 600;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(220px, 270px) minmax(0, 780px);
    justify-content: space-between;
    gap: 60px;
    padding-top: 64px;
    padding-bottom: 82px;
}

.article-sidebar {
    min-width: 0;
}

.toc-card {
    position: sticky;
    top: 86px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.toc-label {
    display: block;
    margin-bottom: 13px;
    color: var(--navy-900);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
}

.toc-card nav {
    display: grid;
    gap: 3px;
}

.toc-card nav a {
    position: relative;
    display: block;
    padding: 8px 0 8px 14px;
    color: var(--text-soft);
    font-size: 0.88rem;
    line-height: 1.45;
    text-decoration: none;
    transition: color 160ms ease, transform 160ms ease;
}

.toc-card nav a::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #b3bdc8;
}

.toc-card nav a:hover {
    transform: translateX(3px);
    color: var(--navy-800);
}

.toc-card nav a:hover::before {
    background: var(--gold-500);
}

.sidebar-cta {
    margin-top: 22px;
    padding: 25px;
    border-radius: var(--radius-md);
    background:
        radial-gradient(circle at 100% 0, rgba(226, 189, 98, 0.2), transparent 34%),
        var(--navy-900);
    color: #ffffff;
    box-shadow: var(--shadow-sm);
}

.sidebar-cta-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 12px;
    background: rgba(226, 189, 98, 0.14);
    color: var(--gold-400);
}

.sidebar-cta h2 {
    margin: 16px 0 8px;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 1.05rem;
    line-height: 1.35;
}

.sidebar-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.65;
}

.sidebar-cta a {
    display: inline-flex;
    margin-top: 17px;
    color: var(--gold-400);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
}

.sidebar-cta a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.article-content {
    min-width: 0;
    padding: 52px 58px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.article-section {
    scroll-margin-top: 110px;
}

.article-section + .article-section {
    margin-top: 58px;
    padding-top: 56px;
    border-top: 1px solid var(--border);
}

.article-content h2,
.article-content h3 {
    color: var(--navy-950);
    font-family: "Poppins", Arial, sans-serif;
    letter-spacing: -0.025em;
}

.article-content h2 {
    margin: 0 0 20px;
    font-size: clamp(1.65rem, 3vw, 2.15rem);
    line-height: 1.25;
}

.article-content h3 {
    margin: 30px 0 12px;
    font-size: 1.18rem;
    line-height: 1.4;
}

.article-content p {
    margin: 0 0 20px;
    color: #344054;
    font-size: 1rem;
}

.article-content strong {
    color: var(--navy-950);
}

.article-list {
    display: grid;
    gap: 11px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.article-list li {
    position: relative;
    padding-left: 28px;
    color: #344054;
}

.article-list li::before {
    content: "";
    position: absolute;
    top: 0.68em;
    left: 3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-500);
    box-shadow: 0 0 0 5px var(--gold-100);
}

.answer-box {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 17px;
    padding: 24px;
    border: 1px solid rgba(213, 168, 63, 0.38);
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--gold-100), #fffdf8);
}

.answer-icon,
.conclusion-icon {
    display: grid;
    flex: 0 0 auto;
    width: 45px;
    height: 45px;
    place-items: center;
    border-radius: 13px;
    background: var(--navy-900);
    color: var(--gold-400);
}

.answer-box strong {
    display: block;
    margin-bottom: 5px;
    font-family: "Poppins", Arial, sans-serif;
}

.answer-box p {
    margin: 0;
}

.content-note {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 13px;
    margin-top: 26px;
    padding: 18px 20px;
    border-left: 4px solid var(--navy-700);
    border-radius: 0 14px 14px 0;
    background: var(--surface-blue);
}

.content-note i {
    margin-top: 5px;
    color: var(--navy-700);
}

.content-note p {
    margin: 0;
    font-size: 0.94rem;
}

.comparison-table-wrapper {
    width: 100%;
    margin-top: 24px;
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--surface);
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
    vertical-align: top;
    text-align: left;
}

.comparison-table th:last-child,
.comparison-table td:last-child {
    border-right: 0;
}

.comparison-table tr:last-child th,
.comparison-table tr:last-child td {
    border-bottom: 0;
}

.comparison-table thead th {
    background: var(--navy-900);
    color: #ffffff;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 0.86rem;
}

.comparison-table tbody th {
    width: 24%;
    background: #f7f9fb;
    color: var(--navy-900);
    font-weight: 700;
}

.comparison-table tbody tr:hover td,
.comparison-table tbody tr:hover th {
    background: var(--gold-100);
}

.decision-steps {
    display: grid;
    gap: 18px;
    margin: 25px 0 0;
    padding: 0;
    list-style: none;
}

.decision-steps li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 17px;
    padding: 21px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fbfcfd;
}

.step-number {
    display: grid;
    width: 39px;
    height: 39px;
    place-items: center;
    border-radius: 12px;
    background: var(--navy-900);
    color: var(--gold-400);
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 800;
}

.decision-steps h3 {
    margin: 1px 0 5px;
    font-size: 1rem;
}

.decision-steps p {
    margin: 0;
    font-size: 0.94rem;
}

.checklist-card {
    padding: 24px;
    border: 1px solid rgba(47, 125, 92, 0.25);
    border-radius: var(--radius-md);
    background: #f2faf6;
}

.submission-checklist {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.submission-checklist li {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 10px;
    align-items: start;
    color: #30473d;
}

.submission-checklist i {
    display: grid;
    width: 22px;
    height: 22px;
    margin-top: 2px;
    place-items: center;
    border-radius: 50%;
    background: var(--success);
    color: #ffffff;
    font-size: 0.68rem;
}

.faq-list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.faq-list details {
    border: 1px solid var(--border);
    border-radius: 15px;
    background: #fbfcfd;
    overflow: hidden;
}

.faq-list details[open] {
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.faq-list summary {
    position: relative;
    padding: 19px 52px 19px 20px;
    color: var(--navy-950);
    cursor: pointer;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 0.97rem;
    font-weight: 650;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 20px;
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--surface-blue);
    color: var(--navy-800);
    font-size: 1.2rem;
    line-height: 1;
}

.faq-list details[open] summary::after {
    content: "−";
    background: var(--gold-100);
    color: var(--navy-950);
}

.faq-list details p {
    margin: 0;
    padding: 0 20px 20px;
    font-size: 0.94rem;
}

.article-conclusion {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    margin-top: 60px;
    padding: 29px;
    border-radius: var(--radius-md);
    background:
        radial-gradient(circle at 100% 0, rgba(226, 189, 98, 0.18), transparent 36%),
        var(--navy-900);
    color: #ffffff;
}

.article-conclusion h2 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 1.45rem;
}

.article-conclusion p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.article-conclusion a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 18px;
    color: var(--gold-400);
    font-weight: 700;
    text-decoration: none;
}

.article-conclusion a:hover {
    gap: 13px;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.article-sources {
    margin-top: 30px;
    padding: 23px 24px;
    border: 1px dashed #b9c4d0;
    border-radius: 16px;
    background: #f8fafc;
}

.article-sources h2 {
    margin-bottom: 9px;
    font-size: 1.05rem;
}

.article-sources p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.88rem;
}

.related-articles {
    padding: 76px 0 88px;
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.related-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 27px;
}

.related-heading span {
    color: var(--gold-500);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.related-heading h2 {
    margin: 5px 0 0;
    color: var(--navy-950);
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.related-heading > a {
    color: var(--navy-700);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.related-heading > a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.related-card {
    display: flex;
    min-width: 0;
    min-height: 270px;
    flex-direction: column;
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: #fbfcfd;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.related-card:hover {
    transform: translateY(-5px);
    border-color: rgba(213, 168, 63, 0.52);
    box-shadow: var(--shadow-md);
}

.related-category {
    color: var(--navy-700);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.related-card h3 {
    margin: 13px 0 11px;
    color: var(--navy-950);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 1.1rem;
    line-height: 1.45;
}

.related-card p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.9rem;
    line-height: 1.65;
}

.planned-label {
    display: inline-flex;
    align-self: flex-start;
    margin-top: auto;
    padding-top: 19px;
    color: #7a8492;
    font-size: 0.78rem;
    font-weight: 650;
}

@media (max-width: 1020px) {
    .article-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .article-sidebar {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
        gap: 20px;
    }

    .toc-card {
        position: static;
    }

    .sidebar-cta {
        margin-top: 0;
    }

    .related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .article-container {
        width: min(calc(100% - 28px), var(--container));
    }

    .article-breadcrumb ol {
        padding: 13px 0;
        font-size: 0.8rem;
    }

    .article-hero {
        padding: 56px 0 52px;
    }

    .article-hero h1 {
        margin-top: 18px;
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .article-introduction {
        font-size: 1rem;
    }

    .author-details span {
        display: block;
        line-height: 1.65;
    }

    .author-details span span {
        display: none;
    }

    .article-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .article-action-btn:last-child {
        grid-column: 1 / -1;
    }

    .article-layout {
        padding-top: 35px;
        padding-bottom: 52px;
    }

    .article-sidebar {
        grid-template-columns: 1fr;
    }

    .toc-card {
        padding: 21px;
    }

    .article-content {
        padding: 34px 23px;
        border-radius: 22px;
    }

    .article-section + .article-section {
        margin-top: 42px;
        padding-top: 40px;
    }

    .answer-box,
    .content-note,
    .article-conclusion {
        grid-template-columns: 1fr;
    }

    .answer-icon,
    .conclusion-icon {
        width: 42px;
        height: 42px;
    }

    .decision-steps li {
        grid-template-columns: 1fr;
    }

    .step-number {
        width: 36px;
        height: 36px;
    }

    .related-articles {
        padding: 56px 0 64px;
    }

    .related-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .related-card {
        min-height: 0;
    }
}

@media (max-width: 480px) {
    .article-container {
        width: min(calc(100% - 22px), var(--container));
    }

    .article-category-link {
        font-size: 0.72rem;
    }

    .article-byline {
        align-items: flex-start;
    }

    .author-mark {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .article-actions {
        grid-template-columns: 1fr;
    }

    .article-action-btn:last-child {
        grid-column: auto;
    }

    .article-action-btn {
        justify-content: flex-start;
    }

    .article-content {
        padding: 29px 18px;
    }

    .article-content h2 {
        font-size: 1.55rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 14px;
    }

    .checklist-card,
    .answer-box,
    .article-conclusion {
        padding: 20px;
    }

    .faq-list summary {
        padding-left: 17px;
        font-size: 0.92rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media print {
    @page {
        margin: 18mm 16mm;
    }

    body {
        background: #ffffff;
        color: #000000;
        font-size: 11pt;
    }

    .reading-progress,
    #header-placeholder,
    #footer-placeholder,
    .article-breadcrumb,
    .article-actions,
    .copy-status,
    .article-sidebar,
    .related-articles,
    .article-conclusion a {
        display: none !important;
    }

    .article-hero {
        padding: 0 0 24px;
        background: #ffffff !important;
        color: #000000;
    }

    .article-hero::before,
    .article-hero::after {
        display: none;
    }

    .article-category-link {
        padding: 0;
        border: 0;
        background: transparent;
        color: #000000;
    }

    .article-hero h1 {
        margin: 12px 0;
        color: #000000;
        font-size: 25pt;
    }

    .article-introduction,
    .author-details span {
        color: #333333;
    }

    .author-mark {
        border: 1px solid #000000;
        background: #ffffff;
        color: #000000;
    }

    .article-container {
        width: 100%;
        max-width: none;
    }

    .article-layout {
        display: block;
        padding: 0;
    }

    .article-content {
        padding: 0;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .article-section + .article-section {
        margin-top: 30px;
        padding-top: 24px;
    }

    .article-content h2,
    .article-content h3,
    .article-content p,
    .article-list li,
    .submission-checklist li,
    .decision-steps p,
    .article-conclusion h2,
    .article-conclusion p {
        color: #000000;
    }

    .answer-box,
    .content-note,
    .checklist-card,
    .decision-steps li,
    .faq-list details,
    .article-conclusion,
    .article-sources {
        break-inside: avoid;
        border: 1px solid #b8b8b8;
        background: #ffffff !important;
        box-shadow: none;
        color: #000000;
    }

    .answer-icon,
    .conclusion-icon,
    .step-number,
    .submission-checklist i {
        background: #ffffff;
        color: #000000;
        border: 1px solid #000000;
    }

    .comparison-table-wrapper {
        overflow: visible;
        border-color: #999999;
    }

    .comparison-table {
        min-width: 0;
        font-size: 9pt;
    }

    .comparison-table thead th,
    .comparison-table tbody th,
    .comparison-table tbody tr:hover td,
    .comparison-table tbody tr:hover th {
        background: #ffffff;
        color: #000000;
    }

    .faq-list details:not([open]) > *:not(summary) {
        display: block;
    }

    .faq-list summary::after {
        display: none;
    }

    a {
        color: #000000;
        text-decoration: none;
    }
}