.article-faq {
    margin: 40px 0;
}

.article-faq__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #222;
}

.article-faq__list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: #e2e8f0;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.article-faq__item {
    background: #fff;
}

.article-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
    user-select: none;
    transition: background 0.2s, color 0.2s;
}

.article-faq__question:hover {
    background: #f7fafc;
    color: #e53e3e;
}

.article-faq__question-text {
    flex: 1;
    padding-right: 16px;
}

.article-faq__arrow {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.3s ease;
}

.article-faq__arrow::before,
.article-faq__arrow::after {
    content: '';
    position: absolute;
    background: #a0aec0;
    transition: background 0.2s, transform 0.3s ease;
    border-radius: 1px;
}

.article-faq__arrow::before {
    top: 11px;
    left: 4px;
    width: 16px;
    height: 2px;
}

.article-faq__arrow::after {
    top: 4px;
    left: 11px;
    width: 2px;
    height: 16px;
}

.article-faq__question:hover .article-faq__arrow::before,
.article-faq__question:hover .article-faq__arrow::after {
    background: #e53e3e;
}

.article-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.article-faq__answer p {
    padding: 0 20px 20px;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
}

/* Активное состояние (чекбокс отмечен) */
.article-faq__toggle:checked + .article-faq__question .article-faq__arrow {
    transform: rotate(90deg);
}

.article-faq__toggle:checked + .article-faq__question .article-faq__arrow::after {
    transform: rotate(90deg);
}

.article-faq__toggle:checked + .article-faq__question {
    color: #e53e3e;
}

.article-faq__toggle:checked + .article-faq__question + .article-faq__answer {
    max-height: 600px;
}
