.product-faq-section {
    background: rgba(var(--color-background));
}
.product-faq {
    display: grid;
    grid-template-columns: 4fr 8fr;
}

.product-faq .product-faq-content .block-heading {
    margin-bottom: 20px;
}

.product-faq .product-faq-content .rte {
    margin-bottom: 60px;
}

.product-faq .product-faq-content {
    padding-right: 110px;
}

@media (max-width: 768px) {
    .product-faq {
        grid-template-columns: auto;
    }

    .product-faq .product-faq-content {
        padding-right: 0;
        margin-bottom: 10vw;
    }

    .product-faq .product-faq-content .rte {
        margin-bottom: 10vw;
    }
}