/* Locked homepage hero: full-bleed photo + brand + next agenda as bottom rule */

.home-hero--split {
    min-height: clamp(480px, 72vh, 760px);
    align-items: stretch;
    justify-content: stretch;
}

.home-hero__content--split {
    max-width: var(--home-max, 1120px);
    width: 100%;
    margin: 0 auto;
    padding: 6.5rem 1.75rem 3.5rem;
    text-align: left;
    align-items: stretch;
    display: grid;
    gap: clamp(1.5rem, 4vw, 3rem);
    animation: home-rise 0.9s ease-out both;
}

.home-hero--split .home-hero__title,
.home-hero--split .home-hero h1 {
    text-align: left;
}

.home-hero--split .home-hero__text {
    margin-left: 0;
    margin-right: 0;
    max-width: 32rem;
}

.home-hero--split .home-hero__actions {
    justify-content: flex-start;
}

.hh-in--bottom {
    grid-template-columns: 1fr;
    align-content: center;
}

.hh-in__brand,
.hh-in__event {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    background: transparent;
}

.hh-in--bottom .hh-in__brand {
    max-width: 40rem;
}

.hh-ev {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    text-decoration: none;
    color: #fff;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.hh-ev__kicker {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.hh-ev__title {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.25;
    font-weight: 700;
    color: #fff;
}

.hh-ev__meta {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.45;
    font-size: 0.98rem;
}

.hh-ev__cta {
    font-weight: 600;
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 0.18em;
    text-decoration-color: rgba(255, 255, 255, 0.55);
}

.hh-ev:hover .hh-ev__title,
.hh-ev:hover .hh-ev__cta {
    color: #f3efe6;
}

.hh-ev--row {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.65rem 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.hh-ev--row .hh-ev__cta {
    margin-left: auto;
}

@media (max-width: 860px) {
    .home-hero--split {
        min-height: clamp(560px, 92svh, 780px);
    }

    .home-hero__content--split.hh-in--bottom {
        flex: 1;
        min-height: 0;
        padding-top: 7.5rem;
        padding-bottom: 2.5rem;
        gap: 1.75rem;
        grid-template-rows: 1fr auto;
        align-content: stretch;
    }

    .hh-in--bottom .hh-in__brand {
        justify-content: flex-end;
        padding-top: 1rem;
        padding-bottom: 0.25rem;
    }

    .hh-ev--row .hh-ev__cta {
        margin-left: 0;
    }
}
