.tpl-list-dropdown_faqs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.tpl-list-dropdown_faqs--collapsible {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: start;
    width: 100%;
    padding: 12px 20px;
    gap: 12px;
    align-self: stretch;
    border-radius: 16px;
    background: #F8F7F5;
    color: #262626;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    border: 1px solid #F8F7F5;
    outline: 0;
}

.tpl-list-dropdown_faqs--collapsible:focus,
.tpl-list-dropdown_faqs--collapsible:active {
    outline: 0;
}

.tpl-list-dropdown_faqs--collapsible-icon {
    display: inline-block;
    min-width: 24px;
    max-width: 24px;
    float: right;
    transition: transform 0.4s ease;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%23CD0C2E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.tpl-list-dropdown_faqs--active .tpl-list-dropdown_faqs--collapsible-icon {
    transform: rotate(180deg);
}

.tpl-list-dropdown_faqs--active {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.tpl-list-dropdown_faqs--content {
    outline: 0;
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #636466;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    align-self: stretch;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    border-right: 1px solid #F8F7F5;
    border-bottom: 1px solid #F8F7F5;
    border-left: 1px solid #F8F7F5;
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
}

.tpl-list-dropdown_faqs--content p {
    padding: 8px 20px 16px 20px;
}

@media (min-width: 1044px) {
    .tpl-list-dropdown_faqs {
        gap: 12px;
    }
    .tpl-list-dropdown_faqs--collapsible {
        font-size: 20px;
        font-weight: 400;
        line-height: 24px;
    }
    .tpl-list-dropdown_faqs--content {
        font-size: 16px;
        line-height: 20px;
    }
    .tpl-list-dropdown_faqs--content p {
        max-width: 821px;
    }
}