/* ─── VIDEO STRIP (interstitiali tra i punti) ───────────────────────────────── */
.video-strip {
  padding: 64px 0;
}
.video-strip--dark {
  background: var(--viola-dark);
}
.video-strip--light {
  background: #f5f0fa;
}
.video-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.video-strip-inner--reverse {
  direction: rtl;
}
.video-strip-inner--reverse > * {
  direction: ltr;
}

/* Thumbnail */
.video-strip-thumb {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/9;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.video-strip-thumb:hover {
  transform: scale(1.025);
  box-shadow: 0 20px 56px rgba(0,0,0,0.45);
}
.video-strip-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-strip-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(82,30,120,0.2);
  transition: background 0.2s;
}
.video-strip-thumb:hover .video-strip-play {
  background: rgba(82,30,120,0.1);
}
.video-strip-play svg {
  width: 72px;
  height: 72px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.35));
  transition: transform 0.2s;
}
.video-strip-thumb:hover .video-strip-play svg {
  transform: scale(1.1);
}

/* Body text */
.video-strip-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.video-strip-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.video-strip-label--viola {
  color: var(--viola);
}
.video-strip-title {
  font-family: 'Heading Smallcase Pro', 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin: 0;
}
.video-strip-title--dark {
  color: var(--viola-dark);
}
.video-strip-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.68);
  margin: 0;
}
.video-strip-desc--dark {
  color: #4a3060;
}
.video-strip-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--viola-dark);
  border: none;
  border-radius: 6px;
  padding: 11px 22px;
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
  width: fit-content;
  transition: background 0.15s, transform 0.15s;
}
.video-strip-btn:hover {
  background: #f0e8f8;
  transform: translateY(-1px);
}
.video-strip-btn--viola {
  background: var(--viola-dark);
  color: #fff;
}
.video-strip-btn--viola:hover {
  background: var(--viola);
}

@media (max-width: 768px) {
  .video-strip { padding: 48px 0; }
  .video-strip-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .video-strip-inner--reverse { direction: ltr; }
}

/* ─── VIDEO SECTION (legacy — kept for modal styles) ─────────────────────────── */
.video-section-title {
  font-family: 'Heading Smallcase Pro', 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  margin: 8px 0 12px;
  line-height: 1.1;
}
.video-section-sub {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  margin-bottom: 48px;
  max-width: 600px;
}
.video-section .section-label.light {
  color: rgba(255,255,255,0.55);
}

/* Category heading */
.video-category {
  margin-bottom: 52px;
}
.video-cat-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border-bottom: 2px solid rgba(255,255,255,0.18);
  padding-bottom: 6px;
  margin-bottom: 24px;
}

/* Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* Card */
.video-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  border-color: rgba(255,255,255,0.25);
}
.video-card--coming {
  cursor: default;
  pointer-events: none;
}

/* Thumbnail */
.video-thumb-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #2a1040;
}
.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.video-card:hover .video-thumb {
  transform: scale(1.04);
}
.video-thumb--dim {
  opacity: 0.35;
  filter: grayscale(40%);
}

/* Play button */
.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.video-play-btn svg {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}
.video-card:hover .video-play-btn {
  opacity: 1;
}

/* Duration / index badge */
.video-duration-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

/* Coming soon overlay */
.video-coming-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(82,30,120,0.55);
}
.video-coming-text {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(255,255,255,0.35);
  padding: 6px 16px;
  border-radius: 20px;
}

/* Card info */
.video-card-info {
  padding: 16px 18px 20px;
}
.video-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--viola-light);
  margin-bottom: 6px;
}
.video-card-title {
  font-family: 'Heading Smallcase Pro', 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.3;
}
.video-card-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
  margin: 0;
}

/* Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  cursor: pointer;
}
.video-modal-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  background: #1a0a2e;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.video-modal-title-bar {
  padding: 14px 60px 14px 20px;
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.video-modal-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.video-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 2;
  opacity: 0.7;
  transition: opacity 0.15s;
}
.video-modal-close:hover { opacity: 1; }
.video-modal-player {
  aspect-ratio: 16/9;
  width: 100%;
  background: #000;
}
@media (max-width: 600px) {
  .video-section { padding: 56px 0 64px; }
  .video-modal { padding: 0; }
  .video-modal-inner { border-radius: 0; }
}

/* ─── HERO PROGRAMMA ────────────────────────────────────────────────────────── */
.prog-hero {
  position: relative;
  background: var(--viola-dark);
  padding: 100px 0 0;
  overflow: hidden;
}
.prog-hero-watermark {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='120'%3E%3Ctext x='0' y='95' font-family='Montserrat%2C sans-serif' font-size='90' font-weight='900' letter-spacing='-2' fill='white'%3EVOTA!%3C/text%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 300px 120px;
  opacity: 0.055;
}
.prog-hero-inner {
  position: relative;
  z-index: 1;
  padding-bottom: 60px;
}
.prog-hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin: 12px 0 20px;
  letter-spacing: -0.02em;
}
.prog-hero-sub {
  color: #a0b4cc;
  font-size: 1.1rem;
  max-width: 520px;
}

