/* =========================================================================
   Arletex Design System v3.5 — Tela Verde (/tela-de-colores/tela-verde)
   Hoja editorial por página. Prefijo de clase y de token: tv- / --tv-*.
   Tokens locales con fallback a --ax-* global y, si no, a hex del sistema.
   ─────────────────────────────────────────────────────────────────────────
   El "verde" es el TEMA, no el chrome: la marca sigue siendo orange/ink/paper.
   El verde aparece como DATO de producto — banda de color real en cada card
   de tono (--tone inline) y en la fotografía. Se respeta ≥55% blanco.

   Mapa de secciones (registro · apertura · marco · fondo · hover):
     01 Intro            Manifiesto · ManifestoClaim    · Top-rule  · white · press
     02 Envíos (banner)  Galería    · figura framed      · Bleed     · white · lift
     03 Tela Color Verde Periódico  · DropCap            · Double    · paper · side
     04 Rollos (banner)  Galería    · figura link        · —         · white · lift
     05 Algodón (split)  Dossier    · Dossier            · rule ink  · white · lift/press
     06 Tonos (10 cards) Almanaque  · NumberProtagonist  · Index-tab · white · lift-orange
     07 Precio           Fanzine    · MegaTextBg + burst · Bleed     · INK   · press
     08 Tipos chroma (3) Técnico    · LabelLateral       · Side-rule · cream · lift
     09 Vestidos/Estampar Periódico · Dossier            · Brick     · paper · lift
     10 Brillosa/Satinada Vitrina   · Dossier            · Top-rule  · white · press
     11 FAQ              Dossier    · RunIn + <details>  · Top-rule  · white · side
   ========================================================================= */

