/* DT4A-002: homepage hero, light conversion-design treatment ("variant C").
   Conversion-design typography and buttons rendered directly on the page's existing
   white panel - deliberately NO blue hero panel (panel-in-panel was rejected in review)
   and NO gs-conv classes (their font rules are scoped and their heroes assume the blue
   panel). Loaded directly by Default.aspx; no .min pair. */

.gs-hh-eyebrow {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #1D5FC4;
    margin: 0 0 10px;
}

.gs-hh-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 44px;
    line-height: 1.08;
    letter-spacing: -1px;
    color: #14140F;
    margin: 0 0 16px;
}

.gs-hh-lede {
    font-family: 'Figtree', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: #4a4a45;
    margin: 0 0 8px;
}

.gs-hh-terms {
    font-family: 'Figtree', sans-serif;
    font-size: 11.5px;
    line-height: 1.5;
    color: #8a8780;
    margin: 0 0 18px;
}

    .gs-hh-terms a {
        color: #5c5a52 !important;
        text-decoration: underline;
    }

.gs-hh-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.gs-hh-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 17px;
    line-height: 1.3;
    border-radius: 14px;
    padding: 16px 26px;
    text-decoration: none;
}

.gs-hh-cta--dark {
    background-color: #14140F;
    color: #fff !important;
}

    .gs-hh-cta--dark:hover,
    .gs-hh-cta--dark:focus {
        color: #fff !important;
        filter: brightness(1.15);
        text-decoration: none;
    }

.gs-hh-cta--outline {
    background-color: #fff;
    border: 1.5px solid #d8d9dd;
    color: #14140F !important;
}

    .gs-hh-cta--outline:hover,
    .gs-hh-cta--outline:focus {
        background-color: #f5f6f8;
        color: #14140F !important;
        text-decoration: none;
    }

.gs-hh-cta-arrow {
    margin-left: 10px;
    font-size: 14px;
    line-height: 1;
}

.gs-hh-trust {
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #5c5a52;
}

    .gs-hh-trust span {
        display: inline-block;
        margin-right: 16px;
    }

    .gs-hh-trust i {
        margin-right: 5px;
    }

/* test-type chooser card (the hero's visual, and THE compact test-type chooser) */
.gs-hh-chooser {
    background-color: #fff;
    border: 1px solid #e3e6ea;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 14px 40px rgba(20, 20, 40, .08);
}

.gs-hh-chooser-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 19px;
    color: #14140F;
    margin: 0 0 14px;
}

.gs-hh-chooser-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

    /* 7 tiles on a 2-column grid: Car (the priority test type) spans the full first row */
    .gs-hh-chooser-grid .gs-hh-tile:first-child {
        grid-column: 1 / -1;
    }

.gs-hh-tile {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid #dfe3e8;
    border-radius: 12px;
    padding: 11px 10px;
    text-decoration: none;
    color: #14140F !important;
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 13.5px;
    white-space: nowrap;
    background-color: #fbfcfd;
}

    .gs-hh-tile:hover,
    .gs-hh-tile:focus {
        border-color: #1D5FC4;
        background-color: #f2f7fd;
        text-decoration: none;
    }

    .gs-hh-tile i {
        color: #1D5FC4;
        width: 18px;
        text-align: center;
    }

.gs-hh-tile--dark {
    justify-content: center;
    border: none;
    background-color: #14140F;
    color: #fff !important;
    font-weight: 700;
}

    .gs-hh-tile--dark:hover,
    .gs-hh-tile--dark:focus {
        background-color: #14140F;
        filter: brightness(1.25);
        color: #fff !important;
    }

    .gs-hh-tile--dark i {
        color: #fff;
        width: auto;
    }

@media (max-width: 575px) {
    .gs-hh-title {
        font-size: 32px;
    }

    .gs-hh-cta {
        width: 100%;
    }

    /* single-column tiles on phones - the long CPC labels do not fit two-up at 375px */
    .gs-hh-chooser-grid {
        grid-template-columns: 1fr;
    }
}
