.activ8-faq {
    width: 100%;
}

/* ── Heading ─────────────────────────────────────────── */

.activ8-faq__heading {
    font-size: clamp(var(--text-2xl), 3vw, var(--text-3xl));
    font-weight: 700;
    color: var(--color-navy, #0D1B3E);
    text-align: center;
    margin: 0 0 var(--space-xl);
}

/* ── List ────────────────────────────────────────────── */

.activ8-faq__list {
    border-top: 1px solid #d9d9d9;
}

/* ── Item ────────────────────────────────────────────── */

.activ8-faq__item {
    border-bottom: 1px solid #d9d9d9;
}

/* ── Button ──────────────────────────────────────────── */

.activ8-faq__button {
    width: 100%;
    border: 0;
    background: transparent;
    padding: var(--space-lg) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    cursor: pointer;
    text-align: left;
}

/* ── Question ────────────────────────────────────────── */

.activ8-faq__question {
    font-size: clamp(var(--text-lg), 2vw, var(--text-xl));
    font-weight: 700;
    color: var(--color-navy, #0D1B3E);
    margin: 0;
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
}

/* ── Icon (circle + / –) ─────────────────────────────── */

.activ8-faq__icon {
    width: 28px;
    height: 28px;
    border: 2px solid var(--faq-accent, var(--color-primary));
    border-radius: 50%;
    position: relative;
    flex: 0 0 auto;
}

.activ8-faq__icon::before,
.activ8-faq__icon::after {
    content: "";
    position: absolute;
    background: var(--faq-accent, var(--color-primary));
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.activ8-faq__icon::before {
    width: 12px;
    height: 2px;
}

.activ8-faq__icon::after {
    width: 2px;
    height: 12px;
    transition: opacity 0.25s ease;
}

.activ8-faq__item.is-open .activ8-faq__icon::after {
    opacity: 0;
}

/* ── Content ─────────────────────────────────────────── */

.activ8-faq__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

/* ── Answer ──────────────────────────────────────────── */

.activ8-faq__answer {
    padding-bottom: var(--space-lg);
    font-size: var(--text-sm);
    line-height: var(--leading-loose, 1.75);
    color: var(--color-grey-dark, #444);
}

.activ8-faq__answer p {
    margin: 0 0 var(--space-sm);
}

.activ8-faq__answer p:last-child {
    margin-bottom: 0;
}

.activ8-faq__answer ul,
.activ8-faq__answer ol {
    list-style-position: inside;
    margin: 0 0 var(--space-sm);
}

.activ8-faq__answer li {
    margin-bottom: 0.4rem;
}
