.post-faqs {
    border: 1px solid var(--color-grey-border);
    border-radius: 16px;
    padding: 40px 40px 24px;
}

.post-faqs .post-faqs-question-text {
    color: var(--color-canvas-text);
    display: none;
    font-family: 'Poppins';
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0%;
    line-height: 155%;
    margin-top: 24px;
}

.post-faqs .post-faqs-question-text p {
    margin: 0;
}

.post-faqs .post-faqs-question-title {
    align-items: center;
    color: var(--color-canvas-text);
    cursor: pointer;
    display: flex;
    font-family: 'Poppins';
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    justify-content: space-between;
    line-height: 120%;
    margin: 0;
    padding: 24px 24px 0 0;
    position: relative;
}

.post-faqs .post-faqs-question-title::after {
    background-color: var(--color-brand-blue);
    content: '';
    height: 15px;
    mask-image: url('../../../img/svg/icon-down.svg');
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-mask-image: url('../../../img/svg/icon-down.svg');
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    width: 15px;
}
.single .post-content .content .post-faqs .post-faqs-title,
.post-faqs .post-faqs-title {
    align-self: stretch;
    color: var(--color-canvas-text);
    font-family: 'Poppins';
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    height: 36px;
    line-height: 120%;
    margin: 0 0 16px;
}

@media (max-width: 768px) {
    .post-faqs {
        padding: 32px 16px;
    }

    .single .post-content .content .post-faqs .post-faqs-title,
    .post-faqs .post-faqs-title {
        font-size: 22px;
    }
}