/* ════════════════════════════════════════════════════════
   EDITORIAL HORIZONTAL SIMPLE
   Eyebrow + título (izq) / descripción + enlace (der)
   ════════════════════════════════════════════════════════ */

.ehs {background: var(--bg-surface-dark);
    position: relative;
    overflow: hidden;
}

/* ─── Marca de agua ───────────────────────────── */
.ehs__marca-agua {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    font-size: var(--fs-display);
    font-family: var(--ff-headings);
    font-weight: 900;
    color: var(--text-soft); opacity: 0.05;
    -webkit-text-stroke: 1px var(--border-soft);

paint-order: stroke fill;


    white-space: nowrap;
    text-transform: uppercase;
    z-index: 1;
    pointer-events: none;
    text-align: center;
    line-height: 0.8;
    user-select: none;

}

/* ─── Grid dos columnas ───────────────────────── */
.ehs__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    align-items: start;color:white;
}

.ehs__grid h2 {
    color:#fff;
 }


@media (min-width: 768px) {
    .ehs__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-7);
        align-items: center;
    }
}

/* ─── Izquierda ───────────────────────────────── */
.ehs__izquierda {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.ehs__titulo {
    margin: 0;
}

/* ─── Derecha ─────────────────────────────────── */
.ehs__derecha {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.ehs__descripcion {
    margin: 0;
}

.ehs__enlace {
    font-size: var(--fs-ui);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: underline;
    text-underline-offset: 4px;
    color: rgb(var(--clr-text));
    font-weight: 600;
    transition: opacity 180ms ease;
    align-self: flex-start;
}

.ehs__enlace:hover,
.ehs__enlace:focus-visible {
    opacity: 0.6;
    outline: none;
}

/* ─── Reduce motion ───────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .ehs__enlace {
        transition: none;
    }
}

.ehs__note{color:var(--text-light); opacity: 0.5; margin-top: var(--space-3);}