div.news-list {
    word-wrap: break-word;
}

div.news-list img.preview_picture {
    float: left;
    margin: 0 4px 6px 0;
}

.news-date-time {
    color: #486DAA;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 1520px;
    /* Ограничиваем максимальную ширину как в макете */
    margin: 0 auto;
}

.faq-item {
    background: #7e57c4;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-header {
    padding: 30px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.faq-question {
    color: #ffffff;
    font-family: 'Mulish-Medium', sans-serif;
    font-size: 35px;
    font-weight: 500;
    line-height: 1.2;
}

.faq-icon-wrapper {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer-content {
    padding: 0 35px 30px 35px;
    color: #ffffff;
    font-family: 'Mulish-Regular', sans-serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.4;
}

/* Состояние при открытии */
.faq-item.is-active .faq-answer {
    max-height: 500px;
    /* Достаточное значение для контента */
}

.faq-item.is-active .faq-icon {
    transform: rotate(180deg);
}

@media (max-width: 1400px) {
    .faq-question {
        font-size: 25px;
        font-weight: 500;
    }

    .faq-header {
        padding: 25px 30px;
    }

    .faq-icon {
        width: 35px;
        height: 35px;
    }

    .faq-answer-content {
        font-size: 20px;
    }

    .faq-icon-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}



/* Адаптив для мобилок */
@media (max-width: 768px) {
    .faq-question {
        font-size: 16px;
        line-height: 18px;
        font-weight: 400;
    }

    .faq-answer-content {
        font-size: 16px;
    }

    .faq-header {
        padding: 15px;
    }

    .faq-icon {
        width: 30px;
        height: 30px;
    }

    .faq-icon-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}