
/* =====================================================
   NORDCHARGE FAQ SECTION
   ===================================================== */

.nordcharge-faq {
    width: 100%;
    padding: 90px 20px;
    background: #ffffff;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
                 Roboto, Helvetica, Arial, sans-serif;
}

.nordcharge-faq *,
.nordcharge-faq *::before,
.nordcharge-faq *::after {
    box-sizing: border-box;
}

.nordcharge-faq-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}


/* =====================================================
   HEADER
   ===================================================== */

.nordcharge-faq-header {
    text-align: center;
    margin-bottom: 55px;
}

.nordcharge-faq-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 16px;

    color: #8b8f94;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nordcharge-faq-label::before,
.nordcharge-faq-label::after {
    content: "";

    width: 28px;
    height: 1px;

    background: #d2d4d7;
}

.nordcharge-faq-title {
    margin: 0;

    color: #202124;

    font-size: clamp(34px, 5vw, 50px);
    line-height: 1.15;
    font-weight: 700;

    letter-spacing: -1.5px;
}

.nordcharge-faq-subtitle {
    max-width: 650px;

    margin: 18px auto 0;

    color: #777c82;

    font-size: 15px;
    line-height: 1.7;
}


/* =====================================================
   FAQ LIST
   ===================================================== */

.nordcharge-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


/* =====================================================
   FAQ ITEM
   ===================================================== */

.nordcharge-faq-item {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e5e7e9;
    border-radius: 12px;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.nordcharge-faq-item:hover {
    border-color: #d2d5d8;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.055);

    transform: translateY(-1px);
}

.nordcharge-faq-item[open] {
    border-color: #d5d7da;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.045);
}


/* =====================================================
   QUESTION
   ===================================================== */

.nordcharge-faq-question {
    display: flex;
    align-items: center;

    width: 100%;

    padding: 24px 28px;

    cursor: pointer;
    list-style: none;
}

.nordcharge-faq-question::-webkit-details-marker {
    display: none;
}


/* Number */

.nordcharge-faq-number {
    flex: 0 0 48px;

    color: #a3a6aa;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}


/* Question */

.nordcharge-faq-question-text {
    flex: 1;

    padding-right: 20px;

    color: #25272a;

    font-size: 16px;
    line-height: 1.5;
    font-weight: 650;
}


/* =====================================================
   PLUS / MINUS ICON
   ===================================================== */

.nordcharge-faq-icon {
    position: relative;

    flex: 0 0 24px;

    width: 24px;
    height: 24px;
}

.nordcharge-faq-icon::before,
.nordcharge-faq-icon::after {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 14px;
    height: 2px;

    background: #25272a;

    transform: translate(-50%, -50%);

    transition: transform 0.25s ease;
}

.nordcharge-faq-icon::after {
    transform:
        translate(-50%, -50%)
        rotate(90deg);
}

.nordcharge-faq-item[open]
.nordcharge-faq-icon::after {
    transform:
        translate(-50%, -50%)
        rotate(0deg);
}


/* =====================================================
   ANSWER
   ===================================================== */

.nordcharge-faq-answer {
    padding: 0 78px 28px 76px;

    color: #686d73;

    font-size: 14px;
    line-height: 1.85;
}

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

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


/* Highlight important information */

.nordcharge-faq-answer strong {
    color: #303338;
    font-weight: 650;
}


/* Compatibility list */

.nordcharge-faq-answer ul {
    margin: 12px 0 0;
    padding-left: 20px;
}

.nordcharge-faq-answer li {
    margin-bottom: 8px;
}

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


/* =====================================================
   SMALL ANSWER LABEL
   ===================================================== */

.nordcharge-faq-answer-label {
    display: inline-block;

    margin-bottom: 10px;

    color: #969a9f;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* =====================================================
   BOTTOM NOTE
   ===================================================== */

.nordcharge-faq-note {
    margin-top: 30px;
    padding: 18px 22px;

    background: #f7f8f9;

    border-radius: 8px;

    color: #777c82;

    font-size: 12px;
    line-height: 1.7;
}


/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 800px) {

    .nordcharge-faq {
        padding: 65px 20px;
    }

    .nordcharge-faq-header {
        margin-bottom: 40px;
    }

    .nordcharge-faq-answer {
        padding: 0 60px 25px 68px;
    }

}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 600px) {

    .nordcharge-faq {
        padding: 50px 15px;
    }

    .nordcharge-faq-title {
        font-size: 32px;
        letter-spacing: -0.8px;
    }

    .nordcharge-faq-subtitle {
        font-size: 14px;
    }

    .nordcharge-faq-question {
        padding: 20px 17px;
    }

    .nordcharge-faq-number {
        flex-basis: 34px;
        font-size: 10px;
    }

    .nordcharge-faq-question-text {
        font-size: 14px;
        padding-right: 12px;
    }

    .nordcharge-faq-answer {
        padding: 0 18px 22px 51px;

        font-size: 13px;
        line-height: 1.8;
    }

    .nordcharge-faq-note {
        font-size: 11px;
    }

}


/* =====================================================
   SMALL MOBILE
   ===================================================== */

@media (max-width: 400px) {

    .nordcharge-faq {
        padding: 40px 12px;
    }

    .nordcharge-faq-title {
        font-size: 29px;
    }

    .nordcharge-faq-question {
        padding: 18px 14px;
    }

    .nordcharge-faq-answer {
        padding-left: 47px;
    }

}