/* ─── SEZIONI PUNTO ─────────────────────────────────────────────────────────── */
.punto {
  padding: 80px 0;
  position: relative;
}
.punto--light {
  background: #fafaf8;
}
.punto--viola {
  background: var(--viola-dark, #2d1b5e);
  color: #fff;
}
.punto-watermark {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='120'%3E%3Ctext x='0' y='95' font-family='Montserrat%2C sans-serif' font-size='90' font-weight='900' letter-spacing='-2' fill='white'%3EVOTA!%3C/text%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 300px 120px;
  opacity: 0.055;
}
.punto-inner {
  position: relative;
  z-index: 1;
}
.punto-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 2px solid rgba(128,128,128,0.15);
}
.punto--viola .punto-header {
  border-bottom-color: rgba(255,255,255,0.15);
}
.punto-num {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--rosso, #c0392b);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  margin-top: -4px;
}
.punto--viola .punto-num { color: #f4c05a; }
.punto-claim {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--viola, #6c3aad);
  margin: 0 0 6px;
}
.punto--viola .punto-claim { color: #f4c05a; }
.punto-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin: 0;
  color: #0a0520;
}
.punto--viola .punto-title { color: #fff; }

.punto-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  max-width: 760px;
  margin-bottom: 36px;
}
.punto--viola .punto-intro { color: rgba(255,255,255,0.8); }

.punto-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 700px) {
  .punto-cols { grid-template-columns: 1fr; gap: 24px; }
}

.punto-sub {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--viola, #6c3aad);
  margin: 0 0 14px;
}
.punto--viola .punto-sub { color: #f4c05a; }

.punto-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.punto-list li {
  padding-left: 20px;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
}
.punto--viola .punto-list li { color: rgba(255,255,255,0.9); }
.punto-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--rosso, #c0392b);
  font-size: 0.6rem;
  top: 4px;
}
.punto--viola .punto-list li::before { color: #f4c05a; }

.punto-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
}
.punto--viola .punto-text { color: rgba(255,255,255,0.8); }

.punto-oggi {
  margin-top: 24px;
  padding: 16px 20px;
  background: rgba(192,57,43,0.06);
  border-left: 3px solid var(--rosso, #c0392b);
  border-radius: 0 6px 6px 0;
  font-size: 0.88rem;
  color: #555;
  line-height: 1.6;
}

/* ─── CTA FINALE ────────────────────────────────────────────────────────────── */
.prog-cta {
  background: var(--viola-dark, #2d1b5e);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.prog-cta-watermark {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='120'%3E%3Ctext x='0' y='95' font-family='Montserrat%2C sans-serif' font-size='90' font-weight='900' letter-spacing='-2' fill='white'%3EVOTA!%3C/text%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 300px 120px;
  opacity: 0.055;
}
.prog-cta-inner { position: relative; z-index: 1; }
.prog-cta-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}
.prog-cta-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  margin-bottom: 40px;
}
.prog-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-btn--outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
}
.cta-btn--outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

/* ─── LINK "Leggi il programma" nella home ──────────────────────────────────── */
.prog-link-wrap {
  text-align: center;
  margin-top: 48px;
}
.prog-link-btn {
  display: inline-block;
  padding: 14px 32px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 6px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s;
}
.prog-link-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* Override claim bar: viola invece di blu nella pagina programma */
.prog-hero .hero-claim-bar {
  background: var(--viola);
}

/* =========================================
   MANIFESTO — sezione immagine
   ========================================= */

.manifesto-section {
  background: #F5F4F8;
  padding: 64px 0;
}

.manifesto-inner {
  display: flex;
  justify-content: center;
}

.manifesto-img {
  max-width: 480px;
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(112,51,160,0.2);
}

@media (max-width: 600px) {
  .manifesto-section { padding: 40px 0; }
  .manifesto-img { max-width: 100%; }
}
