/* ========================================
PAGE SUPPORT
======================================== */

.support-page {
    width: min(
        var(--page-width),
        calc(100% - 44px)
    );

    margin: 0 auto;

    padding: 58px 0 100px;
}

p {
    text-align: justify;
}

/* ========================================
EN-TÊTE
======================================== */

.support-heading {
    max-width: 820px;

    margin-bottom: 62px;
}

.support-heading h1 {
    margin: 0 0 22px;

    font-size: clamp(48px, 7vw, 78px);
    line-height: .96;

    letter-spacing: -3px;
}

.support-heading h1::after {
    content: "";

    display: block;

    width: 64px;
    height: 6px;

    margin-top: 18px;

    background: var(--header-green);
}

.support-heading p {
    max-width: 650px;

    margin: 28px 0 0;

    color: var(--grey);

    font-size: 18px;
    line-height: 1.6;
}


/* ========================================
LISTE DES 3 FAÇONS
======================================== */

.support-options {
    border-top: 1px solid var(--border);
}

.support-option {
    display: grid;

    grid-template-columns: 90px 1fr;

    gap: 28px;

    padding: 46px 0;

    border-bottom: 1px solid var(--border);
}

.support-option-number {
    padding-top: 4px;

    color: var(--header-green);

    font-size: 17px;
    font-weight: 900;

    letter-spacing: 1px;
}

.support-option-content {
    max-width: 760px;
}

.support-option-content h2 {
    margin: 0 0 18px;

    font-size: clamp(32px, 4vw, 48px);
    line-height: 1;

    letter-spacing: -1.6px;
}

.support-option-content p {
    max-width: 650px;

    margin: 25px 0 25px;

    color: var(--grey);

    font-size: 17px;
    line-height: 1.65;
}

.support-ending {
    margin-bottom: 0 !important;
}


/* ========================================
DON
======================================== */

/* ========================================
BOUTONS PRINCIPAUX
======================================== */

.support-primary-button,
.support-help-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    min-height: 56px;

    padding: 0 20px;

    color: #fff;

    font-size: 17px;
    font-weight: 900;

    text-decoration: none;

    transition: filter .15s ease;
}

.support-primary-button {
    background: var(--coral);
}

.support-help-button {
    background: #76c56b;
}

.support-primary-button:hover,
.support-help-button:hover {
    filter: brightness(.95);
}


/* ========================================
FLÈCHES
======================================== */

.support-primary-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: currentColor;
}

.support-primary-arrow .site-arrow-link {
    width: 30px;
    height: auto;

    display: block;
}


/* ========================================
LIENS SECONDAIRES
======================================== */

.support-secondary-link {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    color: #fff;

    font-size: 17px;
    font-weight: 900;

    text-decoration: none;
}

/* ========================================
À VENIR
======================================== */

.support-secondary-link-disabled .action-coming-soon {
    display: inline-block;

    margin-left: 8px;

    padding: 4px 8px 3px;

    border: 1.5px solid #c96b57;

    color: #c96b57;

    background: rgba(
        255,
        255,
        255,
        .3
    );

    font-size: 10px;
    font-weight: 700;

    line-height: 1;

    letter-spacing: .11em;

    text-transform: uppercase;

    transform: rotate(-4deg);

    white-space: nowrap;
}


/* ========================================
FLÈCHES
======================================== */

.arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.arrow .site-arrow {
    width: 28px;
    height: auto;

    display: block;
}

/* ========================================
DONATION 
======================================== */

.support-donation-note {
    margin-top: 32px;
    padding: 18px 20px;

    background: var(--green-soft);
    border-left: 4px solid var(--green);
}

.support-donation-note {
    margin-top: 32px;
    padding: 18px 20px;

    background: #fff1ed;
    border-left: 4px solid var(--coral);
}

.support-donation-note p {
    margin: 0;

    font-style: italic;
    font-size: 16px;
    line-height: 1.5;
}


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

@media (max-width: 760px) {

    .support-page {
        width: calc(100% - 32px);

        padding: 38px 0 70px;
    }

    .support-heading {
        margin-bottom: 45px;
    }

    .support-heading h1 {
        font-size: 48px;

        letter-spacing: -2.2px;
    }

    .support-heading p {
        font-size: 16px;
    }

    .support-option {
        grid-template-columns: 1fr;

        gap: 10px;

        padding: 34px 0;
    }

    .support-option-number {
        font-size: 13px;
    }

    .support-option-content h2 {
        font-size: 32px;
    }

    .support-option-content p {
        font-size: 16px;
    }

    .support-primary-button {
        width: 100%;

        box-sizing: border-box;

        min-height: 58px;

        padding: 0 16px;
    }

    .arrow .site-arrow {
        width: 24px;
    }

    .support-secondary-link-disabled {
        gap: 8px;
    }

    .support-secondary-link-disabled .action-coming-soon {
        margin-left: 6px;
    }
}