.faq-v2 > .boxed {
    display: flex;
    justify-content: center;
    padding: 192px 64px 0 64px !important;
}

.faq-v2 > .boxed > .container {
    position: relative;
    width: 624px;
    max-width: 100%;
}

.faq-v2 .container > .heading {
    margin-bottom: 48px;
    background: linear-gradient(180deg, #20375F 0%, #162032 100%);
    -webkit-background-clip: text;
    background-clip: text;
    font-family: 'Panton', sans-serif;
    font-size: 44px;
    font-weight: 370;
    line-height: 48px;
    -webkit-text-fill-color: transparent;
}

.faq-v2 .question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
}

.faq-v2 .question > .heading {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 330;
    color: #1A2233;
    line-height: 28px;
}

.faq-v2 .item .answer {
    display: none;
    padding-bottom: 20px;
    font-size: 16px;
    color: #5a5a5a;
    line-height: 24px;
}

.faq-v2 .items {
    margin-bottom: 32px;
}

.faq-v2 .items .question::after {
    display: flex;
    justify-content: flex-end;
    width: 24px;
    height: 24px;
    content: '';
    background-image: url('images/down-icon.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.faq-v2 .items .item.active .question::after {
    background-image: url('images/up-icon.svg');
}

.faq-v2 .items .item:first-child {
    border-top: 1px solid #DADFE6;
}

.faq-v2 .items .item {
    border-bottom: 1px solid #DADFE6;
}

.faq-v2 .active .answer {
    display: block;
}

.faq-v2 .read-more {
    display: flex;
    justify-content: right;
    margin-bottom: 48px;
}

.faq-v2 .read-more > a {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    font-family: 'Panton', sans-serif;
    font-size: 18px;
    font-weight: 350;
    color: #1A2233;
    line-height: 28px;
    column-gap: 8px;
}

.faq-v2 .read-more > a::after {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
    content: '';
    background-image: url('/wp-content/themes/strevon/assets/images/icons/arrow-right.svg');
    background-size: cover;
}

.faq-v2 .read-more > a:hover {
    text-decoration: none;
}

.faq-v2 .employee-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px;
    border-radius: 24px;
    background: #F4F6FC;
    gap: 24px;
}

.faq-v2 .employee-box > .heading {
    margin-bottom: 0;
    font-family: 'Panton', sans-serif;
    font-size: 23px;
    font-weight: 370;
    color: #162032;
    line-height: 28px;
}

.faq-v2 .employee-box > .image > img {
    display: block;
    width: 128px;
    height: 128px;
    border-radius: 64px;
    object-fit: cover;
}

.faq-v2 .employee-box > .button-group {
    align-self: initial;
}

@media screen and (max-width: 768px) {
    .faq-v2 > .boxed {
        padding: 64px 16px 0 16px !important;
    }

    .faq-v2 .container > .heading {
        margin-bottom: 24px;
        font-size: 24px;
        line-height: 32px;
    }

    .faq-v2 .question > .heading {
        max-width: calc(100% - 24px);
        font-size: 16px;
        line-height: 24px;
    }

    .faq-v2 .items {
        margin-bottom: 24px;
    }

    .faq-v2 .read-more {
        margin-bottom: 32px;
    }

    .faq-v2 .read-more > a {
        column-gap: 4px;
    }

    .faq-v2 .read-more > a::after {
        width: 20px;
        height: 20px;
    }

    .faq-v2 .employee-box {
        padding: 24px;
    }

    .faq-v2 .employee-box > .heading {
        font-size: 18px;
        line-height: 24px;
    }

    .faq-v2 .employee-box > .button-group {
        align-self: stretch;
    }
}