/* ===== Post FAQ ===== */
.post-faq {
    margin: 48px 0 40px;
    border-top: 2px solid #e8ecf8;
    padding-top: 36px;
}

.post-faq__title {
    font-size: 26px;
    font-weight: 700;
    color: #193b99;
    margin-bottom: 24px;
    line-height: 1.3;
}

.post-faq__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
}

.post-faq__item {
    border: 1px solid #dde4f5;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    -webkit-box-shadow: 0 1px 4px rgba(25, 59, 153, 0.06);
    box-shadow: 0 1px 4px rgba(25, 59, 153, 0.06);
}

.post-faq__question {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 22px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: #1a1a2e;
    background: #f6f8ff;
    -webkit-transition: background 0.2s, color 0.2s;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
}

.post-faq__question:hover {
    background: #edf0fb;
}

.post-faq__question[aria-expanded="true"] {
    background: #edf0fb;
    color: #193b99;
}

.post-faq__icon {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.post-faq__question[aria-expanded="true"] .post-faq__icon {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.post-faq__answer {
    border-top: 1px solid #dde4f5;
    padding: 18px 22px;
}

.post-faq__answer[hidden] {
    display: none;
}

.post-faq__answer-inner {
    font-size: 15px;
    line-height: 1.75;
    color: #444;
}

.post-faq__answer-inner br {
    display: block;
    margin-top: 8px;
}

@media only screen and (max-width: 600px) {
    .post-faq__title {
        font-size: 20px;
    }

    .post-faq__question {
        font-size: 14px;
        padding: 14px 16px;
    }

    .post-faq__answer {
        padding: 14px 16px;
    }

    .post-faq__answer-inner {
        font-size: 14px;
    }
}