/* ─── Tokens locales + reset de caja (scoped) ──────────────────────────── */
.tv-page,
.tv-section {
    --tv-ink:           var(--ax-ink, #1F2530);
    --tv-paper:         var(--ax-paper, #FAF6EE);
    --tv-cream:         var(--ax-cream, #F2EDE4);
    --tv-white:         var(--ax-white, #FFFFFF);
    --tv-orange:        var(--ax-orange, #F15A29);
    --tv-orange-deep:   var(--ax-orange-deep, #B0401A);
    --tv-purple:        var(--ax-purple, #6A52A2);
    --tv-yellow:        var(--ax-yellow, #FFEB3B);
    --tv-muted:         var(--ax-muted, #6E6A60);
    --tv-muted-dark:    var(--ax-muted-dark, #A8A39A);
    --tv-rule:          rgba(31, 37, 48, 0.16);
    --tv-rule-on-dark:  rgba(250, 246, 238, 0.18);
    --tv-whatsapp:      var(--ax-whatsapp, #25D366);
    --tv-whatsapp-deep: #0F8C40;
    --tv-font-display:  var(--ax-font-display, 'Anton', 'Arial Narrow', sans-serif);
    --tv-font-accent:   var(--ax-font-accent, 'Fraunces', Georgia, serif);
    --tv-font-body:     var(--ax-font-body, 'Lato', system-ui, sans-serif);
    --tv-font-mono:     var(--ax-font-mono, 'JetBrains Mono', ui-monospace, monospace);

    --tv-ease:          cubic-bezier(0.22, 1, 0.36, 1);
    --tv-motion-fast:   0.16s;
}

/* Envuelve solo las secciones rediseñadas (NO el slide/breadcrumb).
   overflow-x:clip contiene sombras offset y mega-text sin romper el sticky
   de la FAQ (clip en X deja el eje Y visible). */
.tv-page { overflow-x: clip; }
.tv-page *,
.tv-page *::before,
.tv-page *::after { box-sizing: border-box; }

/* ─── Section base ──────────────────────────────────────────────────────── */
.tv-section {
    width: 100%;
    position: relative;
    background: var(--tv-white);
    color: var(--tv-ink);
    font-family: var(--tv-font-body);
    padding: clamp(48px, 8vw, 96px) 0;
}
.tv-section--paper { background: var(--tv-paper); }
.tv-section--cream { background: var(--tv-cream); color: var(--tv-ink); }
.tv-section--tight { padding: clamp(28px, 4vw, 48px) 0; }

.tv-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
}
.tv-container--narrow { max-width: 760px; }

/* ─── Eyebrow stamp (rectángulo recto — firma editorial, radius 0) ──────── */
.tv-eyebrow {
    font-family: var(--tv-font-accent);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(0.95rem, 1.1vw, 1.15rem);
    color: var(--tv-muted);
    line-height: 1.4;
    margin: 0 0 clamp(16px, 2vw, 22px);
    display: inline-flex;
    align-items: baseline;
    gap: 0.65rem;
    flex-wrap: wrap;
}
.tv-eyebrow[data-stamp]:not([data-stamp=""])::before {
    content: attr(data-stamp);
    font-family: var(--tv-font-display);
    font-style: normal;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    line-height: 1;
    border: 1px solid var(--tv-orange);
    color: var(--tv-orange);
    flex-shrink: 0;
}

/* ─── Display title Anton + <em> Fraunces (voz humana, N-04/N-05) ───────── */
.tv-title {
    font-family: var(--tv-font-display);
    font-weight: 400;
    text-transform: uppercase;
    color: var(--tv-ink);
    line-height: 0.92;
    letter-spacing: -0.005em;
    margin: 0;
}
.tv-title--xl { font-size: clamp(2.6rem, 7.5vw, 5.75rem) !important; }
.tv-title--md { font-size: clamp(1.9rem, 4.4vw, 3.3rem) !important; }
.tv-title--sm { font-size: clamp(1.55rem, 3.4vw, 2.5rem) !important; }
.tv-title--xs { font-size: clamp(1.3rem, 2.6vw, 1.95rem) !important; }
.tv-title em {
    font-family: var(--tv-font-accent);
    font-style: italic;
    font-weight: 400;
    text-transform: lowercase;          /* la <em> Fraunces va recta y minúscula */
    letter-spacing: -0.025em;
    color: var(--tv-orange);
}
.tv-title a { color: inherit; text-decoration: none; transition: color var(--tv-motion-fast) var(--tv-ease); }
.tv-title a:hover { color: var(--tv-orange); }

/* ─── Lead / prosa ──────────────────────────────────────────────────────── */
.tv-lead {
    font-family: var(--tv-font-body);
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    line-height: 1.65;
    color: var(--tv-ink);
    max-width: 66ch;
    margin: 0;
}
.tv-lead strong { font-weight: 800; }
.tv-lead a {
    color: var(--tv-ink);
    text-decoration: underline;
    text-decoration-color: var(--tv-orange);
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
    transition: color var(--tv-motion-fast) var(--tv-ease);
}
.tv-lead a:hover { color: var(--tv-orange); }

.tv-prose { max-width: 74ch; }
.tv-prose p {
    font-family: var(--tv-font-body);
    font-size: clamp(1rem, 1.25vw, 1.12rem);
    line-height: 1.7;
    color: var(--tv-ink);
    margin: 0 0 1.1em;
}
.tv-prose p:last-child { margin-bottom: 0; }
.tv-prose strong { font-weight: 800; }
.tv-prose h3 {
    font-family: var(--tv-font-display);
    font-weight: 400;
    text-transform: uppercase;
    font-size: clamp(1.3rem, 2.6vw, 1.95rem);
    line-height: 1;
    color: var(--tv-ink);
    margin: clamp(1.4rem, 2.6vw, 2rem) 0 clamp(0.7rem, 1.4vw, 1rem);
}
.tv-prose a {
    color: var(--tv-ink);
    text-decoration: underline;
    text-decoration-color: var(--tv-orange);
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
    transition: text-underline-offset var(--tv-motion-fast) var(--tv-ease),
                color var(--tv-motion-fast) var(--tv-ease);
}
.tv-prose a:hover { color: var(--tv-orange); text-underline-offset: 4px; }

/* ─── Acciones + CTA WhatsApp chunky (press-chunky · sombra sólida · radius 0) ─ */
.tv-actions {
    margin-top: clamp(28px, 4vw, 40px);
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.tv-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 30px;
    min-height: 44px;
    font-family: var(--tv-font-display);
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.05;
    text-decoration: none;
    border: 2px solid var(--tv-ink);
    border-radius: 0;
    cursor: pointer;
    transition: transform var(--tv-motion-fast) var(--tv-ease),
                box-shadow var(--tv-motion-fast) var(--tv-ease);
}
.tv-cta--whatsapp {
    background: var(--tv-whatsapp);
    color: #fff;
    box-shadow: 8px 8px 0 var(--tv-ink);
}
.tv-cta--whatsapp i { font-size: 1.3em; line-height: 1; }
.tv-cta--whatsapp:hover {
    transform: translate(-3px, -3px);
    box-shadow: 11px 11px 0 var(--tv-ink);
    color: #fff;
    text-decoration: none;
}
.tv-cta--whatsapp:active {
    transform: translate(2px, 2px);
    box-shadow: 4px 4px 0 var(--tv-ink);
}
.tv-cta:focus-visible { outline: 3px solid var(--tv-orange); outline-offset: 3px; }
/* Variante compacta — evita CTAs gigantes idénticos repetidos */
.tv-cta--sm { padding: 12px 22px; font-size: clamp(0.95rem, 1.3vw, 1.12rem); box-shadow: 6px 6px 0 var(--tv-ink); }
.tv-cta--sm:hover  { box-shadow: 8px 8px 0 var(--tv-ink); }
.tv-cta--sm:active { box-shadow: 3px 3px 0 var(--tv-ink); }

/* ─── Botón sólido naranja (CTA de navegación a otra TSG) · press vertical ─ */
.tv-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 13px 26px;
    min-height: 44px;
    font-family: var(--tv-font-body);
    font-weight: 700;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: 2px solid var(--tv-ink);
    border-radius: 0;
    cursor: pointer;
    color: var(--tv-ink);
    background: transparent;
    transition: transform var(--tv-motion-fast) var(--tv-ease),
                box-shadow var(--tv-motion-fast) var(--tv-ease),
                background var(--tv-motion-fast) var(--tv-ease),
                color var(--tv-motion-fast) var(--tv-ease);
}
.tv-btn i { transition: transform var(--tv-motion-fast) var(--tv-ease); }
.tv-btn--outline:hover { background: var(--tv-ink); color: var(--tv-white); text-decoration: none; }
.tv-btn--outline:hover i { transform: translateX(4px); }
.tv-btn--solid {
    background: var(--tv-orange);
    color: #fff;
    border-color: var(--tv-ink);
    box-shadow: 0 6px 0 var(--tv-orange-deep);
}
.tv-btn--solid:hover { transform: translateY(-3px); box-shadow: 0 9px 0 var(--tv-orange-deep); color: #fff; }
.tv-btn--solid:hover i { transform: translateX(4px); }
.tv-btn--solid:active { transform: translateY(2px); box-shadow: 0 3px 0 var(--tv-orange-deep); }
.tv-btn:focus-visible { outline: 3px solid var(--tv-orange); outline-offset: 3px; }

/* ─── Figura editorial (Galería · frame-chunky · radius 0) ─────────────── */
.tv-figure {
    margin: 0;
    background: var(--tv-white);
    border: 2px solid var(--tv-ink);
    border-top: 3px solid var(--tv-orange);
    box-shadow: 10px 10px 0 var(--tv-ink);
    line-height: 0;
}
.tv-figure img { display: block; width: 100%; height: auto; }
.tv-figure--banner { margin-top: clamp(36px, 5vw, 60px); }
.tv-figure--link { display: block; transition: transform var(--tv-motion-fast) var(--tv-ease), box-shadow var(--tv-motion-fast) var(--tv-ease); }
.tv-figure--link:hover { transform: translate(-4px, -4px); box-shadow: 14px 14px 0 var(--tv-orange); }

/* =========================================================================
   01 · Intro — Manifiesto · ManifestoClaim · Top-rule orange
   ========================================================================= */
.tv-section--intro {
    border-top: 3px solid var(--tv-orange);
    padding-top: clamp(40px, 6vw, 72px);
}
.tv-section--intro .tv-header { margin-bottom: clamp(20px, 3vw, 32px); }
.tv-section--intro .tv-title { max-width: 14ch; }

/* ─── Apertura Dossier (eyebrow + título + rule 2px ink) ─────────────────── */
.tv-header--dossier {
    margin-bottom: clamp(28px, 4vw, 44px);
    padding-bottom: clamp(16px, 2.5vw, 24px);
    border-bottom: 2px solid var(--tv-ink);
}
.tv-header--dossier .tv-prose { margin-top: clamp(14px, 2vw, 20px); }
.tv-arthead { margin-bottom: clamp(22px, 3vw, 32px); }
.tv-arthead .tv-title { margin-top: 8px; }

/* ─── Apertura RunInHeadline (eyebrow inline + em-dash + título, hairline) ─ */
.tv-runin {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: clamp(0.5rem, 1.5vw, 1rem);
    margin-bottom: clamp(22px, 3vw, 34px);
    padding-bottom: clamp(14px, 2vw, 20px);
    border-bottom: 1px solid var(--tv-rule);
}
.tv-eyebrow--inline { margin: 0; }
.tv-runin__divider {
    font-family: var(--tv-font-accent);
    font-style: italic;
    color: var(--tv-orange);
    font-size: 1.5em;
    line-height: 1;
    flex-shrink: 0;
}
@media (max-width: 600px) {
    .tv-runin { gap: 0.5rem; }
    .tv-runin__divider { display: none; }
}

/* =========================================================================
   03 · Tela Color Verde — Periódico · DropCap · Double-rule · paper
   ========================================================================= */
.tv-section--double-rule {
    border-top: 1px solid var(--tv-rule);
    border-bottom: 1px solid var(--tv-rule);
}
.tv-dropcap {
    max-width: 66ch;
    font-family: var(--tv-font-body);
    font-size: clamp(1.05rem, 1.4vw, 1.22rem);
    line-height: 1.62;
    color: var(--tv-ink);
    margin: 0 0 1.1em;
}
.tv-dropcap:last-child { margin-bottom: 0; }
.tv-dropcap__cap {
    float: left;
    font-family: var(--tv-font-accent);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(3.6rem, 8vw, 5.6rem);
    line-height: 0.8;
    color: var(--tv-orange);
    padding: 0.08em 0.12em 0 0;
    margin-top: 0.04em;
}
.tv-dropcap strong { font-weight: 800; }

/* =========================================================================
   05 · Split editorial (imagen + texto) — reusado en algodón / satinada
   ========================================================================= */
.tv-zigzag .tv-zz {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
}
.tv-zigzag .tv-zz + .tv-zz { margin-top: clamp(48px, 8vw, 100px); }
.tv-zz__text  { min-width: 0; }
.tv-zz__media { order: 2; margin: 0; }
.tv-zz--rev .tv-zz__text  { order: 2; }
.tv-zz--rev .tv-zz__media { order: 1; }
.tv-zz__text .tv-title   { margin-bottom: clamp(16px, 2vw, 22px); }
.tv-zz__text .tv-prose   { max-width: 60ch; }
.tv-zz__text .tv-actions { margin-top: clamp(22px, 3vw, 30px); }
@media (max-width: 860px) {
    .tv-zigzag .tv-zz { grid-template-columns: 1fr; gap: clamp(22px, 5vw, 32px); }
    .tv-zz__media, .tv-zz--rev .tv-zz__media,
    .tv-zz__text,  .tv-zz--rev .tv-zz__text { order: 0; }
    .tv-zigzag .tv-zz + .tv-zz { margin-top: clamp(40px, 9vw, 56px); }
}

/* =========================================================================
   06 · Tonos (Almanaque · NumberProtagonist · Index-tab) — grid de cards
   El verde entra como DATO: banda --tone real en la cabeza de cada card.
   ========================================================================= */
.tv-numhead {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(0.75rem, 2vw, 1.25rem);
    align-items: end;
    margin-bottom: clamp(20px, 3vw, 32px);
    padding-bottom: clamp(18px, 2.5vw, 26px);
    border-bottom: 1px solid var(--tv-rule);
}
@media (min-width: 768px) {
    .tv-numhead { grid-template-columns: minmax(0, auto) minmax(0, 1fr); gap: clamp(1.75rem, 4vw, 3.5rem); }
}
.tv-numhead__num {
    font-family: var(--tv-font-display);
    font-size: clamp(4.25rem, 13vw, 8.5rem);
    line-height: 0.8;
    letter-spacing: -0.04em;
    color: var(--tv-orange);
    font-variant-numeric: tabular-nums;
    display: inline-flex;
    align-items: baseline;
    gap: 0.35em;
}
.tv-numhead__num small {
    font-family: var(--tv-font-accent);
    font-style: italic;
    font-size: 0.2em;
    letter-spacing: 0;
    text-transform: lowercase;
    color: var(--tv-muted);
}
.tv-numhead__body { min-width: 0; }
.tv-numhead__body .tv-eyebrow { margin-bottom: clamp(10px, 1.4vw, 14px); }
.tv-numhead__body .tv-title { line-height: 0.95; }

/* Index-tab — pestaña de archivador (mono) montada sobre el rule superior */
.tv-section--tones { border-top: 2px solid var(--tv-ink); }
.tv-section--tones .tv-tab {
    position: absolute;
    top: 0;
    left: clamp(20px, 4vw, 48px);
    transform: translateY(-100%);
    background: var(--tv-ink);
    color: var(--tv-paper);
    font-family: var(--tv-font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
}

.tv-tones-intro { margin: clamp(8px, 1.5vw, 14px) 0 clamp(36px, 5vw, 56px); }

.tv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 2.4vw, 32px);
}
@media (max-width: 900px) { .tv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .tv-grid { grid-template-columns: 1fr; } }

/* ─── Card de tono · lift-orange (sombra ink reposo → orange al hover) ───── */
.tv-card {
    display: flex;
    flex-direction: column;
    background: var(--tv-white);
    color: var(--tv-ink);
    border: 1px solid var(--tv-rule);
    border-radius: 0;
    box-shadow: 4px 4px 0 var(--tv-ink);
    overflow: hidden;
    transition: transform var(--tv-motion-fast) var(--tv-ease),
                box-shadow var(--tv-motion-fast) var(--tv-ease);
}
.tv-card:hover,
.tv-card:focus-within {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0 var(--tv-orange);
}
/* Banda de color real del tono (verde = dato de producto, --tone inline) */
.tv-card__swatch {
    display: block;
    height: 12px;
    flex-shrink: 0;
    background: var(--tone, var(--tv-orange));
}
/* Card de USO (chroma, vestidos): firma editorial orange en vez de tono */
.tv-card--use { border-top: 3px solid var(--tv-orange); }
.tv-card__media {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    line-height: 0;
    border-bottom: 1px solid var(--tv-rule);
    background: var(--tv-cream);
}
.tv-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s var(--tv-ease);
}
.tv-card:hover .tv-card__media img,
.tv-card:focus-within .tv-card__media img { transform: scale(1.045); }
.tv-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: clamp(18px, 2vw, 24px);
}
.tv-card__title {
    font-family: var(--tv-font-display);
    font-weight: 400;
    text-transform: uppercase;
    font-size: clamp(1.4rem, 2.4vw, 1.85rem);
    line-height: 1;
    letter-spacing: 0.005em;
    color: var(--tv-ink);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
/* Punto de color del tono junto al título (refuerza el dato, cuadrado) */
.tv-card__dot {
    width: 0.7em;
    height: 0.7em;
    flex-shrink: 0;
    background: var(--tone, var(--tv-orange));
    border: 1px solid var(--tv-ink);
}
.tv-card__desc {
    font-family: var(--tv-font-body);
    font-size: clamp(0.92rem, 1.05vw, 1rem);
    line-height: 1.55;
    color: var(--tv-muted);
    margin: 0;
}
.tv-card__desc strong { color: var(--tv-ink); font-weight: 700; }
.tv-card__desc a {
    color: var(--tv-ink);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--tv-orange);
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
    transition: color var(--tv-motion-fast) var(--tv-ease);
}
.tv-card__desc a:hover { color: var(--tv-orange); }

/* ─── Chips de telas sugeridas (preservan los enlaces internos SEO) ─────── */
.tv-tags {
    margin: auto 0 0;
    padding: clamp(12px, 1.8vw, 16px) 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    border-top: 1px dashed var(--tv-rule);
}
.tv-tags__label {
    flex-basis: 100%;
    font-family: var(--tv-font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--tv-muted);
    margin-bottom: 2px;
}
.tv-chip {
    display: inline-flex;
    align-items: center;
    font-family: var(--tv-font-body);
    font-weight: 700;
    font-size: 0.74rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--tv-ink);
    background: var(--tv-cream);
    border: 1px solid var(--tv-ink);
    border-radius: 0;
    padding: 6px 11px;
    line-height: 1;
    transition: background var(--tv-motion-fast) var(--tv-ease),
                color var(--tv-motion-fast) var(--tv-ease);
}
.tv-chip:hover { background: var(--tv-ink); color: var(--tv-paper); text-decoration: none; }

/* =========================================================================
   07 · Precio — Fanzine · MegaTextBg + burst · INK (puntuación dramática)
   ========================================================================= */
.tv-section--ink {
    background: var(--tv-ink);
    color: var(--tv-paper);
    overflow: hidden;
}
.tv-section--ink::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(250, 246, 238, 0.045) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(250, 246, 238, 0.045) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}
.tv-section--ink > .tv-container { position: relative; z-index: 1; }
.tv-section--ink .tv-title { color: var(--tv-paper); }
.tv-section--ink .tv-eyebrow { color: rgba(250, 246, 238, 0.6); }
.tv-section--ink .tv-lead { color: rgba(250, 246, 238, 0.82); }
.tv-section--ink .tv-lead strong { color: var(--tv-paper); }
.tv-section--ink .tv-prose p { color: rgba(250, 246, 238, 0.82); }
.tv-section--ink .tv-prose strong { color: var(--tv-paper); }
.tv-section--ink .tv-prose a { color: var(--tv-paper); }
.tv-section--ink .tv-prose a:hover { color: var(--tv-orange); }
.tv-section--ink .tv-figure { border-color: var(--tv-orange); }
/* CTA WhatsApp: el borde ink desaparece sobre ink → reancla con paper + sombra orange */
.tv-section--ink .tv-cta--whatsapp {
    border-color: var(--tv-paper);
    box-shadow: 8px 8px 0 var(--tv-orange);
}
.tv-section--ink .tv-cta--whatsapp:hover  { transform: translate(-3px, -3px); box-shadow: 11px 11px 0 var(--tv-orange); }
.tv-section--ink .tv-cta--whatsapp:active { transform: translate(2px, 2px); box-shadow: 4px 4px 0 var(--tv-orange); }

.tv-megahead {
    position: relative;
    isolation: isolate;
    padding-top: clamp(24px, 6vw, 72px);
    margin-bottom: clamp(20px, 3vw, 32px);
}
.tv-megahead__bg {
    position: absolute;
    top: 0;
    left: 0;
    font-family: var(--tv-font-display);
    font-size: clamp(4.5rem, 18vw, 13rem);
    line-height: 0.78;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: var(--tv-rule-on-dark);
    white-space: nowrap;
    pointer-events: none;
    z-index: -1;
}
.tv-megahead__fg { position: relative; max-width: 36ch; }

/* Burst amarillo — única señal yellow de la página (Fanzine ≥1 burst) */
.tv-burst {
    position: absolute;
    top: clamp(-6px, 1vw, 10px);
    right: 0;
    z-index: 2;
    width: clamp(86px, 11vw, 116px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    text-align: center;
    background: var(--tv-yellow);
    color: var(--tv-ink);
    font-family: var(--tv-font-display);
    font-size: clamp(12px, 1.5vw, 16px);
    text-transform: uppercase;
    line-height: 1.05;
    letter-spacing: 0.02em;
    border: 2px solid var(--tv-ink);
    border-radius: 9999px;            /* pill: única excepción al radius 0 */
    transform: rotate(-8deg);
    padding: 12px;
    pointer-events: none;
}
@media (max-width: 860px) { .tv-burst { position: static; transform: rotate(-6deg); margin: 0 0 18px; } }

/* =========================================================================
   08 · Tipos chroma (Técnico · LabelLateral · Side-rule · cream) — 3 cards uso
   ========================================================================= */
.tv-section--types .tv-container { border-left: 3px solid var(--tv-orange); }
@media (max-width: 640px) {
    .tv-section--types .tv-container {
        border-left: 0;
        border-top: 3px solid var(--tv-orange);
        padding-top: clamp(22px, 5vw, 30px);
    }
}
.tv-lathead {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(1rem, 3vw, 2.5rem);
    align-items: start;
    margin-bottom: clamp(32px, 5vw, 52px);
}
.tv-lathead__rail {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    display: flex;
    align-items: center;
    align-self: stretch;
}
.tv-lathead__rail-mono {
    font-family: var(--tv-font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--tv-muted);
    white-space: nowrap;
}
.tv-lathead__body { min-width: 0; }
.tv-lathead__note {
    font-family: var(--tv-font-accent);
    font-style: italic;
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    line-height: 1.5;
    color: var(--tv-muted);
    margin: clamp(12px, 1.6vw, 16px) 0 0;
    max-width: 60ch;
}
@media (max-width: 640px) {
    .tv-lathead { grid-template-columns: 1fr; gap: 0.5rem; }
    .tv-lathead__rail { writing-mode: horizontal-tb; transform: none; align-self: start; }
}

/* =========================================================================
   09 · Vestidos / Estampar — Periódico · Brick · paper · dúo de features
   ========================================================================= */
.tv-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 4vw, 56px);
}
@media (max-width: 768px) { .tv-duo { grid-template-columns: 1fr; gap: clamp(34px, 7vw, 46px); } }
.tv-feat { display: flex; flex-direction: column; }
.tv-feat .tv-figure { margin: 0 0 clamp(18px, 2.5vw, 26px); }
.tv-feat .tv-title { margin-bottom: clamp(12px, 1.6vw, 16px); }

/* =========================================================================
   11 · FAQ · Dossier · Top-rule orange · 2 columnas + acordeón <details>
   El contenido siempre está en el DOM (SEO intacto). Acordeón nativo, sin JS.
   ========================================================================= */
.tv-section--faq { border-top: 3px solid var(--tv-orange); }
.tv-faqsec__grid { display: grid; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
@media (min-width: 940px) {
    .tv-faqsec__grid { grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr); }
    .tv-faqsec__aside { position: sticky; top: 130px; }
}
.tv-faqsec__note {
    font-family: var(--tv-font-accent);
    font-style: italic;
    color: var(--tv-muted);
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    line-height: 1.5;
    max-width: 42ch;
    margin: clamp(1.25rem, 2.5vw, 1.75rem) 0;
}
.tv-faq { display: flex; flex-direction: column; gap: 12px; }
.tv-faq__item {
    background: var(--tv-white);
    border: 1.5px solid var(--tv-rule);
    transition: border-color var(--tv-motion-fast) var(--tv-ease),
                box-shadow var(--tv-motion-fast) var(--tv-ease);
}
.tv-faq__item:hover { border-color: var(--tv-ink); }
.tv-faq__item[open] {
    border-color: var(--tv-ink);
    border-left: 4px solid var(--tv-orange);
    box-shadow: 5px 5px 0 var(--tv-ink);
}
.tv-faq__q {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: clamp(15px, 2vw, 19px) clamp(16px, 2.2vw, 22px);
    font-family: var(--tv-font-body);
    font-weight: 700;
    font-size: clamp(0.98rem, 1.4vw, 1.12rem);
    line-height: 1.35;
    color: var(--tv-ink);
    transition: color var(--tv-motion-fast) var(--tv-ease);
}
.tv-faq__q::-webkit-details-marker { display: none; }
.tv-faq__q::after {
    content: '+';
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    font-family: var(--tv-font-display);
    font-size: 1.35rem;
    line-height: 1;
    background: var(--tv-cream);
    color: var(--tv-orange);
    border: 1.5px solid var(--tv-ink);
    transition: transform var(--tv-motion-fast) var(--tv-ease),
                background var(--tv-motion-fast) var(--tv-ease),
                color var(--tv-motion-fast) var(--tv-ease);
}
.tv-faq__item[open] .tv-faq__q { color: var(--tv-orange); }
.tv-faq__item[open] .tv-faq__q::after {
    transform: rotate(45deg);
    background: var(--tv-orange);
    color: var(--tv-paper);
    border-color: var(--tv-orange);
}
.tv-faq__a {
    font-family: var(--tv-font-body);
    font-size: clamp(0.95rem, 1.1vw, 1.0625rem);
    line-height: 1.65;
    color: var(--tv-muted);
    max-width: 70ch;
    padding: 0 clamp(16px, 2.2vw, 22px) clamp(16px, 2.2vw, 20px);
    margin: 0;
}
.tv-faq__a a {
    color: var(--tv-ink);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--tv-orange);
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}

/* =========================================================================
   Reveal sutil al entrar (decorativo · progressive enhancement).
   Solo navegadores con scroll-driven animations; el resto ve el contenido
   estático (sin fallback JS, como recomienda la guía para efectos decorativos).
   ========================================================================= */
@media (prefers-reduced-motion: no-preference) {
    @supports ((animation-timeline: view()) and (animation-range: entry)) {
        @keyframes tv-rise { from { opacity: 0; transform: translateY(26px); } }
        .tv-rise {
            animation: tv-rise 0.8s var(--tv-ease) backwards;
            animation-timeline: view();
            animation-range: entry 0% cover 30%;
        }
    }
}

/* =========================================================================
   Accesibilidad — focus visible global + motion safe
   ========================================================================= */
.tv-page :focus-visible {
    outline: 3px solid var(--tv-orange);
    outline-offset: 3px;
    border-radius: 0;
}
@media (prefers-reduced-motion: reduce) {
    .tv-page *,
    .tv-page *::before,
    .tv-page *::after {
        transition-duration: 0ms !important;
        animation-duration: 0ms !important;
    }
    .tv-cta:hover, .tv-cta:active,
    .tv-card:hover, .tv-card:focus-within,
    .tv-figure--link:hover,
    .tv-btn--solid:hover, .tv-btn--solid:active { transform: none; }
    .tv-card:hover .tv-card__media img { transform: none; }
}

@media (max-width: 575px) {
    .tv-cta--whatsapp { box-shadow: 6px 6px 0 var(--tv-ink); }
    .tv-cta--whatsapp:hover { box-shadow: 8px 8px 0 var(--tv-ink); }
    .tv-figure { box-shadow: 6px 6px 0 var(--tv-ink); }
    .tv-card { box-shadow: 3px 3px 0 var(--tv-ink); }
    .tv-card:hover, .tv-card:focus-within { box-shadow: 6px 6px 0 var(--tv-orange); }
    .tv-section--ink .tv-cta--whatsapp { box-shadow: 6px 6px 0 var(--tv-orange); }
    .tv-section--ink .tv-cta--whatsapp:hover { box-shadow: 8px 8px 0 var(--tv-orange); }
}

/* =========================================================================
   02 · Billboards promocionales (Fieltro · Bandera) — @showcase · split
   visual · Full-frame chunky + Bleed-edge · lift-orange. Mismo patrón que
   tela-negra (tn-billboard). Stretched-link: toda la tarjeta clickea.
   ========================================================================= */
.tv-billboard {
    position: relative;               /* ancla del stretched-link del CTA */
    isolation: isolate;               /* el megaclip (z -1) queda sobre el fondo, bajo el contenido */
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    background: var(--tv-white);
    border: 2px solid var(--tv-ink);
    box-shadow: 10px 10px 0 var(--tv-ink);
    transition: transform var(--tv-motion-fast) var(--tv-ease),
                box-shadow var(--tv-motion-fast) var(--tv-ease);
}
.tv-billboard:hover,
.tv-billboard:focus-within {
    transform: translate(-4px, -4px);
    box-shadow: 14px 14px 0 var(--tv-orange);
}
.tv-billboard__media {
    position: relative;
    margin: 0;
    overflow: hidden;                 /* recorta el zoom de la foto */
    border-right: 3px solid var(--tv-orange);
    min-height: 280px;
    line-height: 0;
}
.tv-billboard__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.45s var(--tv-ease);
}
.tv-billboard:hover .tv-billboard__media img { transform: scale(1.05); }

/* Burst — calcomanía fanzine sobresaliendo del marco superior derecho */
.tv-billboard__burst {
    position: absolute;
    top: -18px;
    right: -14px;
    z-index: 2;
    width: clamp(88px, 12vw, 122px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    text-align: center;
    background: var(--tv-yellow);
    color: var(--tv-ink);
    font-family: var(--tv-font-display);
    font-size: clamp(13px, 1.6vw, 17px);
    text-transform: uppercase;
    line-height: 1.05;
    letter-spacing: 0.02em;
    border: 2px solid var(--tv-ink);
    border-radius: 9999px;            /* pill: única excepción al radius 0 */
    transform: rotate(8deg);
    padding: 12px;
    pointer-events: none;
}
/* Burst morado — slide Bandera: mismo rincón, giro opuesto */
.tv-billboard__burst--purple {
    background: var(--tv-purple);
    color: var(--tv-paper);
    border-color: var(--tv-paper);
    transform: rotate(-8deg);
}

.tv-billboard__body {
    /* SIN position:relative — sería containing block del ::after del CTA y
       limitaría el stretched-link a esta mitad (debe cubrir toda la tarjeta). */
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(26px, 4vw, 52px) clamp(22px, 4vw, 56px);
}
/* Mega fantasma recortado AL MARCO: la capa megaclip cubre la tarjeta con
   overflow hidden (el burst, fuera de ella, sigue sobresaliendo). */
.tv-billboard__megaclip {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}
.tv-billboard__mega {
    position: absolute;
    right: -0.04em;
    bottom: -0.08em;                  /* sangra bajo el borde; el clip lo corta limpio */
    font-family: var(--tv-font-display);
    font-size: clamp(4rem, 11vw, 8.5rem);
    line-height: 0.75;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: var(--tv-cream);           /* fantasma tenue sobre blanco */
    white-space: nowrap;
}
.tv-billboard__text {
    font-family: var(--tv-font-body);
    font-size: clamp(1rem, 1.3vw, 1.18rem);
    line-height: 1.6;
    color: var(--tv-muted);
    max-width: 52ch;
    margin: clamp(12px, 1.6vw, 18px) 0 clamp(22px, 3vw, 30px);
}
.tv-billboard__text strong { font-weight: 800; color: var(--tv-ink); }

.tv-billboard__cta { font-size: clamp(0.95rem, 1.2vw, 1.05rem); padding: 15px 32px; }
/* Stretched-link: el ::after cubre la tarjeta. El CTA no puede usar transform —
   un transform lo volvería containing block, colapsaría el ::after al botón y
   provocaría un bucle hover/un-hover (cursor parpadeando). El selector lleva
   .tv-billboard delante para GANARLE a .tv-btn--solid:hover/:active. */
.tv-billboard__cta::after { content: ""; position: absolute; inset: 0; cursor: pointer; }
.tv-billboard .tv-billboard__cta:hover,
.tv-billboard .tv-billboard__cta:active { transform: none; }
.tv-billboard:hover .tv-billboard__cta { box-shadow: 0 9px 0 var(--tv-orange-deep); }
.tv-billboard:hover .tv-billboard__cta i { transform: translateX(4px); }
.tv-billboard__cta:active { box-shadow: 0 3px 0 var(--tv-orange-deep); }

/* ─── Variante REV — imagen a la derecha (slide Bandera; espejo del Fieltro, N-09) ─ */
.tv-billboard--rev { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
.tv-billboard--rev .tv-billboard__media {
    order: 2;
    border-right: 0;
    border-left: 3px solid var(--tv-orange);
}
.tv-billboard--rev .tv-billboard__body { order: 1; }
.tv-billboard--rev .tv-billboard__mega { right: auto; left: -0.04em; }

/* ─── Variante INK — Bandera: tarjeta oscura, sombra naranja desde reposo ──── */
.tv-billboard--ink {
    background: var(--tv-ink);
    border-color: var(--tv-ink);
    box-shadow: 10px 10px 0 var(--tv-orange);
}
.tv-billboard--ink:hover,
.tv-billboard--ink:focus-within { box-shadow: 14px 14px 0 var(--tv-orange); }
.tv-billboard--ink .tv-title { color: var(--tv-paper); }
.tv-billboard--ink .tv-eyebrow { color: var(--tv-muted-dark); }
.tv-billboard--ink .tv-eyebrow[data-stamp]:not([data-stamp=""])::before {
    background: var(--tv-orange);          /* stamp relleno: señal sobre ink */
    color: var(--tv-white);
}
.tv-billboard--ink .tv-billboard__text { color: var(--tv-muted-dark); }
.tv-billboard--ink .tv-billboard__text strong { color: var(--tv-paper); }
.tv-billboard--ink .tv-billboard__mega { color: var(--tv-rule-on-dark); }
.tv-billboard--ink .tv-billboard__media img { object-position: center 22%; }  /* la bandera, mitad superior de la foto */
.tv-billboard--ink .tv-btn--solid { border-color: var(--tv-paper); }  /* el borde ink se pierde sobre ink */

@media (max-width: 820px) {
    .tv-billboard, .tv-billboard--rev { grid-template-columns: 1fr; }
    .tv-billboard__media,
    .tv-billboard--rev .tv-billboard__media {
        order: 0;                          /* imagen siempre arriba en columna */
        aspect-ratio: 16 / 9;
        min-height: 0;
        border-right: 0;
        border-left: 0;
        border-bottom: 3px solid var(--tv-orange);
    }
    .tv-billboard--rev .tv-billboard__body { order: 1; }
    .tv-billboard--ink .tv-billboard__media img { object-position: center 20%; }
    .tv-billboard__burst { top: -14px; right: 10px; }   /* dentro del card: sin overflow horizontal */
    .tv-billboard__mega { font-size: clamp(3.2rem, 16vw, 5rem); }
    .tv-billboard__cta { width: 100%; justify-content: center; }
}
@media (max-width: 575px) {
    .tv-billboard { box-shadow: 6px 6px 0 var(--tv-ink); }
    .tv-billboard:hover, .tv-billboard:focus-within { box-shadow: 9px 9px 0 var(--tv-orange); }
    .tv-billboard--ink { box-shadow: 6px 6px 0 var(--tv-orange); }
}

/* =========================================================================
   02 · Carousel promocional (.tv-promocar) — infinito + autoplay (JS en
   tela-verde.js). El padding de cada slide da aire al burst (arriba/derecha)
   y a la sombra+lift del billboard para que el overflow del viewport no
   recorte nada. Dots cuadrados (radius 0) y flechas chunky ink-flood.
   ========================================================================= */
.tv-promocar { position: relative; }
.tv-promocar__viewport { overflow: hidden; touch-action: pan-y; }
.tv-promocar__track {
    display: flex;
    transition: transform 0.55s var(--tv-ease);
    will-change: transform;
}
.tv-promocar__slide {
    flex: 0 0 100%;
    min-width: 0;
    padding: 24px 18px 18px 6px;
    display: flex;
    align-items: stretch;
}
.tv-promocar__slide .tv-billboard { width: 100%; }

.tv-promocar__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 6px;
}
.tv-promocar__arrow {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: var(--tv-white);
    color: var(--tv-ink);
    border: 2px solid var(--tv-ink);
    border-radius: 0;
    box-shadow: 3px 3px 0 var(--tv-ink);
    cursor: pointer;
    font-size: 0.95rem;
    padding: 0;
    transition: background var(--tv-motion-fast) var(--tv-ease),
                color var(--tv-motion-fast) var(--tv-ease),
                transform var(--tv-motion-fast) var(--tv-ease),
                box-shadow var(--tv-motion-fast) var(--tv-ease);
}
.tv-promocar__arrow:hover { background: var(--tv-ink); color: var(--tv-white); }
.tv-promocar__arrow:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--tv-ink); }
.tv-promocar__dots { display: flex; gap: 10px; }
.tv-promocar__dot {
    width: 13px;
    height: 13px;
    padding: 0;
    background: var(--tv-white);
    border: 2px solid var(--tv-ink);
    border-radius: 0;                      /* cuadrado: firma editorial */
    cursor: pointer;
    transition: background var(--tv-motion-fast) var(--tv-ease),
                transform var(--tv-motion-fast) var(--tv-ease);
}
.tv-promocar__dot:hover { transform: scale(1.2); }
.tv-promocar__dot[aria-current="true"] { background: var(--tv-orange); }

/* Motion safe del bloque promocional */
@media (prefers-reduced-motion: reduce) {
    .tv-billboard:hover, .tv-billboard:focus-within,
    .tv-billboard:hover .tv-billboard__media img,
    .tv-billboard:hover .tv-billboard__cta i { transform: none; }
    .tv-promocar__dot:hover { transform: none; }
}

/* =========================================================================
   05b · Telas verdes más pedidas — Dossier · Top-rule · cuadrícula (escritorio)
   que se vuelve slider horizontal con scroll-snap en móvil (swipe, sin JS).
   Cada card es navegable a la TSG de esa tela; el verde es el DATO (--tone).
   ========================================================================= */
.tv-section--top-border { border-top: 3px solid var(--tv-orange); }

.tv-popular {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 1.8vw, 22px);
}
@media (max-width: 1024px) { .tv-popular { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .tv-popular { grid-template-columns: repeat(2, 1fr); } }

/* Móvil ≤560px: la cuadrícula pasa a slider horizontal (scroll-snap, swipe) */
@media (max-width: 560px) {
    .tv-popular {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--tv-orange) transparent;
        margin: 0 calc(-1 * clamp(20px, 4vw, 48px));   /* sangra al borde del container */
        padding: 4px clamp(20px, 4vw, 48px) 14px;
        gap: 14px;
    }
    .tv-popular > .tv-pop {
        flex: 0 0 76%;                                  /* 1 card + peek de la siguiente */
        scroll-snap-align: start;
    }
}
.tv-popular::-webkit-scrollbar { height: 8px; }
.tv-popular::-webkit-scrollbar-thumb { background: var(--tv-orange); }

