/* ==========================================================================
   Hero — VSGscheibe (image-left / text-right side-by-side)
   Mirrors base ESG layout, retains tinted bg + accent line for header sep.
   ========================================================================== */

.ts-hero {
    /* Clearly tinted gray-emerald — visibly distinct from white body/header */
    background: #d4e2dd;
    border-bottom: 1px solid var(--ts-dark-tertiary);
    /* Push past fixed 76px header — hero starts immediately below, bg color contrast separates */
    margin-top: var(--ts-header-height);
    padding: 3rem 0 4rem;
    overflow: hidden;
    position: relative;
}

.ts-hero-container {
    max-width: var(--ts-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* 2-column grid: image left (slightly bigger), text right */
.ts-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

/* LEFT — image / illustration */
.ts-hero-media {
    aspect-ratio: 4 / 3;
    border-radius: var(--ts-radius-xl);
    overflow: hidden;
    background: var(--ts-dark-tertiary);
    box-shadow: var(--ts-shadow-lg);
}

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

/* RIGHT — text content (left-aligned now, not centered) */
.ts-hero-text {
    min-width: 0;
}

.ts-hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ts-accent);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.ts-hero-title {
    font-family: var(--ts-font-display);
    font-size: clamp(1.85rem, 3.4vw, 2.75rem);
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--ts-white);
    margin: 0 0 1.25rem;
}

.ts-hero-subtitle {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--ts-silver);
    margin: 0 0 1.75rem;
    max-width: 520px;
}

.ts-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}

/* Spec pills row — centered below the grid */
.ts-hero-specs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ts-hero-spec {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ts-silver);
    background: var(--ts-black);
    padding: 0.5rem 0.9rem;
    border-radius: var(--ts-radius-full);
    border: 1px solid var(--ts-dark-tertiary);
    line-height: 1.4;
    box-shadow: var(--ts-shadow-sm);
}

.ts-hero-spec-icon {
    color: var(--ts-success);
    flex-shrink: 0;
}

/* Tablet — stack to single column, image first */
@media (max-width: 900px) {
    .ts-hero {
        padding: 4rem 0 3rem;
    }
    .ts-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    .ts-hero-media {
        aspect-ratio: 16 / 9;
        border-radius: var(--ts-radius-lg);
    }
}

/* Mobile */
@media (max-width: 540px) {
    .ts-hero {
        padding: 3rem 0 2.5rem;
    }
    .ts-hero-grid {
        gap: 1.5rem;
    }
    .ts-hero-media {
        aspect-ratio: 4 / 3;
        border-radius: var(--ts-radius-md);
    }
    .ts-hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 0.6rem;
    }
    .ts-hero-cta .ts-btn {
        width: 100%;
    }
    .ts-hero-specs {
        gap: 0.5rem;
    }
    .ts-hero-spec {
        font-size: 0.8rem;
        padding: 0.45rem 0.75rem;
    }
}
