.post_banner {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.post_banner img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: right;
}

.post_banner-content {
    position: relative;
    padding: 60px 40px;
}

.post_banner-content > h2 {
    margin-bottom: 40px;
    font-size: 32px;
    max-width: 395px;
}

.post_banner-content > p {
    margin-bottom: 18px;
    font-size: 20px;
    max-width: 395px;
}

.post_faq {
    margin: 64px auto;
}

.post_faq h2 {
    text-align: center;
    color: #020B2C;
    margin-bottom: 40px;
}

.post_faq-content {
    padding-left: 0;
    margin-left: 0;
    list-style: none;
}

.pos_faq-item-answer {
    color: #090909;
    font-size: 18px;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.pos_faq-item-question {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    /* color: #EC1721; */
    color: #020B2C;
    padding: 16px 0;
    padding-left: 3px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 17px;
}

.pos_faq-item-question svg {
    transition: all 0.3s ease-in-out;
    min-width: 32px;
}

.pos_faq-item.active .pos_faq-item-question svg {
    transform: rotate(45deg);
}

.pos_faq-item {
    padding-left: 10px;
    padding-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .pos_faq-item {
        padding-left: 20px;
    }
}

.pos_faq-item + .pos_faq-item {
    border-top: 1px solid var(--Gradient, #001253);
}