article {
    max-width: 100%;
    color: var(--text, inherit);
    line-height: 1.75;
    font-size: 1rem;
}


article p {
    margin: 0 0 1.25em 0;
}


article h2 {
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.3;
    margin: 2em 0 0.6em 0;
    color: var(--primary);
}

article h3 {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 1.5em 0 0.5em 0;
    color: var(--primary);
}

article h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 1.25em 0 0.4em 0;
}

article > h2:first-child,
article > h3:first-child {
    margin-top: 0;
}


article a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.15s;
}

article a:hover {
    opacity: 0.75;
}

.page-breadcrumb a {
    color: var(--gold);
}

article ul,
article ol {
    margin: 0 0 1.25em 0;
    padding-left: 1.5em;
}

article ul {
    list-style: disc;
}

article ol {
    list-style: decimal;
}

article ul ul,
article ol ol,
article ul ol,
article ol ul {
    margin-bottom: 0;
    margin-top: 0.25em;
}

article li {
    margin-bottom: 0.5em;
    line-height: 1.7;
}

article li:last-child {
    margin-bottom: 0;
}

article li strong,
article li b {
    color: var(--primary);
}


.table-scroll-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 0 1.5em 0;
    border-radius: 6px;
    border: 1px solid var(--border);
}

article table {
    width: 100%;
    min-width: 500px;
    border-collapse: collapse;
    font-size: 0.9rem;
    line-height: 1.5;
}

article table thead tr {
    background-color: var(--primary);
    color: #fff;
}

article table thead td,
article table thead th {
    padding: 10px 14px;
    font-weight: 700;
    text-align: left;
    vertical-align: middle;
    border: none;
}

article table thead td p,
article table thead th p {
    margin: 0;
    color: #fff;
}

article table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background-color 0.12s;
}

article table tbody tr:last-child {
    border-bottom: none;
}

article table tbody tr:nth-child(odd) {
    background-color: transparent;
}

article table tbody tr:nth-child(even) {
    background-color: color-mix(in srgb, var(--border) 40%, transparent);
}

article table tbody tr:hover {
    background-color: color-mix(in srgb, var(--primary) 6%, transparent);
}

article table tbody td,
article table tbody th {
    padding: 9px 14px;
    vertical-align: middle;
    text-align: left;
    border-right: 1px solid var(--border);
}

article table tbody td:last-child,
article table tbody th:last-child {
    border-right: none;
}

article table tbody td p,
article table tbody th p {
    margin: 0;
}


article strong,
article b {
    font-weight: 700;
}


article u {
    text-decoration-color: var(--primary);
    text-underline-offset: 2px;
}

.faq-section {
    margin-top: 2.5em;
    border-top: 2px solid var(--border);
    padding-top: 1.5em;
}

.faq-section-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0 0 1em 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 16px;
    cursor: pointer;
    list-style: none;
    background-color: transparent;
    transition: background-color 0.15s;
    gap: 12px;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-item[open] .faq-question {
    background-color: color-mix(in srgb, var(--primary) 6%, transparent);
    border-bottom: 1px solid var(--border);
}

.faq-question::after {
    content: "+";
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
    line-height: 1;
    transition: transform 0.2s;
}

.faq-item[open] .faq-question::after {
    content: "−";
}

.faq-item-title {
    margin: 0;
    font-size: 0.975rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--primary);
}

.faq-answer {
    padding: 13px 16px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-answer p {
    margin: 0 0 0.75em 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}


@media (max-width: 768px) {
    article h2 {
        font-size: 1.25rem;
        margin-top: 1.75em;
    }

    article h3 {
        font-size: 1.05rem;
    }

    article ul,
    article ol {
        padding-left: 1.25em;
    }

    article table {
        font-size: 0.82rem;
    }

    article table thead td,
    article table thead th,
    article table tbody td,
    article table tbody th {
        padding: 8px 10px;
    }

    .faq-question {
        padding: 11px 13px;
    }

    .faq-item-title {
        font-size: 0.9rem;
    }

    .faq-answer {
        padding: 11px 13px;
        font-size: 0.9rem;
    }

    .faq-section-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    article {
        font-size: 0.95rem;
    }

    article h2 {
        font-size: 1.15rem;
    }

    .table-scroll-wrap {
        border-radius: 4px;
        margin-left: -4px;
        margin-right: -4px;
    }
}
