
body {
    --page-full-width: 60em;
    --section-padding: 3em;
    min-width: 315px;
}

.contentWrapper {
    padding-bottom: 0 !important;
}

@media only screen and (min-width: 540px) {
    body {
        --section-padding: 4em;
    }
}

.full-width {
    width: 90%;
    max-width: var(--page-full-width);
    margin: 0 auto;
}

.flex {
    display: flex;
}

.padded {
    padding: var(--section-padding) 0;
}

.full-width .button {
    display: inline-block;
    transition: all 100ms ease;
    margin-top: 1em;
    font-weight: 600;
    color: white;
    padding: 1em;
    text-decoration: none;
    border-radius: var(--button-roundness);
}

.full-width .button:hover {
    text-decoration: none;
}

.full-width h2 {
    color: var(--text-color);
    font-weight: 600;
    font-size: 2em;
}

.card {
    margin: 1em 0 0 0;
    background-color: white;
    padding: 2em;
    box-shadow: 0 1em 2em rgba(0, 0, 0, 0.1);
}

#di-page-composer {
    transform: translateY(-30px);
}

/* Intro */

h1 {
    font-size: 2.25em;
    margin: 0 0 0.5em 0;
}

#hero {
    width: 100%;
    object-fit: cover;
}

#intro .button {
    margin: 1em 0 0 0;
}

/* Rewards Summary */

#lease-return-steps,
#gm-rewards-qa {
    background-color: #f2f2f2;
}

#lease-return-steps .full-width {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1em;
}

#lease-return-steps h2,
#gm-rewards-qa h2,
#local-support h2 {
    text-transform: uppercase;
    margin: 0 auto 1em auto;
    text-align: center;
}

#lease-return-steps .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    text-align: center;
}

#lease-return-steps i {
    display: block;
    color: var(--main-color);
    font-size: 2em;
    margin: 0 auto 0.75em auto;
}

#lease-return-steps h3 {
    margin: 0.125em 0 0.75em 0;
    font-size: 1.75em;
    color: var(--text-color);
    line-height: 1em;
    font-weight: 600;
}

#lease-return-steps .card p:last-child {
    margin-bottom: 0;
}

/* Earning Options */

#lease-end-options {
    text-align: center;
}

#lease-end-options .flex {
    flex-direction: column;
    gap: 1em;
}

#lease-end-options .option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25em;
    flex: 1;
    min-width: 0;
    background-color: white;
    padding: 2em;
    box-shadow: 0 1em 2em rgba(0, 0, 0, 0.1);
}

#lease-end-options .option i {
    color: var(--main-color);
    font-size: 2.5em;
}

#lease-end-options h2 {
    margin: 0 0 1.5em 0;
    text-transform: uppercase;
    font-weight: 600;
}

#lease-end-options h3 {
    font-size: 1.5em;
    font-weight: 600;
}

#lease-end-options h3 i {
    color: var(--main-color);
}

#lease-end-options .full-width>p:last-child {
    margin: 1em 0 0 0;
}

/* Q&A */

#gm-rewards-qa h3 {
    margin: 0;
    font-size: 1.25em;
    line-height: 1.4em;
    font-weight: 600;
}

#gm-rewards-qa .faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1em;
    padding: 0;
    border: 0;
    color: var(--text-color);
    background: transparent;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

#gm-rewards-qa .faq-question span {
    display: flex;
    align-items: center;
    gap: 0.75em;
    min-width: 0;
}

#gm-rewards-qa .faq-question i:first-child {
    color: var(--main-color);
}

#gm-rewards-qa .faq-question .fa-chevron-down {
    flex: 0 0 auto;
    color: var(--main-color);
    transition: transform 200ms ease;
}

#gm-rewards-qa .faq-item.active .fa-chevron-down {
    transform: rotate(180deg);
}

#gm-rewards-qa .faq-answer {
    margin: 1em 0 0 2.25em;
}

#gm-rewards-qa .faq-answer p:last-child {
    margin-bottom: 0;
}

#gm-rewards-qa .faq-answer ul {
    margin-bottom: 0;
}

/* Local Support */

#local-support i {
    color: var(--main-color);
}

#local-support .card p {
    display: flex;
    align-items: center;
    gap: 0.75em;
}

#local-support .card p i {
    flex: 0 0 auto;
}

#local-support .local-support-card {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
        "details"
        "image";
    gap: 0;
    padding: 0;
    overflow: hidden;
}

#local-support .local-support-details {
    grid-area: details;
    padding: 2em;
}

#local-support .local-support-image {
    grid-area: image;
    min-height: 16em;
}

#local-support .local-support-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 16em;
    object-fit: cover;
}

/* Specials */

#specials {
    position: relative;
    isolation: isolate;
    color: white;
    background-color: #333333;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#specials::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.55);
    pointer-events: none;
}

#specials>* {
    position: relative;
    z-index: 1;
}

#specials a,
#specials h2 {
    color: white;
}

#specials h2 {
    margin: 0 0 1em 0;
}

#specials .flex {
    margin: 2em 0 0 0;
    gap: 1em;
    flex-direction: column;
}

@media only screen and (min-width: 540px) {
    #lease-end-options .flex {
        flex-direction: row;
    }

    #specials .flex {
        flex-direction: row;
    }
}

@media only screen and (min-width: 768px) {
    #lease-return-steps .full-width {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    #lease-return-steps h2 {
        grid-column: 1 / -1;
    }

    #local-support .local-support-card {
        grid-template-columns: minmax(0, 1.1fr) minmax(18em, 0.9fr);
        grid-template-areas: "details image";
    }
}

/* Form */

.gform_heading {
    display: none;
}