/* ==========================================================================
   Block — Hero About
   Mobile-first, breakpoint at 768px
   ========================================================================== */

/* ── Section ── */
.block-hero-about {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    color: var(--color-white);
    background-color: var(--color-grey-ultra-dark);
}

/* ── Background Image ── */
.block-hero-about__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.block-hero-about__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Inner Wrapper ── */
.block-hero-about__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    padding: 120px var(--grid-margin) var(--space-xl);
    gap: var(--space-xl);
    min-height: 100svh;
}

/* ── Text Content ── */
.block-hero-about__text {
    display: flex;
    flex-direction: column;
    z-index: 2;
    position: relative;
}

/* ── Eyebrow ── */
.block-hero-about__eyebrow {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-body);
    font-size: var(--body-small-size);
    font-weight: var(--weight-regular);
    line-height: var(--body-small-line-height);
    color: var(--color-off-white);
    margin: 0 0 12px;
}

.block-hero-about__eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-white);
    flex-shrink: 0;
}

/* ── Heading ── */
.block-hero-about__heading {
    font-family: var(--font-heading);
    font-size: var(--h3-size);
    font-weight: var(--weight-medium);
    line-height: var(--h2-line-height);
    color: var(--color-white);
    margin: 0 0 var(--space-md);
}

/* ── Body ── */
.block-hero-about__body {
    font-family: var(--font-body);
    font-size: var(--body-mid-size);
    font-weight: var(--weight-regular);
    line-height: var(--body-mid-line-height);
    color: var(--color-off-white);
    margin: 0;
}

/* ── Media ── */
.block-hero-about__media {
    width: 100%;
    height: 411px;
    border-radius: var(--radius-card);
    overflow: hidden;
    flex-shrink: 0;
}

.block-hero-about__image,
.block-hero-about__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ══════════════════════════════════════════════════════════════════════════
   Desktop (≥ 768px)
   ══════════════════════════════════════════════════════════════════════════ */

@media (min-width: 768px) {

    .block-hero-about__inner {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        padding: 0 var(--grid-margin) 120px;
        gap: var(--grid-gutter);
        min-height: 100svh;
    }

    .block-hero-about__text {
        width: 48%;
        max-width: 628px;
        flex-shrink: 0;
    }

    .block-hero-about__heading {
        font-size: var(--h2-size);
    }

    .block-hero-about__body {
        font-size: var(--body-large-size);
        line-height: var(--body-large-line-height);
    }

    .block-hero-about__media {
        width: 40%;
        max-width: 510px;
        height: 630px;
        align-self: flex-end;
    }
}
