.faq-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-accordion-title {
    font-weight: 500;
    font-size: 18px;
    line-height: normal;
    color: var(--color-grey);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-text {
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 0;
}

.faq-link {
    color: #2ED3D9;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    text-decoration: underline;
    margin-bottom: 16px;
    display: block;
}

@media (min-width: 768px) {
    .faq-wrap {
        gap: 24px;
    }

    .faq-accordion-title {
        font-size: 20px;
    }

    .faq-button {
        max-width: 280px;
    }
}

@media (min-width: 1200px) {
    .faq-accordion-title {
        font-size: 24px;
    }
}