/* =========================================================================
   Home hero announcement (overrides the video)
   Layout matches the mockup:
   - Top row: logo (left) + title/button (right)
   - Bottom row: big centered cover image straddling beige/white split
   ========================================================================= */

.hha {
    position: relative;
    /* Beige upper ~55%, white lower ~45% — cover crosses the split */
    background: linear-gradient(to bottom, #f6f2e9 55%, #fff 55%);
    padding: 4rem 0 5rem;
    overflow: visible;
}

.hha .container {
    max-width: 1120px;
    margin-inline: auto;
    padding-inline: 2rem;
}

.hha__grid {
    display: grid;
    grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
    grid-template-areas:
        "logo text"
        "cover cover";
    column-gap: 3rem;
    row-gap: 2rem;
    align-items: start;
}

/* --- Top-left: Shaping Resilience logo --- */
.hha__logo-col {
    grid-area: logo;
    display: flex;
    justify-content: flex-start;
    padding-top: 0.5rem;
}
.hha__logo {
    max-width: 280px;
    height: auto;
    display: block;
}

/* --- Top-right: title + button --- */
.hha__text-col {
    grid-area: text;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}
.hha__title {
    font-family: Recife, sans-serif;
    font-weight: 400;
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    line-height: 1.1;
    color: #1b2a4a;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.hha__title p { margin: 0; }
.hha__title p strong { font-weight: 700; font-family: Raleway, sans-serif; }
.hha__title p + p { margin-top: 0.25em; }

/* --- Bottom row: big centered cover image straddling the split --- */
.hha__cover-col {
    grid-area: cover;
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}
.hha__cover-col img {
    max-width: 100%;
    width: min(760px, 100%);
    height: auto;
    display: block;
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.18));
}

/* --- Pill button (duplicated so this section styles standalone) --- */
.hha .pr-btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border: 1px solid #1b2a4a;
    border-radius: 999px;
    background: transparent;
    color: #1b2a4a;
    font-family: Raleway, sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    cursor: pointer;
}
.hha .pr-btn:hover,
.hha .pr-btn:focus {
    background: #1b2a4a;
    color: #fff;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .hha {
        padding: 3rem 0 3rem;
        background: linear-gradient(to bottom, #f6f2e9 60%, #fff 60%);
    }
    .hha__grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "logo"
            "text"
            "cover";
        gap: 1.5rem;
        text-align: center;
    }
    .hha__logo-col,
    .hha__text-col {
        justify-content: center;
    }
    .hha__text-col { align-items: center; padding-top: 0; }
    .hha__cover-col img { max-width: 100%; }
}
