input[type="checkbox"] {
    display: none;
}

.faq-drawer {
    flex: 1;
}

.faq-drawer__title {
    display: block;
    position: relative;
    padding: 0px 50px 0px 10px;
    color: grey;
    font-weight: 600;
    font-size: 15px;

    border-radius: 8px;
    transition: all 0.25s ease-out;
    cursor: pointer;
}

.faq-drawer__title:hover {
    color: #747474;
}

.faq-drawer__title::after {
    content: " ";
    position: absolute;
    width: 0;
    height: 0;
    top: 16px;
    right: 20px;
    float: right;

    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform 0.2s ease-out;
}

.faq-drawer__trigger:checked+.faq-drawer__title::after {
    transform: rotate(-180deg);
}

.faq-drawer__content-wrapper {
    overflow: hidden;
    max-height: 0px;
    font-size: 15px;
    /* line-height: 23px; */

    transition: max-height 0.25s ease-in-out;
}

.faq-drawer__trigger:checked+.faq-drawer__title+.faq-drawer__content-wrapper {
    max-height: 350px;
}

.faq-drawer__trigger:checked+.faq-drawer__title {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.faq-drawer__content-wrapper .faq-drawer__content {
    padding: 2px 18px 14px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.faq-drawer__content>p>a {
    display: block;
}