/* ── Hero ── */
.hero {
    position: relative;
    width: 100%;
    margin: 0 auto;
    /* overflow: hidden; */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--spacing-sm);
    align-items: center;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(25, 32, 93, 0.60) 0%, rgba(25, 32, 93, 0.00) 100%);
    pointer-events: none;
}

.hero__content {
    text-align: center;
    grid-column: 2 / -2;
    margin-block-start: 3rem;
    margin-block-end: 3rem;
}

.hero__title {
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.hero__subtitle {
    font-size: var(--font-size-h4);
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
}

.hero__subtitle p {
    margin: 0;
}

.hero__filter {
    padding-inline: 0.5rem;
    margin-block-end: 1rem;
    grid-column: 1 / -1;
}

.hero__wave {
    position: absolute;
    bottom: -0.0625rem;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero__wave svg {
    display: block;
    width: 100%;
    height: auto;
}

@media ( min-width: 48rem ) {

    .hero {
        width: calc(100% - 2.5rem);
        border-radius: var(--radius-md) var(--radius-md) 0 0;
        /* overflow: hidden; */
    }

}

@media ( min-width: 64rem ) {

    .hero__content {
        grid-column: 3 / -3;
    }

    .hero__filter {
        margin-block-end: 7rem;
    }
}

@media ( min-width: 80rem ) {

    .hero__content {
        grid-column: 2 / -2;
        margin-block-start: 8rem;
        margin-block-end: 4.5rem;
    }
}