.faq {
    background-color: var(--light-grey);
}

.faq .boxed {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 130px;
    padding-top: 100px;
    padding-bottom: 100px;
}

.faq .boxed .info .heading {
    margin-bottom: .2em;
    font-size: 64px;
    line-height: 1.12em;
    letter-spacing: -5.12px;
}

.faq .boxed .info .sub-heading {
    color: var(--plum);
    font-family: Instrument-400, sans-serif;
    font-size: 36px;
    line-height: normal;
    letter-spacing: normal;
}

.faq .boxed .question > h3 {
    cursor: pointer;
    color: var(--dark-grey);
    font-family: Inter-600, sans-serif;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.32px;
    margin-bottom: 0;
}

.faq .active .question > h3 {
    margin-bottom: 12px;
}

.faq .boxed .answer {
    display: none;
}

.faq .boxed .answer > p, .faq .boxed .answer > ul li, .faq .boxed .answer > ul li a {
    max-width: 858px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.32px;
    margin-bottom: 0;
}

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

.faq .boxed .items {
    width: 100%;
}

.faq .boxed .items .item {
    padding: 27px 45px;
    border-top: 2px solid var(--olive);
    cursor: pointer;
}

.faq .boxed .items .item:first-child {
    border-top: none;
}

.faq .boxed .items .item.active {
    background: var(--offwhite);
}

.faq .boxed .items .item .question {
    display: flex;
    gap: 17px;
}

.faq .boxed .items .question::before {
    display: flex;
    justify-content: flex-end;
    content: url("images/plus.svg");
}

.faq .items .item.active .question::before {
    content: url("images/min.svg");
}


@media (max-width: 768px) {
    .faq .boxed {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-top: 120px;
        padding-bottom: 120px;
    }

    .faq .boxed .info {
        order: 1;
    }
    .faq .boxed .items {
        order: 2;
    }
}

@media (max-width: 520px) {
    .faq .boxed .info .heading {
        font-size: 48px;
        letter-spacing: -4.12px;
    }
}
