/* -------- FAQ -------- */
.faq {
    max-width: calc(660px + 2 * 24px);
    padding: 0 24px;
    margin-left: auto;
    margin-right: auto;
}
.faq__items {
    max-width: 660px;
    margin: 0 auto;
}
.faq__item {
    cursor: pointer;
    margin-bottom: 8px;
    border-radius: 12px;
    padding: 18px 24px;
    background-color: #F1F3F9;
    transition: all 120ms ease-out;
}
.faq__item:hover {
    background-color: #E1E6EF;
}

.faq__item ol,
.faq__item ul {
    padding-left: 20px;
    margin-bottom: 10px;
}
.faq__item ul li {
    list-style: disc;
}
.faq__item p {
    margin-bottom: 4px;
}
.faq__item .faq__item-body .faq__item-body-wrapper .wp-caption {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
}
.faq__item .faq__item-body .faq__item-body-wrapper p.wp-caption-text {
    font-size: 14px;
    order: -1;
}
.faq__item a {
    text-decoration: underline;
}
.faq__item a:hover {
    text-decoration: none;
}
@media screen and (max-width: 575.98px) {
    .faq__item {
        padding: 20px;
    }
}
.faq__item_opened .faq__item-body {
    grid-template-rows: 1fr;
    padding-top: 16px;
}
.faq__item_opened .faq__item-icon {
    transform: rotate(45deg);
}
.faq__item-header {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}
.faq__item-body {
    color: #1D2433;
    display: grid;
    grid-template-rows: 0fr;
    transition: all 120ms ease-out;
    overflow: hidden;
}
.faq__item-body-wrapper {
    overflow: hidden;
}
.faq__item-title {
    color: #0A0D14;
}
.faq__item-icon {
    width: 24.48px;
    height: fit-content;
    transition: all 120ms ease-out;
}
.faq__btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
}
@media screen and (max-width: 575.98px) {
    .faq__btns {
        margin-top: 8px;
        flex-direction: column;
        gap: 8px;
    }
    .faq__btns > * {
        width: 100%;
    }
}
.page-template-single-faq .faq__items,
.page-template-single-faq .faq {
    max-width: unset;
    padding: 0;
}
.page-template-single-faq .faq__item {
    margin-bottom: 24px;
}
.page-template-single-faq .faq__item .faq__item-header {
    align-items: center;
}
.page-template-single-faq .faq__item .faq__item-title {
    font-size: 24px;
    font-weight: 500;
}
.page-template-single-faq .faq__item .faq__item-body-wrapper * {
    font-size: 16px;
    font-weight: 400;
    color: #1d2433A5;
    line-height: 150%;
}
@media(max-width:768px){
    .page-template-single-faq .faq__item {
        margin-bottom: 12px;
    }
    .page-template-single-faq .faq__item .faq__item-title {
        font-size: 16px;
    }
    .page-template-single-faq .faq__item .faq__item-header {
        gap: 6px;
    }
}