/* ==================================================
   CIVIC HORIZON INDEX V2
   EXPLORE CIVIC HORIZON
================================================== */

.discover {
    padding: 76px 0;
    background: #f7f9fb;
}

.discover__container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


/* ==================================================
   SECTION HEADING
================================================== */

.discover__header {
    max-width: 760px;
    margin-bottom: 34px;
}

.discover__eyebrow {
    margin: 0 0 10px;
    color: #1f5f99;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.discover__header h2 {
    margin: 0;
    color: #102a43;
    font-family: "Merriweather", Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.2;
}

.discover__header > p:last-child {
    margin: 15px 0 0;
    color: #627d98;
    line-height: 1.75;
}


/* ==================================================
   CARD GRID
================================================== */

.discover__grid {
    display: grid;
    grid-template-columns:
        repeat(
            4,
            minmax(0, 1fr)
        );
    gap: 18px;
}


/* ==================================================
   DISCOVER CARD
================================================== */

.discover-card {
    display: flex;
    min-width: 0;
    min-height: 250px;
    padding: 24px;
    flex-direction: column;
    border: 1px solid #d9e2ec;
    border-radius: 14px;
    background: #ffffff;
    color: inherit;
    text-decoration: none;
    box-shadow:
        0 10px 24px
        rgba(16, 42, 67, 0.05);
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.discover-card:hover,
.discover-card:focus-visible {
    border-color: #9fbdd4;
    box-shadow:
        0 14px 30px
        rgba(16, 42, 67, 0.08);
    outline: none;
    transform: translateY(-2px);
}


/* ==================================================
   CARD EYEBROW
================================================== */

.discover-card__eyebrow {
    margin: 0 0 12px !important;
    color: #1f5f99 !important;
    font-size: 0.68rem !important;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.4 !important;
    text-transform: uppercase;
}


/* ==================================================
   CARD TITLE
================================================== */

.discover-card h3 {
    margin: 0;
    color: #102a43;
    font-family: "Merriweather", Georgia, serif;
    font-size: 1.12rem;
    line-height: 1.45;
}


/* ==================================================
   CARD DESCRIPTION
================================================== */

.discover-card > p:not(.discover-card__eyebrow) {
    margin: 14px 0 22px;
    color: #627d98;
    font-size: 0.86rem;
    line-height: 1.7;
}


/* ==================================================
   CARD ACTION
================================================== */

.discover-card > span:last-child {
    margin-top: auto;
    color: #1f5f99;
    font-size: 0.8rem;
    font-weight: 800;
}


/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 1000px) {

    .discover__grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

}


@media (max-width: 600px) {

    .discover {
        padding: 62px 0;
    }

    .discover__container {
        width: min(
            1180px,
            calc(100% - 32px)
        );
    }

    .discover__grid {
        grid-template-columns: 1fr;
    }

    .discover-card {
        min-height: auto;
        padding: 22px;
    }

}