.design_template.faqs {
    padding: 40px 0;
}

.faqs-container {
    width: 100%;
}

.faqs-slider {
    width: 100%;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    gap: 10px;
}


/* FAQ ITEM */

.faq-item {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;

    transition:
        box-shadow .3s ease,
        transform .3s ease;
}


/* Самият въпрос */

.faq-header {
    width: 100%;

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;

    gap: 14px;

    padding: 9px 14px 9px 7px;

    box-sizing: border-box;

    background: #f8f4f1;

    cursor: pointer;
}


/* ? */

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

    width: 1.5em;
    aspect-ratio: 1 / 1;

    border-radius: 50%;

    background: #ad7049;
    color: #fff;

    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 700;
    line-height: 1;

    flex-shrink: 0;
}


/* Заглавие */

.faq-header h3 {
    margin: 0;

    color: #444;

    font-size: 1vw;
    font-weight: 400;
    line-height: 1.4;
}


/* Стрелка */

.faq-toggle {
    width: .55em;
    aspect-ratio: 1 / 1;

    border-right: 2px solid #ad7049;
    border-bottom: 2px solid #ad7049;

    transform: rotate(-45deg);

    transition: transform .3s ease;

    flex-shrink: 0;
}


/* ================================
   FAQ ОТГОВОР
================================ */

.faqs-slider .faq-item > .faq-content {
    display: block !important;
    width: 100%;

    max-height: 0;
    overflow: hidden;

    opacity: 0;
    visibility: hidden;

    box-sizing: border-box;

    transition:
        max-height .45s ease,
        opacity .3s ease,
        visibility .3s ease;
}


/* Самият текст */
.faqs-slider .faq-item > .faq-content p {
    display: block !important;

    margin: 0;

    /* Отстоянията вече са тук */
    padding: 10px 20px 10px 54px;

    box-sizing: border-box;

    color: #b1704a !important;

    font-size: 0.95vw;
    line-height: 1.55;

    opacity: 1 !important;
    visibility: visible !important;
}


/* Отворен */
.faqs-slider .faq-item.active > .faq-content {
    opacity: 1 !important;
    visibility: visible !important;
}


/* Стрелка */
.faqs-slider .faq-item.active .faq-toggle {
    transform: rotate(45deg);
}


/* MOBILE */
@media (max-width: 767px) {

    .faqs-slider .faq-item > .faq-content p {
        padding:
            13px 15px
            16px 48px;
    }

}


/* Hover */

.faq-item:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 24px rgba(110, 68, 42, .10);
}


/* MOBILE */

@media (max-width: 767px) {

    .design_template.faqs {
        padding: 30px 0;
    }

    .faq-header {
        gap: 10px;
        padding: 8px 12px 8px 7px;
    }

    .faq-content {
        padding-left: 48px;
        padding-right: 12px;
    }

    .faq-item.active .faq-content {
        padding-top: 13px;
        padding-bottom: 16px;
    }
}