.tv-pop {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--tv-white);
    color: var(--tv-ink);
    border: 1px solid var(--tv-rule);
    box-shadow: 4px 4px 0 var(--tv-ink);
    text-decoration: none;
    overflow: hidden;
    transition: transform var(--tv-motion-fast) var(--tv-ease),
                box-shadow var(--tv-motion-fast) var(--tv-ease);
}
.tv-pop:hover, .tv-pop:focus-visible {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0 var(--tv-orange);
    text-decoration: none;
    color: var(--tv-ink);
}
/* Cara: imagen de la tela (placeholder 800x600 por ahora). El --tone queda
   de fondo como tinte verde mientras la imagen carga (lazyload). */
.tv-pop__face {
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--tone, var(--tv-cream));
    border-bottom: 3px solid var(--tv-ink);
    overflow: hidden;
    line-height: 0;
}
.tv-pop__face img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s var(--tv-ease);
}
.tv-pop:hover .tv-pop__face img,
.tv-pop:focus-visible .tv-pop__face img { transform: scale(1.05); }
.tv-pop__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: clamp(14px, 1.6vw, 18px);
}
.tv-pop__name {
    font-family: var(--tv-font-display);
    font-weight: 400;
    text-transform: uppercase;
    font-size: clamp(1.15rem, 1.8vw, 1.5rem);
    line-height: 1;
    color: var(--tv-ink);
}
.tv-pop__cue {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--tv-font-body);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--tv-orange);
}
.tv-pop__cue i { transition: transform var(--tv-motion-fast) var(--tv-ease); }
.tv-pop:hover .tv-pop__cue i,
.tv-pop:focus-visible .tv-pop__cue i { transform: translateX(4px); }

/* Hint de swipe — solo visible cuando es slider (móvil) */
.tv-popular-hint {
    display: none;
    font-family: var(--tv-font-mono);
    font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--tv-muted);
    margin: 14px 0 0;
}
.tv-popular-hint i { color: var(--tv-orange); }
@media (max-width: 560px) { .tv-popular-hint { display: inline-flex; align-items: center; gap: 8px; } }

@media (max-width: 575px) {
    .tv-pop { box-shadow: 3px 3px 0 var(--tv-ink); }
    .tv-pop:hover, .tv-pop:focus-visible { box-shadow: 6px 6px 0 var(--tv-orange); }
}
@media (prefers-reduced-motion: reduce) {
    .tv-pop:hover, .tv-pop:focus-visible { transform: none; }
    .tv-pop:hover .tv-pop__cue i, .tv-pop:focus-visible .tv-pop__cue i { transform: none; }
    .tv-pop:hover .tv-pop__face img, .tv-pop:focus-visible .tv-pop__face img { transform: none; }
}
