.module-faq-panel {
    /* any general styling for the module */
    position: relative;
}

.module-faq-panel .intro-wrapper {
    margin-bottom:4rem;
    text-align: center;
}

.module-faq-panel .intro-wrapper .heading strong,
.module-faq-panel .faq-tools strong {
    color: var(--dark-orange);
}

.module-faq-panel .faq-tools {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom:5rem;
    gap:2rem;
    flex-wrap: wrap;
}

.module-faq-panel .faq-tools .faq-tools-text {
    font-size:3.7rem;
    line-height: 4.5rem;
    width:100%;
    position: relative;
}

.module-faq-panel .faq-tools {
    padding-left:3rem;
}

.module-faq-panel .faq-tools .faq-tools-text:before {
    content:url('/images/cho-dot-arrow.svg');
    transition: all 0.3s ease;
    display: inline-block;
    justify-content: center;
    align-items: center;
    position: absolute;
    left:-3.5rem;
    top:0;
}

.module-faq-panel .faq-tools .view-all a {
    display: flex;
    align-items: center;
    gap:1rem;
    text-decoration: none;
    font-size:1.9rem;
    line-height: 2.6rem;
    text-transform: uppercase;
    font-weight:700;
}

.module-faq-panel .faq-tools .view-all a:after {
    content: '\f061';
    color:#000;
    font: var(--fa-font-solid);
    background-color:var(--yellow);
    border-radius: 50%;
    padding:2px;
    width:2.5rem;
    height:2.5rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size:1.6rem;
}

.module-faq-panel .posts-wrapper,
.module-faq-panel .posts-wrapper .faq-category-inner-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap:2rem;
}

.module-faq-panel .posts-wrapper .faq-category-wrapper h3 {
    display:block;
    width:100%;
    font-size:3rem;
    font-weight:800;
    padding-bottom:4rem;
}

.module-faq-panel .posts-wrapper .faq-category-wrapper {
    width:100%;
    max-width:1100px;
    margin:0 auto;
    padding-bottom:4rem;
}

.module-faq-panel .posts-wrapper .faq {
    border-bottom:1px solid var(--dark-gray);
    width:100%;
    display:flex;
    flex-wrap: wrap;
    gap:1rem;
    padding-bottom:2rem;
}

.module-faq-panel .posts-wrapper .faq:first-child {
    border-top:1px solid var(--dark-gray);
    padding-top:2rem;
}

.module-faq-panel .posts-wrapper .faq-category-wrapper .faq:first-child {
    border-top:0;
    padding-top:0;
}

.module-faq-panel .posts-wrapper .faq .faq-question {
    font-size:2rem;
    line-height: 2.8rem;
    position: relative;
    padding-right:5rem;
    width:100%;
    font-weight: bold;
}

.module-faq-panel .posts-wrapper .faq .faq-question:hover {
    cursor:pointer;
}

.module-faq-panel .posts-wrapper .faq .faq-question:after {
    font: var(--fa-font-regular);
    content: '\2b';
    color:#000;
    background-color:var(--yellow);
    border-radius:50%;
    font-size:1.4rem;
    width:30px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right:0;
    top:0;
}

.module-faq-panel .posts-wrapper .faq.active .faq-question:after {
    content:'\58';
}

.module-faq-panel .posts-wrapper .faq .faq-answer {
    display:none;
    font-size:1.7rem;
    line-height: 2.5rem;
    padding-right:5rem;
    margin-top:1rem;
}

.module-faq-panel .posts-wrapper .faq .faq-answer p:first-child {
    margin-top:0;
}

.module-faq-panel.mcs-gray {
    background-color: var(--light-gray);
}

@media (min-width:1200px) {
    .module-faq-panel .posts-wrapper {
        margin:0px auto;
    }

    .module-faq-panel .faq-tools .faq-tools-text {
        width:auto;
    }

    .module-faq-panel .posts-wrapper .faq {
        max-width:1000px;
        margin:0 auto;
    }

    .module-faq-panel .posts-wrapper .faq .faq-question {
        font-size:2.4rem;
        line-height: 3.2rem;
    }

    .module-faq-panel .posts-wrapper .faq .faq-answer {
        font-size:1.9rem;
        line-height: 2.8rem;
    }

    .module-faq-panel .faq-tools .faq-tools-text:before {
        content:url('/images/cho-dot-arrow.svg');
        display: inline-block;
        justify-content: center;
        align-items: center;
        position: absolute;
        left:-3rem;
        top:0;
    }
}