.faq {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

.faq__item {
    background-color: #ffffff;
    border-radius: 14px;
    padding: 1rem 1.25rem;
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.02),
        0 2px 4px rgba(0, 0, 0, 0.04),
        0 12px 24px rgba(0, 0, 0, 0.06);
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--color-secondary);
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__chevron {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.faq__item[open] .faq__chevron {
    transform: rotate(0deg);
}

.faq__answer {
    overflow: hidden;
    color: var(--color-secondary);
    transition: height 0.3s ease;
}

.faq__answer-inner {
    padding-top: 0.75rem;
}

.faq__answer p {
    margin: 0;
}

.faq__answer p + p {
    margin-top: 0.75rem;
}
