.faq {
    -webkit-grid-column: span 12;
    grid-column: span 12;
    padding: 26px 30px;
    cursor: pointer;
}

.faq-question {
    width: 100%;
    position: relative;
    padding-right: 30px;
}

.faq-question:after {
    content: "";
    display: block;
    position: absolute;
    width: 18px;
    height: 10px;
    background:url(../../img/2026/faq-arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    right: 0;
    top: 5px;
    -webkit-transition: transform 0.4s ease;
    transition: transform 0.4s ease;
}

.faq.active .faq-question:after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.faq-body {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease, margin 0.35s ease;
    -webkit-transition: height 0.35s ease, margin 0.35s ease;
    width: 100%;
    max-width: 767px;
    line-height: 1.4;
}

.faq.active .faq-body {
    margin-top: 20px;
}

/* RESPONSIVE */
@media only screen and (max-width: 740px) {
    .faq {
        padding: 18px 20px;
    }
    .faq-question {
        padding-right: 45px;
    }
}
