.arz-faq {
    border-top: 1px solid var(--arz-color-border, #e5e9ee);
}

.arz-faq__item {
    border-bottom: 1px solid var(--arz-color-border, #e5e9ee);
}

.arz-faq__trigger {
    align-items: center;
    background: transparent;
    border: 0;
    color: inherit;
    cursor: pointer;
    display: flex;
    font: inherit;
    justify-content: space-between;
    padding: 10px;
    text-align: right;
    width: 100%;
}

.arz-faq__question {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
}

.arz-faq__icon {
    color: var(--arz-color-text-muted, #47505e);
    flex: 0 0 auto;
    font-size: 18px;
    margin-inline-start: 16px;
    transition: transform 150ms ease;
}

.arz-faq__trigger[aria-expanded="true"] .arz-faq__icon {
    transform: rotate(45deg);
}

.arz-faq__trigger:focus-visible {
    outline: 2px solid var(--arz-color-primary, #1aa089);
    outline-offset: -2px;
}

.arz-faq__answer {
    height: 0;
    overflow: hidden;
}

.arz-faq__answer-inner {
    background: var(--arz-color-surface-subtle, #f7f8fc);
    border-radius: 0 0 6px 6px;
    font-size: 14px;
    line-height: 1.9;
    margin: 0 8px 10px;
    padding: 16px;
}

.arz-faq__answer-inner > :first-child { margin-top: 0; }
.arz-faq__answer-inner > :last-child { margin-bottom: 0; }

@media (prefers-reduced-motion: reduce) {
    .arz-faq__icon { transition: none; }
}
