.article-acc {
    --acc-navy:   #0e2c47;
    --acc-orange: #fe6c3b;
    --acc-border: rgba(14, 44, 71, 0.06);

    box-sizing: border-box;
    margin: 0 0 24px;
    font-family: Inter, sans-serif;
}

.article-acc__head {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 8px 0 16px;
}
.article-acc__bar {
    width: 32px;
    height: 3px;
    border-radius: 2px;
    background: var(--acc-orange);
}
.article-acc__heading {
    margin: 0;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.3px;
    color: var(--acc-navy);
}

.article-acc__item {
    border-top: 1px solid var(--acc-border);
}
.article-acc__item:last-child {
    border-bottom: 1px solid var(--acc-border);
}
.article-acc__qwrap {
    margin: 0;
    font: inherit;
}
.article-acc__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.45;
    color: var(--acc-navy);
}

.article-acc__icon {
    position: relative;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(254, 108, 59, 0.06);
}
.article-acc__icon::before,
.article-acc__icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 11px;
    height: 2px;
    background: var(--acc-orange);
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.article-acc__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}
.article-acc__q[aria-expanded='true'] .article-acc__icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0;
}

.article-acc__panel {
    overflow: hidden;
}
.article-acc__panel[hidden] {
    display: none;
}
.article-acc__answer {
    padding: 0 0 20px;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.6;
    color: #4a5b6e;
}
.article-acc__answer p { margin: 0 0 1em; }
.article-acc__answer p:last-child { margin-bottom: 0; }

/* Restore list markers — the global resets strip them off nested lists. */
.article-acc__answer ul,
.article-acc__answer ol {
    margin: 0 0 1em;
    padding-left: 2.4rem;
}
.article-acc__answer ul { list-style: disc; }
.article-acc__answer ol { list-style: decimal; }
.article-acc__answer li { margin: 0 0 0.4rem; }
.article-acc__answer ul:last-child,
.article-acc__answer ol:last-child { margin-bottom: 0; }

/* Links match the article content link style. */
.article-acc__answer a {
    color: #1b6b93;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    overflow-wrap: break-word;
    word-break: break-word;
}
.article-acc__answer a:hover {
    text-decoration-line: none;
}

@media (min-width: 768px) {
    .article-acc__q {
        font-size: 1.5rem;
        padding: 20px 0;
    }
    .article-acc__answer {
        font-size: 1.5rem;
        padding-bottom: 22px;
    }
}
