/* =========================================================
   GTA 6 FAQ
   ========================================================= */

.faq-hero {
    position: relative;
    overflow: hidden;
    padding: 105px 0 82px;

    background:
        radial-gradient(
            circle at 82% 35%,
            rgba(139, 210, 63, 0.16),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #090c0e 0%,
            #111719 55%,
            #0a0d0f 100%
        );

    border-bottom: 1px solid #222a2e;
}

.faq-hero::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    right: -160px;
    top: -170px;
    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(220, 234, 105, 0.38),
            rgba(139, 210, 63, 0.08) 48%,
            transparent 72%
        );

    pointer-events: none;
}

.faq-hero .container {
    position: relative;
    z-index: 2;
}

.faq-hero h1 {
    margin: 18px 0 20px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(65px, 9vw, 105px);
    line-height: 0.84;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.faq-hero h1 span {
    display: block;
}

.faq-hero p {
    max-width: 720px;
    margin: 0;

    color: #a8b0b3;
    font-size: 15px;
    line-height: 1.75;
}


/* CONTENT */

.faq-main {
    padding: 80px 0 100px;
}

.faq-intro {
    max-width: 780px;
    margin: 0 0 45px;

    color: #9da6a9;
    font-size: 13px;
    line-height: 1.85;
}

.faq-group {
    max-width: 900px;
    margin-bottom: 58px;
}

.faq-group-label {
    display: inline-block;
    margin-bottom: 10px;

    color: var(--green);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.faq-group h2 {
    margin: 0 0 22px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 42px;
    line-height: 1;
    text-transform: uppercase;
}


/* FAQ ITEMS */

.faq-item {
    border-top: 1px solid #293134;
}

.faq-item:last-child {
    border-bottom: 1px solid #293134;
}

.faq-item summary {
    position: relative;

    padding: 22px 40px 22px 0;

    cursor: pointer;
    list-style: none;

    color: #f1f2ee;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 25px;
    line-height: 1.05;
    text-transform: uppercase;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";

    position: absolute;
    right: 0;
    top: 21px;

    color: var(--green);

    font-family: Inter, Arial, sans-serif;
    font-size: 21px;
    font-weight: 500;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-answer {
    max-width: 780px;
    padding: 0 0 23px;

    color: #9da6a9;
    font-size: 13px;
    line-height: 1.85;
}

.faq-answer p {
    margin: 0 0 14px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer a {
    color: var(--green);
    font-weight: 700;
}

.faq-answer a:hover {
    color: var(--green2);
}


/* CTA */

.faq-cta {
    padding: 70px 0;

    background:
        linear-gradient(
            110deg,
            #8bd23f,
            #b8e956
        );

    color: #091006;
}

.faq-cta h2 {
    max-width: 720px;
    margin: 8px 0 12px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 50px;
    line-height: 0.95;
    text-transform: uppercase;
}

.faq-cta p {
    max-width: 680px;
    margin: 0 0 25px;

    color: #263719;
    font-size: 13px;
    line-height: 1.7;
}

.faq-cta-button {
    display: inline-flex;
    align-items: center;

    min-height: 45px;
    padding: 0 20px;

    background: #0b100c;
    color: #fff;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}


/* MOBILE */

@media (max-width: 800px) {

    .faq-hero {
        padding: 78px 0 62px;
    }

    .faq-hero h1 {
        font-size: 64px;
    }

    .faq-main {
        padding: 60px 0 78px;
    }

    .faq-group h2 {
        font-size: 36px;
    }

    .faq-item summary {
        font-size: 22px;
    }

}

@media (max-width: 430px) {

    .faq-hero h1 {
        font-size: 54px;
    }

    .faq-item summary {
        font-size: 20px;
    }

}
