

    body { font-family: Arial, sans-serif; margin: 0; background: #f7f7f7; color: #333; }
    header { background: #2196F3; color: #fff; padding: 15px; text-align: center; }
    header h1 { margin: 0; font-size: 1.8em; }

    .container { max-width: 1000px; margin: auto; padding: 20px; }

    table { width: 100%; border-collapse: collapse; margin-top: 20px; }
    th, td {
      border: 1px solid #ccc;
      padding: 10px;
      text-align: center;
      font-size: 0.9em;
    }
    th { background-color: #1976D2; color: #fff; position: sticky; top: 0; }
    td .program {
      background: #E3F2FD;
      border-radius: 5px;
      padding: 5px;
      margin-bottom: 5px;
    }

    .giorno-mobile {
      display: none;
    }

    .footer {
      text-align: center;
      background: #1976D2;
      color: #fff;
      padding: 15px;
      margin-top: 30px;
    }
    .footer a { color: #fff; text-decoration: underline; margin: 0 5px; }

    /* VERSIONE MOBILE */
    @media (max-width: 768px) {
      table, thead, tbody, th, td, tr {
        display: none;
      }

      .giorno-mobile {
        display: block;
        margin-bottom: 30px;
      }

      .giorno-mobile h3 {
        background: #2196F3;
        color: white;
        padding: 10px;
        margin: 0;
        border-radius: 5px 5px 0 0;
      }

      .ora-block {
        background: #fff;
        border: 1px solid #ddd;
        padding: 10px;
        border-radius: 0 0 5px 5px;
      }

      .ora-block p {
        margin: 0 0 8px 0;
      }

      .program {
        background: #E3F2FD;
        padding: 5px;
        margin: 5px 0;
        border-radius: 4px;
      }
    }



       *, *::before, *::after { box-sizing: border-box; }

    body {
      font-family: Arial, sans-serif;
      margin: 0;
      background: #f7f7f7;
      color: #333;
    }

    /* Cookie banner */
    .cookie-banner {
      position: fixed;
      bottom: 0;
      width: 100%;
      background-color: #333;
      color: #fff;
      padding: 12px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      z-index: 1000;
    }

    .cookie-banner button {
      background-color: #2196F3;
      border: none;
      color: white;
      padding: 8px 16px;
      border-radius: 5px;
      cursor: pointer;
      font-weight: bold;
    }

    .cookie-banner a { color: #fff; text-decoration: underline; margin-left: 15px; }

    .site-header {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.site-logo {
  height: 150px;
   display: block;
  margin: 0 auto;
  max-width: 180px;
    height: auto;
}

.site-title {
  font-size: 1.6em;
  margin: 0;
  color: #2196F3;
}

#radio-player {
  width: 200px;
  max-width: 90vw;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}
.menu-toggle {
  display: none;
}


/* Nav */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 999;
    padding: 10px 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    margin-left: auto;
  }

  .header-container {
    flex-direction: column;
    align-items: stretch;
  }

  .logo-container {
    justify-content: space-between;
    width: 100%;
    padding: 10px 0;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .nav-links a {
    font-size: 1.1em;
    padding: 5px 0;
    display: block;
  }
}


  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo-container {
    justify-content: space-between;
    width: 100%;
  }


    /* Marquee */
    .rds-marquee {
      background: #1976D2;
      color: #fff;
      padding: 10px;
      font-weight: bold;
      overflow: hidden;
      white-space: nowrap;
      box-sizing: border-box;
    }

    .rds-text { display: inline-block; padding-left: 100%; animation: marquee 15s linear infinite; }
    @keyframes marquee { 0% { transform: translateX(0%); } 100% { transform: translateX(-100%); } }

    main.main-content { padding: 20px; max-width: 960px; margin: auto; }

    /* Player section */
    .player-section {
      text-align: center;
      margin-bottom: 40px;
    }

    .player-section audio {
      width: 100%;
      max-width: 600px;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    }


    /* Social share */
    #social-share h3 { font-size: 1.5em; margin-bottom: 15px; color: #2196F3; }
    #social-share a {
      text-decoration: none;
      color: #333;
      display: flex;
      align-items: center;
      gap: 6px;
      font-weight: bold;
      transition: color 0.2s;
    }
    #social-share a:hover { color: #2196F3; }

    /* Footer */

    .new-footer {
  background-color: #0D47A1;
  color: #fff;
  padding: 40px 20px 10px;
  font-family: 'Arial', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1 1 250px;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  border-bottom: 2px solid #fff;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-column ul li a:hover {
  color: #FFEB3B;
}

.footer-logo {
  width: 120px;
  margin-bottom: 15px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 30px;
  padding-top: 15px;
  font-size: 0.85rem;
}

   

    .in-onda {
        background: #fff;
        border-radius: 12px;
        padding: 15px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        text-align: center;
        flex: 1 1 220px;
        max-width: 220px;
        transition: transform 0.2s, box-shadow 0.2s;
    }
    .in-onda:hover { 
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    .in-onda h2 {
        font-size: 1.8em;
        color: #2196F3;
        margin: 0 0 8px 0;
    }
    .in-onda p {
        font-size: 1em;
        color: #555;
        margin: 0;
    }

    /* Nuova Sezione Top 3 Programmi */
    .top-programmi {
      text-align: center;
      margin: 40px 0;
    }

    .top-programmi h3 {
      font-size: 1.8em;
      color: #2196F3;
      margin-bottom: 20px;
    }

    .top-programmi-container {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
      padding: 0 15px;
    }

    .top-programma {
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      width: 280px;
      padding: 20px;
      text-align: center;
      transition: transform 0.2s, box-shadow 0.2s;
      cursor: pointer;
      margin-bottom: 20px;
    }

    .top-programma:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    .programma-cover {
      width: 100%;
      max-width: 260px;
      height: auto;
      border-radius: 8px;
    }

    .top-programma h4 {
      font-size: 1.4em;
      margin-top: 15px;
      color: #2196F3;
    }

    .top-programma p {
      font-size: 1em;
      color: #555;
      margin-top: 10px;
    }

    /* Stile responsivo per schermi piccoli */
    @media (max-width: 768px) {
      .top-programmi-container {
        gap: 10px;
        padding: 0;
      }

      .top-programma {
        width: 100%;
        max-width: 350px;
      }
    }

    @media (max-width: 480px) {
      .top-programmi h3 {
        font-size: 1.5em;
      }

      .top-programma h4 {
        font-size: 1.2em;
      }

      .top-programma p {
        font-size: 0.9em;
      }
    }

      .podcast-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 960px;
    margin: 0 auto;
  }

  .spacer{margin-bottom:60px}



  .podcast-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
    width: 280px;
    display: flex;
    flex-direction: column;
  }
  .podcast-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
  }
  .podcast-info {
    padding: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .podcast-info strong {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #2196F3;
  }
  audio {
    width: 100%;
    outline: none;
  }
  @media (max-width: 600px) {
    .podcast-item {
      width: 100%;
    }
  }

  .space{

    margin-top: 60px;
  }
.hero {
  width: 100%;
  height: 100vh;
  background-image: url('hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 20px; /* più padding orizzontale per non toccare i bordi */
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6); /* overlay scuro più uniforme */
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  color: #fff;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem); /* dimensione responsive */
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 2px 6px rgba(0,0,0,0.7); /* testo più leggibile */
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: 30px;
  font-weight: 300;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

.hero-button {
  background-color: #ff5a5f; /* colore più vibrante, simile al rosso scuro */
  color: white;
  padding: 14px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(255, 90, 95, 0.5);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
}

.hero-button:hover {
  background-color: #e04848;
  box-shadow: 0 6px 20px rgba(224, 72, 72, 0.7);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero-button {
    padding: 12px 30px;
    margin: 20px;
    font-size: 1rem;
  }
}

/* Animazione per hero-content */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  animation: fadeSlideUp 1s ease forwards;
  animation-delay: 0.3s;
}

/* Animazione pulsante */
.hero-button {
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.hero-button:hover {
  background-color: #e04848;
  box-shadow: 0 6px 20px rgba(224, 72, 72, 0.7);
  transform: scale(1.05); /* leggero ingrandimento */
}

/* Optional: animazione in sequenza per titolo e paragrafo */
.hero h1 {
  animation: fadeSlideUp 1s ease forwards;
  animation-delay: 0.5s;
  opacity: 0; /* parte invisibile */
}

.hero p {
  animation: fadeSlideUp 1s ease forwards;
  animation-delay: 0.7s;
  opacity: 0;
}

.Logo{  transform: rotate(-5deg); /* Ruota leggermente il logo */
  transition: transform }




/**articoli stile**/ 

.articoli-section {
  max-width: 960px;
  margin: 60px auto;
  padding: 0 20px;
}

.articoli-section h2 {
  font-size: 2rem;
  color: #ff5a5f;
  text-align: center;
  margin-bottom: 30px;
}

.articoli-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.articolo-card {
  background: #1f1f1f;
  border-radius: 8px;
  overflow: hidden;
  width: 300px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.articolo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.6);
}

.articolo-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.articolo-info {
  padding: 15px;
}

.articolo-info .categoria {
  display: inline-block;
  margin-bottom: 8px;
  color: #ff5a5f;
  font-size: 0.9rem;
}

.articolo-info h3 {
  color: #eee;
  margin: 0 0 5px;
  font-size: 1.2rem;
}

.articolo-info time {
  font-size: 0.85rem;
  color: #bbb;
}

/* Mobile */
@media (max-width: 600px) {
  .articoli-container {
    flex-direction: column;
    align-items: center;
  }
  .articolo-card {
    width: 100%;
    max-width: 320px;
  }
}

.articoli-section {
  max-width: 960px;
  margin: 60px auto;
  padding: 0 20px;
}

.articoli-section h2 {
  font-size: 2rem;
  color: #ff5a5f;
  text-align: center;
  margin-bottom: 30px;
}

.articoli-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.articolo-card {
  background: #1f1f1f;
  border-radius: 8px;
  overflow: hidden;
  width: 300px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.articolo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.6);
}

.articolo-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.articolo-info {
  padding: 15px;
}

.articolo-info .categoria {
  display: inline-block;
  margin-bottom: 8px;
  color: #ff5a5f;
  font-size: 0.9rem;
}

.articolo-info h3 {
  color: #eee;
  margin: 0 0 5px;
  font-size: 1.2rem;
}

.articolo-info time {
  font-size: 0.85rem;
  color: #bbb;
}

@media (max-width: 600px) {
  .articoli-container {
    flex-direction: column;
    align-items: center;
  }
  .articolo-card {
    width: 100%;
    max-width: 320px;
  }
}

  .on-air {
      background: #ff3b3b;
      color: #fff;
      font-weight: bold;
      padding: 6px 12px;
      border-radius: 8px;
      font-size: 0.9rem;
      white-space: nowrap;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    @media (max-width: 768px) {
      .menu-toggle {
        display: block !important;
      }
      .nav-links {
        display: none !important;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        margin-top: 0;
      }
      .nav-links.open {
        display: block !important;
      }
      .nav-links ul {
        flex-direction: column !important;
        gap: 10px;
        padding: 20px;
      }
    }
    .nav-links ul li a:hover {
      color: #2196F3;
    }


.now-playing-section {
  font-family: Inter, system-ui, Arial, sans-serif;
  max-width: 820px;
  margin: 40px auto;
  padding: 26px 22px;
  background: #ffffff;
  color: #0f172a;
  text-align: center;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.now-playing-section:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.on-air-badge {
  display: inline-block;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  background-color: #ef4444;
  color: #fff;
  padding: 6px 18px;
  border-radius: 999px;
  box-shadow: 0 3px 8px rgba(239, 68, 68, 0.4);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.now-playing-section h2 {
  font-size: 1.6rem;
  margin: 10px 0 6px 0;
  font-weight: 700;
  line-height: 1.3;
  color: #0f172a;
}

.now-playing-section p {
  font-size: 1rem;
  margin-top: 4px;
  color: #475569;
  font-weight: 500;
}

.listen-now-button {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 26px;
  background-color: #0b3bff;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(11, 59, 255, 0.3);
  transition: all 0.3s ease;
}

.listen-now-button:hover {
  background-color: #1d4ed8;
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(11, 59, 255, 0.35);
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .now-playing-section {
    padding: 22px 16px;
  }
  .now-playing-section h2 {
    font-size: 1.4rem;
  }
  .now-playing-section p {
    font-size: 0.95rem;
  }
  .listen-now-button {
    padding: 9px 22px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .now-playing-section {
    padding: 18px 12px;
  }
  .on-air-badge {
    font-size: 0.9rem;
    padding: 5px 14px;
  }
  .now-playing-section h2 {
    font-size: 1.2rem;
  }
  .listen-now-button {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
}


    /* ===== STILI SEZIONE DATI RADIO ===== */
    .dati-radio {
      background: linear-gradient(to bottom, #eef6ff, #ffffff);
      padding: 60px 20px;
      text-align: center;
      font-family: 'Poppins', sans-serif;
    }

    .dati-radio h2 {
      font-size: 2rem;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 10px;
    }

    .dati-radio .intro {
      color: #555;
      margin-bottom: 50px;
      font-size: 1rem;
    }

    /* CONTENITORE 3 COLONNE */
    .dati-container {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: 80px;
      flex-wrap: nowrap; /* 🔹 Sempre in una riga */
    }

    /* OGNI COLONNA */
    .dati-colonna {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-width: 180px;
    }

    .dati-colonna i {
      font-size: 48px;
      margin-bottom: 10px;
    }

    .dati-colonna:nth-child(1) i { color: #2563eb; } /* Blu */
    .dati-colonna:nth-child(2) i { color: #e1306c; } /* Rosa */
    .dati-colonna:nth-child(3) i { color: #16a34a; } /* Verde */

    .dati-colonna h3 {
      font-size: 1.1rem;
      color: #333;
      margin-bottom: 6px;
    }

    .dati-colonna .numero {
      font-size: 2.4rem;
      font-weight: 800;
      color: #1a1a1a;
    }

    /* NOTA IN FONDO */
    .dati-radio .nota {
      margin-top: 40px;
      font-size: 0.9rem;
      color: #777;
      font-style: italic;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .dati-container {
        flex-wrap: wrap; /* Va a capo solo su schermi piccoli */
        gap: 40px;
      }
    }

     .top-podcasts {
    font-family: Inter, system-ui, Arial, sans-serif;
    max-width: 820px;
    margin: 20px auto;
    background: #ffffff;
    color: #0b1220;
    border: 1px solid #e6eef8;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    padding: 18px;
  }
  .tp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
  }
  .tp-title {
    font-size: 18px;
    font-weight: 800;
    color: #000;
    margin: 0;
  }
  .tp-sub {
    font-size: 13px;
    color: #475569;
    margin: 0;
  }
  .tp-list {
    background: #fbfdff;
    border-radius: 8px;
    padding: 10px;
    border: 1px solid #edf2f7;
  }
  .pod-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 6px;
    border-bottom: 1px dashed #e2e8f0;
  }
  .pod-row:last-child {
    border-bottom: none;
  }
  .pod-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
  }
  .rank {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef2ff;
    color: #0b3bff;
    font-weight: 700;
  }
  .pod-meta {
    min-width: 0;
  }
  .pod-name {
    font-size: 15px;
    font-weight: 700;
    color: #0b1220;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 220px;
  }
  .pod-note {
    font-size: 12px;
    color: #64748b;
  }
  .pod-stats {
    text-align: right;
    min-width: 96px;
  }
  .pod-count {
    font-size: 15px;
    font-weight: 800;
    color: #0b1220;
  }
  .pod-visits {
    font-size: 12px;
    color: #64748b;
  }
  @media (max-width: 720px) {
    .pod-name {
      max-width: 160px;
    }
  }


    /* STILI BLOCCO ANALISI */
    .dati-radio-analisi {
      background: #f0f6ff; /* sfondo leggero */
      padding: 40px 20px;
      text-align: center;
      font-family: 'Poppins', sans-serif;
    }

    .dati-radio-analisi p {
      font-size: 1rem;
      color: #333;
      max-width: 800px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .dati-radio-analisi strong {
      color: #1e40af; /* colore per evidenziare parole chiave */
    }

    /* Responsive */
    @media (max-width: 600px) {
      .dati-radio-analisi p {
        font-size: 0.95rem;
      }
    }

  .wr-box {
    font-family: Inter, system-ui, Arial, sans-serif;
    max-width: 820px;
    background: #f8fafc;
    color: #0f172a;
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin: 0 auto;
  }
  .wr-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
  }
  .wr-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
  }
  .wr-sub {
    font-size: 14px;
    color: #475569;
  }
  .wr-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
  }
  .wr-stat {
    background: #fff;
    border-radius: 10px;
    padding: 12px;
    border: 1px solid #e2e8f0;
  }
  .wr-label {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 8px;
  }
  .wr-value {
    font-size: 20px;
    font-weight: 700;
    color: #000;
  }
  .wr-delta {
    font-size: 13px;
    margin-top: 8px;
    color: #16a34a;
    font-weight: 700;
  }
  .wr-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 14px;
  }
  .wr-table th {
    font-size: 13px;
    color: #475569;
    text-align: left;
    padding: 8px;
    border-bottom: 2px solid #e2e8f0;
  }
  .wr-table td {
    font-size: 15px;
    padding: 8px;
    border-bottom: 1px solid #e2e8f0;
  }
  .wr-badge {
    background: #e2e8f0;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 13px;
    color: #334155;
  }
  .wr-summary {
    margin-top: 10px;
    font-size: 14px;
    color: #334155;
  }
  @media (max-width:720px){.wr-grid{grid-template-columns:1fr}}


/* --- SEZIONE PRINCIPALE --- */
.photo-gallery-vertical {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.photo-gallery-vertical h2 {
  font-size: 2rem;
  color: #2196F3;
  margin-bottom: 25px;
}

/* --- CONTENITORE DEL CAROSELLO --- */
.gallery-wrapper-vertical {
  overflow: hidden;
  position: relative;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* --- TRACK DELLE FOTO --- */
.gallery-track-vertical {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

/* --- FOTO INDIVIDUALI --- */
.gallery-item-vertical {
  flex: 0 0 33.3333%; /* tre per riga su desktop */
  aspect-ratio: 2 / 3; /* verticale rettangolare */
  overflow: hidden;
  border-radius: 0;
}

.gallery-item-vertical img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item-vertical img:hover {
  transform: scale(1.06);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .gallery-item-vertical {
    flex: 0 0 100%; /* una alla volta su mobile */
    aspect-ratio: 2 / 3;
  }
}



.radio-growth {
  font-family: Inter, system-ui, Arial, sans-serif;
  max-width: 820px;
  margin: 40px auto;
  padding: 26px 24px;
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  line-height: 1.6;
}

.radio-growth h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0b1220;
  margin-bottom: 12px;
}

.radio-growth p {
  font-size: 1rem;
  color: #334155;
  margin-bottom: 14px;
}

.radio-growth strong {
  color: #0b3bff;
}

.growth-call {
  background: #f8fafc;
  border-radius: 10px;
  padding: 16px 18px;
  border-left: 4px solid #0b3bff;
  margin-top: 20px;
}

.follow-btn {
  display: inline-block;
  margin-top: 10px;
  background-color: #0b3bff;
  color: #fff;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(11, 59, 255, 0.3);
}

.follow-btn:hover {
  background-color: #1d4ed8;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .radio-growth {
    padding: 20px 16px;
  }
  .radio-growth h3 {
    font-size: 1.3rem;
  }
  .radio-growth p {
    font-size: 0.95rem;
  }
  .follow-btn {
    font-size: 0.95rem;
    padding: 8px 18px;
  }
}


.carousel-section { max-width: 1200px; margin: 40px auto; padding: 0 10px; }
.carousel-container { position: relative; overflow: hidden; }
.carousel-track {
  display: flex;
  transition: transform 0.3s ease-in-out;
  gap: 15px;
}
.episode {
  flex: 0 0 calc((100% - 30px)/3); /* Mostra sempre 3 per volta */
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
  display: block;
  text-decoration: none;
  color: inherit;
}
.episode img { width: 100%; height: 150px; object-fit: cover; display: block; }
.ep-date { margin: 8px 0; font-size: 0.85rem; color:#555; }
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color:#fff;
  border:none;
  padding:10px;
  cursor:pointer;
  border-radius:50%;
  font-size:1.5rem;
  z-index:10;
}
.carousel-btn.prev { left: 5px; }
.carousel-btn.next { right: 5px; }

@media (max-width:900px){ .episode { flex:0 0 calc((100% - 20px)/2); } }
@media (max-width:600px){ .episode { flex:0 0 100%; } }



.news-section {
  max-width: 1000px;
  margin: 60px auto;
  padding: 40px 30px;
  background: #ffffff; /* bianco */
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  text-align: center;
}

.news-section h2 {
  font-size: 2.5rem;
  color: #2196F3; /* azzurro */
  margin-bottom: 20px;
}

.news-section p.intro {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
}

.news-item {
  text-align: left;
  margin-bottom: 25px;
  color: #333;
}

.news-item h3 {
  font-size: 1.8rem;
  color: #1976D2; /* azzurro scuro per il titolo */
  margin-bottom: 5px;
}

.news-item small {
  display: block;
  font-size: 0.9rem;
  color: #64b5f6; /* azzurro chiaro */
  margin-bottom: 10px;
}

.news-item p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.news-item a {
  font-weight: bold;
  color: #2196F3;
  text-decoration: underline;
}

.news-item a:hover {
  color: #1976D2;
}

/* Responsive */
@media(max-width:768px) {
  .news-section { padding: 30px 20px; }
  .news-section h2 { font-size: 2rem; }
  .news-section p.intro { font-size: 1.05rem; margin-bottom: 30px; }
  .news-item h3 { font-size: 1.5rem; }
  .news-item p { font-size: 1rem; }
}

@media(max-width:480px) {
  .news-section { padding: 20px 15px; }
  .news-section h2 { font-size: 1.7rem; }
  .news-section p.intro { font-size: 0.95rem; margin-bottom: 20px; }
  .news-item h3 { font-size: 1.3rem; }
  .news-item p { font-size: 0.95rem; }
}

