/* Modalità Regia Discovery: canvas 16:9 libero + Discovery verticale 9:16. */
.tv-hybrid-layout,
.tv-hybrid-portrait {
  display: contents;
}
.tv-hybrid-empty,
.tv-hybrid-ticker {
  display: none;
}

.tv-root.tv-hybrid .tv-frame {
  width: min(1600px, 92vw, calc((100vh - 32px) * 16 / 9));
  aspect-ratio: 16 / 9;
  max-height: 100vh;
  padding: clamp(10px, 1.5vw, 22px);
}
.tv-root.tv-hybrid .tv-hybrid-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(230px, 1fr);
  grid-template-rows: minmax(0, 1fr) auto;
  gap: clamp(8px, 1vw, 14px);
  width: 100%;
  height: 100%;
  min-height: 0;
}
.tv-root.tv-hybrid .tv-hybrid-empty {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 0;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(232, 194, 106, .18);
  border-radius: var(--tv-rad);
  background: #050509;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.025);
}
.tv-root.tv-hybrid .tv-hybrid-empty::before {
  content: '';
  position: absolute;
  inset: 10%;
  border: 1px dashed rgba(232, 194, 106, .12);
  border-radius: 12px;
}
.tv-hybrid-empty-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  max-width: 30ch;
  padding: 18px;
  color: rgba(246, 239, 226, .38);
  text-align: center;
}
.tv-hybrid-empty-copy strong {
  color: rgba(232, 194, 106, .62);
  font-size: clamp(.7rem, 1.2vw, 1rem);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.tv-hybrid-empty-copy span {
  font-size: clamp(.65rem, 1vw, .82rem);
  line-height: 1.4;
}
.tv-root.tv-hybrid .tv-hybrid-portrait {
  display: flex;
  min-width: 0;
  min-height: 0;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--tv-rad);
  background: #050509;
}
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-stage {
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 9 / 16;
  border-radius: var(--tv-rad);
}
.tv-root.tv-hybrid .tv-hybrid-ticker {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.8fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(10px, 1.5vw, 24px);
  min-height: clamp(48px, 5vw, 70px);
  padding: 8px clamp(12px, 1.6vw, 24px);
  border: 1px solid rgba(232, 194, 106, .22);
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(26, 22, 31, .98), rgba(17, 16, 23, .98));
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}
.tv-hybrid-ticker-kicker,
.tv-hybrid-ticker-meta,
.tv-hybrid-ticker-prompt {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tv-hybrid-ticker-kicker {
  color: var(--tv-gold);
  font-size: clamp(.58rem, .85vw, .74rem);
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.tv-hybrid-ticker-title {
  min-width: 0;
  overflow: hidden;
  color: var(--tv-cream);
  font-family: Georgia, serif;
  font-size: clamp(.95rem, 1.55vw, 1.38rem);
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tv-hybrid-ticker-meta,
.tv-hybrid-ticker-prompt {
  color: rgba(246, 239, 226, .72);
  font-size: clamp(.62rem, .9vw, .78rem);
  font-weight: 700;
}
.tv-hybrid-ticker-prompt {
  color: var(--tv-gold);
  text-align: right;
}

@media (max-width: 820px) {
  .tv-root.tv-hybrid .tv-frame {
    width: 100%;
    height: auto;
    min-height: 100vh;
    aspect-ratio: auto;
    padding: 10px;
  }
  .tv-root.tv-hybrid .tv-hybrid-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    height: auto;
  }
  .tv-root.tv-hybrid .tv-hybrid-empty {
    min-height: min(56vw, 360px);
    aspect-ratio: 16 / 9;
  }
  .tv-root.tv-hybrid .tv-hybrid-portrait {
    min-height: min(145vw, 720px);
  }
  .tv-root.tv-hybrid .tv-hybrid-portrait .tv-stage {
    width: min(100%, calc(100vh * 9 / 16));
    height: auto;
    max-height: none;
  }
  .tv-root.tv-hybrid .tv-hybrid-ticker {
    grid-template-columns: 1fr;
    gap: 5px;
    min-height: 0;
  }
  .tv-hybrid-ticker-prompt { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  .tv-hybrid-empty::before { display: none; }
}

/* Regia Discovery v2: gerarchia leggibile e QR separato dai contenuti. */
.tv-root.tv-hybrid .tv-hybrid-layout {
  grid-template-columns: minmax(0, 1fr) minmax(250px, 31%);
  grid-template-rows: minmax(0, 1fr) clamp(88px, 9.5vw, 124px);
  gap: clamp(10px, 1.2vw, 18px);
}

.tv-root.tv-hybrid .tv-hybrid-portrait {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-stage {
  container-type: inline-size;
  flex: 0 0 auto;
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 9 / 16;
}

/* La card verticale mostra solo il messaggio principale. I dettagli lunghi
   vivono nella fascia 16:9 inferiore, dove hanno spazio reale. */
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-content {
  justify-content: flex-start;
  gap: 3cqw;
  padding: 4cqw 4cqw 12cqw;
  overflow: hidden;
}
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-topbar {
  min-width: 0;
}
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-type,
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-kicker {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: clamp(.52rem, 2.3cqw, .78rem);
  letter-spacing: .1em;
}
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-type {
  padding: 1.6cqw 2.6cqw;
}
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-hero {
  width: 100%;
  max-width: 100%;
  max-height: calc(100% - 12cqw);
  margin-top: auto;
  overflow: hidden;
}
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-title {
  display: -webkit-box;
  max-width: 100%;
  max-height: 3em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: clamp(1rem, 8cqw, 2rem);
  line-height: .98;
}
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-region {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: clamp(.58rem, 2.7cqw, .9rem);
}
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-page-label,
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-card-label {
  font-size: clamp(.5rem, 2cqw, .7rem);
  letter-spacing: .1em;
}
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-subtitle {
  display: -webkit-box;
  max-width: 100%;
  max-height: 5.2em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  font-size: clamp(.66rem, 3.2cqw, 1rem);
  line-height: 1.28;
}
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-place-context {
  max-width: 100%;
  margin: 2cqw 0 2.5cqw;
  padding: 2cqw 2.5cqw;
}
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-place-context strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: clamp(.72rem, 3.6cqw, 1.05rem);
}
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-place-context p,
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-card,
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-outro {
  display: none;
}
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-page-ind {
  margin-top: 2cqw;
  padding: 1.4cqw 2.5cqw;
  font-size: clamp(.52rem, 2.2cqw, .7rem);
}

/* Le altre tipologie mantengono la stessa griglia senza comprimersi. */
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-postcard-title,
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-tradition-title,
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-route-title {
  font-size: clamp(1rem, 7.5cqw, 1.9rem);
  line-height: 1;
}
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-postcard-line,
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-tradition-sub,
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-stop-desc {
  display: -webkit-box;
  max-height: 4em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: clamp(.64rem, 3cqw, .92rem);
  line-height: 1.3;
}
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-postcard-copy,
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-tradition,
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-route {
  padding: 4cqw;
}
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-tradition {
  display: block;
  overflow: hidden;
}
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-tradition-right,
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-tradition-facts {
  display: none;
}

/* Fascia orizzontale: titolo e testo hanno colonne proprie; il QR non copre
   più la slide e resta leggibile anche durante il cambio di contenuto. */
.tv-root.tv-hybrid .tv-hybrid-ticker {
  grid-template-columns: minmax(92px, .75fr) minmax(140px, 1.15fr) minmax(170px, 1.55fr) auto;
  grid-template-areas: "kicker main detail side";
  min-height: 0;
  padding: 10px clamp(12px, 1.6vw, 22px);
  gap: clamp(8px, 1.2vw, 18px);
}
.tv-root.tv-hybrid .tv-hybrid-ticker-kicker { grid-area: kicker; }
.tv-root.tv-hybrid .tv-hybrid-ticker-main {
  grid-area: main;
  min-width: 0;
  display: grid;
  gap: 4px;
}
.tv-root.tv-hybrid .tv-hybrid-ticker-detail {
  grid-area: detail;
  min-width: 0;
}
.tv-root.tv-hybrid .tv-hybrid-ticker-title,
.tv-root.tv-hybrid .tv-hybrid-ticker-meta,
.tv-root.tv-hybrid .tv-hybrid-ticker-description,
.tv-root.tv-hybrid .tv-hybrid-ticker-prompt {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.tv-root.tv-hybrid .tv-hybrid-ticker-title {
  -webkit-line-clamp: 2;
  white-space: normal;
  font-size: clamp(.86rem, 1.35vw, 1.2rem);
  line-height: 1.08;
}
.tv-root.tv-hybrid .tv-hybrid-ticker-meta {
  -webkit-line-clamp: 1;
  white-space: normal;
  font-size: clamp(.62rem, .85vw, .78rem);
}
.tv-root.tv-hybrid .tv-hybrid-ticker-description {
  -webkit-line-clamp: 3;
  color: rgba(246,239,226,.78);
  font-size: clamp(.62rem, .88vw, .78rem);
  line-height: 1.25;
}
.tv-root.tv-hybrid .tv-hybrid-ticker-side {
  grid-area: side;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tv-root.tv-hybrid .tv-hybrid-ticker-prompt {
  white-space: nowrap;
  text-align: right;
  font-size: clamp(.6rem, .82vw, .74rem);
  line-height: 1.25;
}
.tv-root.tv-hybrid .tv-hybrid-ticker-qr {
  display: flex;
  min-width: 58px;
  align-items: center;
  justify-content: center;
}
.tv-root.tv-hybrid .tv-hybrid-ticker-qr img {
  display: block;
  width: clamp(52px, 5.2vw, 74px);
  height: clamp(52px, 5.2vw, 74px);
  padding: 3px;
  border-radius: 6px;
  background: #fff;
}
.tv-root.tv-hybrid .tv-hybrid-ticker-qr span { display: none; }
.tv-root.tv-hybrid .tv-qr { display: none; }

@media (max-width: 720px) {
  .tv-root.tv-hybrid .tv-frame {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
    padding: 10px;
  }
  .tv-root.tv-hybrid .tv-hybrid-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    height: auto;
  }
  .tv-root.tv-hybrid .tv-hybrid-empty {
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
  .tv-root.tv-hybrid .tv-hybrid-portrait {
    min-height: min(145vw, 680px);
  }
  .tv-root.tv-hybrid .tv-hybrid-portrait .tv-stage {
    width: min(100%, 380px);
    height: auto;
    max-height: none;
  }
  .tv-root.tv-hybrid .tv-hybrid-ticker {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "kicker side" "main side" "detail side";
    align-items: start;
    min-height: 0;
    padding: 12px;
  }
  .tv-root.tv-hybrid .tv-hybrid-ticker-qr img {
    width: 64px;
    height: 64px;
  }
  .tv-root.tv-hybrid .tv-hybrid-ticker-prompt { text-align: left; }
}

@media (max-width: 420px) {
  .tv-root.tv-hybrid .tv-hybrid-empty-copy { padding: 12px; }
  .tv-root.tv-hybrid .tv-hybrid-empty-copy span { font-size: .68rem; }
  .tv-root.tv-hybrid .tv-hybrid-ticker-qr img { width: 56px; height: 56px; }
}

/* Regia Discovery v3: tipografia di lettura a distanza, senza sovrapposizioni. */
.tv-root.tv-hybrid .tv-hybrid-layout {
  grid-template-rows: minmax(0, 1fr) clamp(132px, 12vw, 172px);
}

.tv-root.tv-hybrid .tv-hybrid-portrait .tv-content {
  gap: 2.2cqw;
  padding: 4.5cqw 4.5cqw 10cqw;
}
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-brand {
  font-size: clamp(.95rem, 3.8cqw, 1.45rem);
}
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-type,
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-kicker {
  font-size: clamp(.82rem, 4.2cqw, 1.15rem);
  letter-spacing: .08em;
}
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-title {
  max-height: 2em;
  -webkit-line-clamp: 2;
  font-size: clamp(1.6rem, 18cqw, 3.8rem);
  line-height: 1;
}
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-region {
  font-size: clamp(.9rem, 5.4cqw, 1.3rem);
}
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-page-label,
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-card-label {
  font-size: clamp(.72rem, 3.6cqw, 1rem);
}
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-subtitle {
  max-height: 4.9em;
  -webkit-line-clamp: 4;
  font-size: clamp(.94rem, 6cqw, 1.38rem);
  line-height: 1.22;
}
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-place-context strong {
  font-size: clamp(.98rem, 6.5cqw, 1.38rem);
}
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-postcard-title,
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-tradition-title,
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-route-title {
  font-size: clamp(1.5rem, 16cqw, 3.4rem);
}
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-postcard-line,
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-tradition-sub,
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-stop-desc {
  max-height: 3.9em;
  -webkit-line-clamp: 3;
  font-size: clamp(.9rem, 5.6cqw, 1.25rem);
  line-height: 1.3;
}

/* Fascia inferiore: quattro blocchi leggibili e QR indipendente. */
.tv-root.tv-hybrid .tv-hybrid-ticker {
  grid-template-columns: minmax(190px, 1.1fr) minmax(230px, 1.6fr) minmax(170px, 1fr) auto;
  grid-template-areas: "main detail prompt qr";
  min-height: 0;
  padding: 16px clamp(16px, 2vw, 30px);
  gap: clamp(12px, 1.5vw, 24px);
}
.tv-root.tv-hybrid .tv-hybrid-ticker-kicker {
  display: none;
}
.tv-root.tv-hybrid .tv-hybrid-ticker-title {
  -webkit-line-clamp: 2;
  font-size: clamp(1.45rem, 2.8vw, 2.25rem);
  line-height: 1.04;
}
.tv-root.tv-hybrid .tv-hybrid-ticker-meta {
  -webkit-line-clamp: 2;
  font-size: clamp(.98rem, 1.7vw, 1.35rem);
  line-height: 1.18;
}
.tv-root.tv-hybrid .tv-hybrid-ticker-description {
  -webkit-line-clamp: 4;
  font-size: clamp(.96rem, 1.7vw, 1.34rem);
  line-height: 1.24;
}
.tv-root.tv-hybrid .tv-hybrid-ticker-prompt {
  font-size: clamp(.92rem, 1.5vw, 1.2rem);
  line-height: 1.22;
}
.tv-root.tv-hybrid .tv-hybrid-ticker-qr img {
  width: clamp(82px, 7vw, 110px);
  height: clamp(82px, 7vw, 110px);
}

@media (max-width: 720px) {
  .tv-root.tv-hybrid .tv-hybrid-layout {
    grid-template-rows: auto auto auto;
  }
  .tv-root.tv-hybrid .tv-hybrid-ticker {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "main qr" "detail qr" "prompt qr";
    min-height: 0;
    padding: 16px;
  }
  .tv-root.tv-hybrid .tv-hybrid-ticker-title {
    font-size: clamp(1.35rem, 5.8vw, 1.8rem);
  }
  .tv-root.tv-hybrid .tv-hybrid-ticker-meta,
  .tv-root.tv-hybrid .tv-hybrid-ticker-description {
    font-size: clamp(.98rem, 4.7vw, 1.25rem);
  }
  .tv-root.tv-hybrid .tv-hybrid-ticker-prompt {
    font-size: clamp(.94rem, 4.4vw, 1.16rem);
  }
  .tv-root.tv-hybrid .tv-hybrid-ticker-qr img {
    width: clamp(78px, 20vw, 100px);
    height: clamp(78px, 20vw, 100px);
  }
}

/* Regia Discovery v4: nessun testo troncato. Le frasi arrivano già paginate
   dal palinsesto; qui devono poter andare a capo e restare tutte visibili. */
.tv-root.tv-hybrid .tv-hybrid-layout {
  grid-template-rows: minmax(0, 1fr) auto;
}

.tv-root.tv-hybrid .tv-hybrid-empty::before,
.tv-root.tv-hybrid .tv-hybrid-empty-copy,
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-tradition-icon {
  display: none;
}

.tv-root.tv-hybrid .tv-hybrid-portrait .tv-title,
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-subtitle,
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-postcard-title,
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-tradition-title,
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-route-title,
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-postcard-line,
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-tradition-sub,
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-stop-desc {
  display: block;
  max-height: none;
  overflow: visible;
  -webkit-line-clamp: unset;
  text-overflow: clip;
  white-space: normal;
  overflow-wrap: anywhere;
}

.tv-root.tv-hybrid .tv-hybrid-portrait .tv-title {
  font-size: clamp(1.22rem, 12.5cqw, 2.65rem);
  line-height: 1.04;
}
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-subtitle {
  font-size: clamp(.78rem, 4.7cqw, 1.08rem);
  line-height: 1.26;
}
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-postcard-title,
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-tradition-title,
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-route-title {
  font-size: clamp(1.22rem, 12.5cqw, 2.7rem);
  line-height: 1.04;
}
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-postcard-line,
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-tradition-sub,
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-stop-desc {
  font-size: clamp(.78rem, 4.6cqw, 1.08rem);
  line-height: 1.28;
}
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-place-context strong {
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
}
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-content,
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-hero {
  overflow: visible;
  max-height: none;
}

.tv-root.tv-hybrid .tv-hybrid-ticker-title,
.tv-root.tv-hybrid .tv-hybrid-ticker-meta,
.tv-root.tv-hybrid .tv-hybrid-ticker-description,
.tv-root.tv-hybrid .tv-hybrid-ticker-prompt {
  display: block;
  max-height: none;
  overflow: visible;
  -webkit-line-clamp: unset;
  text-overflow: clip;
  white-space: normal;
  overflow-wrap: anywhere;
}
.tv-root.tv-hybrid .tv-hybrid-ticker-title {
  font-size: clamp(1.08rem, 2.2vw, 1.7rem);
  line-height: 1.08;
}
.tv-root.tv-hybrid .tv-hybrid-ticker-meta {
  font-size: clamp(.76rem, 1.2vw, 1rem);
  line-height: 1.16;
}
.tv-root.tv-hybrid .tv-hybrid-ticker-description {
  font-size: clamp(.76rem, 1.2vw, 1rem);
  line-height: 1.24;
}
.tv-root.tv-hybrid .tv-hybrid-ticker-prompt {
  font-size: clamp(.72rem, 1.05vw, .92rem);
  line-height: 1.2;
}

/* Solo il QR resta come invito utile all'approfondimento. */
.tv-root.tv-hybrid .tv-type::before,
.tv-root.tv-hybrid .tv-page-ind::before,
.tv-root.tv-hybrid .tv-region::before {
  display: none;
}

@media (max-width: 720px) {
  .tv-root.tv-hybrid .tv-hybrid-layout {
    grid-template-rows: auto auto auto;
  }
  .tv-root.tv-hybrid .tv-hybrid-portrait .tv-title {
    font-size: clamp(1.2rem, 10.8vw, 2.25rem);
  }
  .tv-root.tv-hybrid .tv-hybrid-portrait .tv-subtitle,
  .tv-root.tv-hybrid .tv-hybrid-portrait .tv-postcard-line,
  .tv-root.tv-hybrid .tv-hybrid-portrait .tv-tradition-sub,
  .tv-root.tv-hybrid .tv-hybrid-portrait .tv-stop-desc {
    font-size: clamp(.82rem, 4.2vw, 1.05rem);
  }
  .tv-root.tv-hybrid .tv-hybrid-ticker-title {
    font-size: clamp(1.12rem, 5vw, 1.65rem);
  }
  .tv-root.tv-hybrid .tv-hybrid-ticker-meta,
  .tv-root.tv-hybrid .tv-hybrid-ticker-description {
    font-size: clamp(.8rem, 3.7vw, 1rem);
  }
  .tv-root.tv-hybrid .tv-hybrid-ticker-prompt {
    font-size: clamp(.72rem, 3.4vw, 1rem);
  }
}

/* Regia Discovery v5: scala compatta e leggibile nel pannello 9:16. */
.tv-root.tv-hybrid .tv-hybrid-portrait {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-stage {
  box-sizing: border-box;
  width: min(100%, calc(100% - 2px));
  max-width: 100%;
  overflow: hidden;
}
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-content,
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-hero,
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-postcard-copy,
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-tradition-left,
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-route {
  box-sizing: border-box;
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
}
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-title,
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-postcard-title,
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-tradition-title,
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-route-title {
  max-width: 100%;
  font-size: clamp(.98rem, 6.4cqw, 1.55rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  overflow-wrap: anywhere;
}
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-subtitle,
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-postcard-line,
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-tradition-sub,
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-stop-desc {
  max-width: 100%;
  font-size: clamp(.68rem, 3.25cqw, .88rem);
  line-height: 1.3;
  overflow-wrap: anywhere;
}
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-type,
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-kicker,
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-region,
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-page-label,
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-card-label {
  max-width: 100%;
  font-size: clamp(.48rem, 2.35cqw, .66rem);
  line-height: 1.2;
  overflow-wrap: anywhere;
}
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-place-context strong {
  max-width: 100%;
  font-size: clamp(.72rem, 3.2cqw, .9rem);
  line-height: 1.15;
  overflow-wrap: anywhere;
}
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-quiz {
  box-sizing: border-box;
  min-width: 0;
  max-width: 100%;
  padding: 7cqw;
  overflow: hidden;
}
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-quiz-badge {
  max-width: 100%;
  margin-bottom: 3cqw;
  padding: 1.5cqw 3cqw;
  font-size: clamp(.48rem, 2.25cqw, .64rem);
  letter-spacing: .1em;
}
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-quiz-q {
  max-width: 15ch;
  margin-bottom: 3cqw;
  font-size: clamp(.92rem, 6.3cqw, 1.5rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
}
.tv-root.tv-hybrid .tv-hybrid-portrait .tv-quiz-reveal {
  max-width: 100%;
  padding: 2.5cqw 3cqw;
  font-size: clamp(.62rem, 2.8cqw, .8rem);
  line-height: 1.28;
  overflow-wrap: anywhere;
}

@media (max-width: 720px) {
  .tv-root.tv-hybrid .tv-hybrid-portrait .tv-stage {
    width: min(100%, 360px);
  }
  .tv-root.tv-hybrid .tv-hybrid-portrait .tv-title,
  .tv-root.tv-hybrid .tv-hybrid-portrait .tv-postcard-title,
  .tv-root.tv-hybrid .tv-hybrid-portrait .tv-tradition-title,
  .tv-root.tv-hybrid .tv-hybrid-portrait .tv-route-title {
    font-size: clamp(1rem, 6.2vw, 1.48rem);
  }
  .tv-root.tv-hybrid .tv-hybrid-portrait .tv-subtitle,
  .tv-root.tv-hybrid .tv-hybrid-portrait .tv-postcard-line,
  .tv-root.tv-hybrid .tv-hybrid-portrait .tv-tradition-sub,
  .tv-root.tv-hybrid .tv-hybrid-portrait .tv-stop-desc {
    font-size: clamp(.7rem, 3.25vw, .9rem);
  }
  .tv-root.tv-hybrid .tv-hybrid-portrait .tv-quiz-q {
    font-size: clamp(1rem, 6vw, 1.5rem);
  }
}
