/* The Arena - brand: rosso e nero (logo) */
:root {
  --color-bg: #000000;
  --color-surface: #0a0a0a;
  --color-surface-alt: #111111;
  --color-text: #f8f8f8;
  --color-muted: #d0d0d0;
  --color-accent: #ed1c24;
  --color-red: #ed1c24;
  --color-link: #ed1c24;
  --color-border: rgba(255,255,255,0.1);
  --font-sans: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-head: 'Segoe UI', system-ui, sans-serif;
  --space: 1rem;
  --radius: 4px;
  --transition: 250ms ease;
  --hero-gap: 20px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  /* Fallback: definizione variabili brand sul body (in caso :root non venga interpretato) */
  --color-bg: #000000;
  --color-surface: #0a0a0a;
  --color-surface-alt: #111111;
  --color-text: #f8f8f8;
  --color-muted: #d0d0d0;
  --color-accent: #ed1c24;
  --color-red: #ed1c24;
  --color-link: #ed1c24;
  --color-border: rgba(255,255,255,0.1);
  --font-sans: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-head: 'Segoe UI', system-ui, sans-serif;
  --space: 1rem;
  --radius: 4px;
  --transition: 250ms ease;
  --hero-gap: 20px;

  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: var(--color-link);
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}
a:hover {
  opacity: 0.9;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

:root {
  --color-bg: #000000;
  --color-surface: #0a0a0a;
  --color-surface-alt: #111111;
  --color-text: #f8f8f8;
  --color-muted: #d0d0d0;
  --color-accent: #ed1c24;
  --color-red: #ed1c24;
  --color-link: #ed1c24;
  --color-border: rgba(255,255,255,0.1);
  --font-sans: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-head: 'Segoe UI', system-ui, sans-serif;
  --space: 1rem;
  --radius: 4px;
  --transition: 250ms ease;
  --hero-gap: 20px;
}

/* Header come Legendary: logo sinistra, menu al centro, IT/EN destra */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-surface);
  border-bottom: none;
  transition: background 0.35s ease, backdrop-filter 0.35s ease;
}
.site-header.scrolled {
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--color-accent);
  text-transform: uppercase;
  flex-shrink: 0;
}
.logo img {
  height: 72px;
  width: auto;
  display: block;
}
.logo:hover {
  color: var(--color-text);
}
.header-center {
  display: flex;
  justify-content: flex-start;
  margin-left: 2.5rem;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}
.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  align-items: center;
}
.main-nav a {
  color: var(--color-muted);
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.main-nav a.active,
.main-nav a:hover {
  color: var(--color-accent);
}
.main-nav .nav-badge {
  display: inline-block;
  margin-left: 0.35em;
  padding: 0.15em 0.5em;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  vertical-align: middle;
  border-radius: 4px;
  line-height: 1.2;
}
.main-nav .nav-badge-new {
  background: var(--color-accent);
  color: #fff;
  animation: nav-badge-pulse 2s ease-in-out infinite;
}
@keyframes nav-badge-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}
.nav-catalogo {
  position: relative;
}
.nav-catalogo-sub {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 160px;
  padding: 0.5rem 0;
  margin-top: 0;
  padding-top: 0.35rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  flex-direction: column !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  z-index: 50;
}
.nav-catalogo:hover .nav-catalogo-sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-catalogo-sub.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-catalogo-sub li { margin: 0; }
.nav-catalogo-sub a {
  display: block;
  padding: 0.5rem 1rem;
  white-space: nowrap;
}
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--color-muted);
  color: var(--color-text);
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  border-radius: var(--radius);
}
.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
  flex-shrink: 0;
}
.header-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.header-social a,
.header-social span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: color 0.2s ease;
}
.header-social a:hover {
  color: var(--color-accent);
}
.header-social svg {
  width: 20px;
  height: 20px;
  display: block;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
}
.lang-switch a {
  color: var(--color-muted);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.35rem 0.5rem;
  border-radius: var(--radius);
  min-width: 2em;
  text-align: center;
}
.lang-switch a:hover {
  color: var(--color-text);
}
.lang-switch a.active {
  color: var(--color-accent);
  background: rgba(237, 28, 36, 0.2);
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .header-inner {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    row-gap: 0.5rem;
  }
  .header-center {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .main-nav.open { display: flex; }
  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0;
  }
}

/* Main */
.site-main {
  min-height: 60vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.section-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

/* Hero stile Legendary: video centrale 16:9, strisce prev/next, più spazio */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 21/9;
  max-height: 75vh;
  min-height: 260px;
  margin-top: 8px;
  background:
    radial-gradient(circle at 0 0, rgba(237,28,36,0.35), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(237,28,36,0.25), transparent 55%),
    var(--color-bg);
  overflow: hidden;
}
.hero-carousel .hero-slides {
  display: flex;
  gap: var(--hero-gap);
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.hero-carousel .hero-slide {
  flex-shrink: 0;
  height: 100%;
  width: 0;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  border-left: 4px solid var(--color-accent);
}
.hero-carousel .hero-slide.active {
  box-shadow: 0 0 0 2px var(--color-accent);
  z-index: 2;
}
.hero-carousel.hero-single .hero-slides {
  transform: none;
  justify-content: center;
}
.hero-carousel.hero-single .hero-slide {
  width: 100%;
  flex: 1;
  max-width: 100%;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-video-wrap iframe,
.hero-video-wrap video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1rem;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent 70%);
}
.hero-slide-title {
  font-size: clamp(0.95rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hero-discover-btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
  margin: 0 auto;
}
.hero-discover-btn:hover {
  background: #e02545;
  color: #fff;
  transform: translateY(-1px);
}
.hero-slide-caption .hero-caption-inner {
  text-align: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 50%, transparent 70%, rgba(0,0,0,0.2) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-arrows {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  pointer-events: none;
  z-index: 3;
}
.hero-arrow {
  pointer-events: auto;
  border: none;
  background: rgba(0,0,0,0.45);
  border-radius: 999px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.hero-arrow:hover {
  background: rgba(0,0,0,0.8);
  transform: translateY(-1px);
}
.hero-arrow-icon {
  width: 10px;
  height: 10px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}
.hero-arrow-prev .hero-arrow-icon {
  transform: rotate(-135deg);
}
.hero-arrow-next .hero-arrow-icon {
  transform: rotate(45deg);
}
.hero-sound-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.65rem;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  color: #fff;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  z-index: 3;
}
.hero-sound-btn:hover {
  background: rgba(0,0,0,0.75);
  border-color: rgba(255,255,255,0.4);
}
.hero-sound-btn.unmuted {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.hero-discover-wrap {
  text-align: center;
  margin-top: 0.5rem;
}
.hero-sound-icon::before {
  content: '\1F507';
  font-style: normal;
}
.hero-sound-btn.unmuted .hero-sound-icon::before {
  content: '\1F508';
}
.hero-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}
.hero-dot:hover {
  border-color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.25);
}
.hero-dot.active {
  background: var(--color-red);
  border-color: var(--color-red);
  transform: scale(1.2);
}
.hero-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-muted);
}

/* Hero in home: stessi stili di Eventi, niente override da .section o .spotlight-section */
article.home-page {
  width: 100%;
  max-width: none;
}
.home-page > .hero,
.home-page .hero {
  position: relative;
  width: 100%;
  aspect-ratio: 21/9;
  max-height: 75vh;
  min-height: 260px;
  margin-top: 8px;
  overflow: hidden;
  padding: 0;
  animation: none;
}
.home-page .hero-carousel .hero-slides {
  display: flex;
  gap: var(--hero-gap);
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.home-page .hero-carousel .hero-slide {
  flex-shrink: 0;
  height: 100%;
  width: 0;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border-left: 4px solid var(--color-accent);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.home-page .hero-carousel .hero-slide.active {
  box-shadow: 0 0 0 2px var(--color-accent);
  z-index: 2;
}
.home-page .hero-video-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.home-page .hero-video-wrap iframe,
.home-page .hero-video-wrap video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}

/* News grid */
.news-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* Pagina news: layout a due colonne (contenuto + sidebar Post recenti) */
.news-page-section .news-page-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 2rem;
  align-items: start;
}
.news-page-main {
  min-width: 0;
}
.news-single-layout .news-page-main.single-news {
  padding: 2.5rem 1.5rem;
  background: linear-gradient(180deg, rgba(237, 28, 36, 0.04) 0%, transparent 120px);
  border-radius: 0 0 var(--radius) var(--radius);
}
.news-sidebar {
  position: sticky;
  top: 1.5rem;
  padding: 1.25rem;
  background: var(--color-surface-alt, rgba(255,255,255,0.06));
  border-radius: var(--radius);
  border-left: 3px solid var(--color-accent);
}
.news-sidebar-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-accent);
  color: inherit;
}
.news-sidebar-empty {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}
.news-sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.news-sidebar-list li {
  margin-bottom: 0.65rem;
}
.news-sidebar-list li:last-child {
  margin-bottom: 0;
}
.news-sidebar-list a {
  display: block;
  font-size: 0.9rem;
  line-height: 1.35;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
.news-sidebar-list a:hover {
  color: var(--color-accent);
}
.news-sidebar-item-title {
  display: block;
  font-weight: 600;
}
.news-sidebar-item-date {
  display: block;
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-top: 0.15rem;
}
.news-sidebar-list li.current a {
  color: var(--color-accent);
  font-weight: 600;
}
/* Griglia news (pagina lista): card stessa altezza, titolo/data/testo in alto, Leggi tutto in basso */
.news-page-section .news-grid {
  align-items: stretch;
}
.news-page-section .news-grid .news-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.news-page-section .news-grid .news-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.news-page-section .news-grid .news-card-body h3 {
  margin-bottom: 0.5rem;
  min-height: 2.6em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-page-section .news-grid .news-card-body .news-date,
.news-page-section .news-grid .news-card-body p {
  margin-bottom: 0.5rem;
}
.news-page-section .news-grid .news-card-body p:last-of-type {
  margin-bottom: 0;
}
.news-page-section .news-grid .link-read-more {
  margin-top: auto;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .news-page-section .news-page-layout,
  .news-single-layout.news-page-layout {
    grid-template-columns: 1fr;
  }
  .news-sidebar {
    position: static;
  }
}

/* Latest news (home): 1 lead a sinistra (solo immagine+titolo), destra 4 celle piccole + scroll */
.latest-news-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
  align-items: stretch;
  min-height: 280px;
}
.latest-news-lead {
  min-width: 0;
  display: flex;
  align-items: stretch;
}
.latest-news-minis-wrap {
  min-width: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}
.latest-news-minis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  min-width: 0;
  align-content: start;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 3px;
  scroll-behavior: smooth;
}
.latest-news-minis::-webkit-scrollbar {
  width: 4px;
}
.latest-news-minis::-webkit-scrollbar-track {
  background: var(--color-surface-alt);
  border-radius: 2px;
}
.latest-news-minis::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 2px;
}
.latest-news-section .news-card-lead {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  border-left: 3px solid var(--color-accent);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-surface);
}
.latest-news-section .news-card-lead img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.latest-news-section .news-card-lead a:hover img {
  transform: scale(1.02);
}
.latest-news-section .news-card-lead .news-card-body {
  padding: 0.5rem 0.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.latest-news-section .news-card-lead .news-card-body h3 {
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
  line-height: 1.3;
}
.latest-news-section .news-card-lead .news-card-body h3 a:hover {
  color: var(--color-accent);
}
.latest-news-section .news-card-lead .news-card-body p.news-date {
  font-size: 0.7rem;
  margin-bottom: 0.2rem;
}
.latest-news-section .news-card-lead .link-read-more {
  margin-top: auto;
  font-size: 0.75rem;
  color: var(--color-accent);
  font-weight: 600;
}
.latest-news-section .news-card-mini {
  display: flex;
  flex-direction: column;
  min-height: 0;
  border-left: 3px solid var(--color-accent);
  border-radius: 4px;
  overflow: hidden;
  background: var(--color-surface);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.latest-news-section .news-card-mini:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(237, 28, 36, 0.25);
  transform: translateY(-1px);
}
.latest-news-section .news-card-mini img {
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  width: 100%;
}
.latest-news-section .news-card-mini .news-card-body {
  padding: 0.5rem 0.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.latest-news-section .news-card-mini .news-card-body h3 {
  font-size: 0.8rem;
  margin-bottom: 0.15rem;
  line-height: 1.3;
}
.latest-news-section .news-card-mini .news-card-body h3 a:hover {
  color: var(--color-accent);
}
.latest-news-section .news-card-mini .news-card-body p.news-date {
  font-size: 0.7rem;
  margin-bottom: 0.2rem;
}
.latest-news-section .news-card-mini .news-card-body p:not(.news-date) {
  display: none;
}
.latest-news-section .news-card-mini .link-read-more {
  margin-top: auto;
  font-size: 0.75rem;
  color: var(--color-accent);
  font-weight: 600;
}
.latest-news-section .link-read-more:hover {
  text-decoration: underline;
}
.latest-news-all-link {
  margin-top: 1rem;
  text-align: center;
}
.latest-news-all-link a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-accent);
}
.latest-news-all-link a:hover {
  text-decoration: underline;
}
@media (max-width: 900px) {
  .latest-news-layout {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 0;
  }
  .latest-news-lead {
    display: block;
  }
  .latest-news-section .news-card-lead .news-card-lead-img {
    aspect-ratio: 3/4;
    min-height: 0;
  }
  .latest-news-minis-wrap {
    height: auto;
    min-height: 0;
  }
  .latest-news-minis {
    overflow-y: visible;
    max-height: none;
    grid-template-columns: 1fr;
    padding-right: 0;
  }
}

/* Latest news carousel (home) – tenuto per compatibilità se riusato altrove */
.latest-news-section .news-carousel {
  position: relative;
  margin-top: 1.5rem;
}
.news-track-wrapper {
  overflow: hidden;
}
.news-track {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  padding: 0.25rem 0;
}
.news-track .news-card {
  flex: 0 0 min(320px, 80vw);
}

.news-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
.news-arrow[disabled] {
  opacity: 0.35;
  cursor: default;
}
.news-arrow-prev {
  left: -18px;
}
.news-arrow-next {
  right: -18px;
}
@media (max-width: 768px) {
  .news-arrow-prev { left: 4px; }
  .news-arrow-next { right: 4px; }
}
.news-arrow-icon {
  width: 8px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  display: inline-block;
}
.news-arrow-next .news-arrow-icon {
  transform: rotate(-45deg);
}
.news-arrow-prev .news-arrow-icon {
  transform: rotate(135deg);
}
.news-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition);
}
.news-card:hover {
  transform: translateY(-2px);
}
.news-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.news-card-body {
  padding: 1.25rem;
}
.news-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.news-card-body h3 a { color: var(--color-text); }
.news-date {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}
.link-read-more {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-top: 0.5rem;
  display: inline-block;
  transition: opacity 0.2s;
}
.link-read-more:hover {
  opacity: 0.9;
}

/* Spotlight grid */
.spotlight-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* Spotlight carousel (home) */
.spotlight-carousel-section .spotlight-carousel {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.spotlight-carousel-section .spotlight-carousel-wrap {
  flex: 1;
  overflow: hidden;
  min-width: 0;
  max-width: min(100%, calc(3 * 300px + 2 * 1.25rem));
  margin: 0 auto;
}
.spotlight-carousel-section .spotlight-carousel-track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.25rem;
  transition: transform 0.5s ease;
  will-change: transform;
}
.spotlight-carousel-section .spotlight-carousel-item {
  flex-shrink: 0;
  width: 300px;
}
.spotlight-carousel-section .spotlight-carousel-item .spotlight-card-link {
  display: block;
  background: var(--color-surface);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-decoration: none;
  color: inherit;
}
.spotlight-carousel-section .spotlight-carousel-item .spotlight-card-link:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 0 2px rgba(237, 28, 36, 0.3);
}
.spotlight-carousel-section .spotlight-carousel-item img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-left: 4px solid var(--color-accent);
}
.spotlight-carousel-section .spotlight-carousel-item .spotlight-card-link:hover img {
  transform: scale(1.05);
}
.spotlight-carousel-section .spotlight-card-title {
  display: block;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 1.05rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  margin-top: -3rem;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}
.spotlight-carousel-section .spotlight-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1a1a 0%, #252525 50%, #1a1a1a 100%);
  color: rgba(255,255,255,0.5);
  font-size: 2rem;
  font-weight: 700;
}
.spotlight-carousel-section .spotlight-carousel-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  background: var(--color-surface);
  color: var(--color-accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.spotlight-carousel-section .spotlight-carousel-arrow:hover,
.spotlight-carousel-section .spotlight-carousel-arrow:focus {
  background: var(--color-accent);
  color: #fff;
  transform: scale(1.05);
}
.spotlight-carousel-section .spotlight-carousel-arrow-icon {
  display: block;
  width: 12px;
  height: 12px;
  border-style: solid;
  border-color: currentColor;
  border-width: 0 2px 2px 0;
}
.spotlight-carousel-section .spotlight-carousel-prev .spotlight-carousel-arrow-icon {
  margin-left: 4px;
  transform: rotate(135deg);
}
.spotlight-carousel-section .spotlight-carousel-next .spotlight-carousel-arrow-icon {
  margin-right: 4px;
  transform: rotate(-45deg);
}
.spotlight-grid li a {
  display: block;
  background: var(--color-surface);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition);
}
.spotlight-grid li a:hover {
  transform: translateY(-2px);
}
.spotlight-grid img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.spotlight-grid span {
  display: block;
  padding: 1rem;
  color: var(--color-text);
}

/* Our catalogs (home) */
.catalogs-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) {
  .catalogs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .catalogs-grid { grid-template-columns: 1fr; }
}
.catalog-card a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: transform var(--transition);
}
.catalog-card a:hover {
  transform: translateY(-2px);
}
.catalog-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
}
.catalog-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(237, 28, 36, 0.15);
  border-radius: var(--radius);
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}
.catalog-title {
  font-weight: 600;
  color: var(--color-text);
}
.catalog-desc {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: 0.25rem;
}

/* Events list (legacy / single event back link) */
.events-list {
  list-style: none;
}
.event-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.event-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
}
@media (max-width: 600px) {
  .event-card { grid-template-columns: 1fr; }
}

/* Events page (stile Legendary come Home): hero + intro + grid card */
.events-page .events-intro {
  padding: 3rem 0;
  background: linear-gradient(180deg, rgba(237, 28, 36, 0.06) 0%, var(--color-surface) 100%);
}
.events-page .events-intro-title {
  font-size: 1.65rem;
  font-weight: 700;
  padding-bottom: 0.65rem;
  border-bottom: 3px solid var(--color-accent);
  margin-bottom: 1.5rem;
  display: inline-block;
}
.events-page .events-intro-desc {
  color: var(--color-muted);
  max-width: 65ch;
  line-height: 1.65;
}
.events-page .events-list-section {
  padding: 3rem 0 4rem;
  background: linear-gradient(180deg, rgba(237, 28, 36, 0.05) 0%, var(--color-bg) 100%);
}
.events-page .events-empty {
  color: var(--color-muted);
  font-style: italic;
}
.events-page .events-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}
.events-page .events-grid .event-card {
  display: block;
  padding: 0;
  border-bottom: none;
}
.events-page .events-grid .event-card a {
  display: block;
  background: var(--color-surface);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.events-page .events-grid .event-card a:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), 0 0 0 2px rgba(237, 28, 36, 0.25);
  border-color: rgba(237, 28, 36, 0.3);
}
.events-page .event-card-img,
.events-page .event-card-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.events-page .event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.events-page .event-card a:hover .event-card-img img {
  transform: scale(1.05);
}
.events-page .event-card-placeholder {
  background: linear-gradient(135deg, rgba(237, 28, 36, 0.2), rgba(237, 28, 36, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--color-accent);
}
.events-page .event-card-title {
  display: block;
  padding: 1.25rem 1.25rem 0.35rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
}
.events-page .event-card-sub {
  display: block;
  padding: 0 1.25rem 1.25rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}
.events-page .events-catalogs {
  padding: 3rem 0 4rem;
  border-top: 1px solid var(--color-border);
  background: linear-gradient(0deg, rgba(237, 28, 36, 0.04) 0%, transparent 50%);
}
.events-page .events-catalogs .section-title {
  margin-bottom: 1.5rem;
}
.events-page .events-gallery-section {
  padding: 3rem 0 4rem;
  border-top: 1px solid var(--color-border);
  background: linear-gradient(180deg, rgba(237, 28, 36, 0.05) 0%, var(--color-bg) 100%);
}
.events-page .events-gallery-section .section-title {
  margin-bottom: 1.5rem;
}
.events-gallery-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
  margin: 0;
  padding: 0;
}
.events-gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.events-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35), 0 0 0 2px rgba(237, 28, 36, 0.2);
  border-color: rgba(237, 28, 36, 0.3);
}
.events-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.events-gallery-item:hover img {
  transform: scale(1.05);
}

/* TV Catalog */
.catalog-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.catalog-item {
  background: var(--color-surface);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  padding: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.catalog-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35), 0 0 0 2px rgba(237, 28, 36, 0.2);
  border-color: rgba(237, 28, 36, 0.3);
}
.catalog-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.4s ease;
}
.catalog-item:hover img {
  transform: scale(1.03);
}
.catalog-item h3,
.catalog-item p {
  padding: 0 1rem;
}
.catalog-item h3 { font-size: 1rem; margin-top: 0.75rem; margin-bottom: 0.25rem; }
.catalog-item p { font-size: 0.9rem; color: var(--color-muted); margin-top: 0; padding-bottom: 1rem; }

/* Video grid (ads & brand) */
.video-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.video-grid li {
  background: var(--color-surface);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--color-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.video-grid .video-wrap {
  border-left: 4px solid var(--color-accent);
}
.video-grid li:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35), 0 0 0 2px rgba(237, 28, 36, 0.2);
  border-color: rgba(237, 28, 36, 0.3);
}
.video-grid li h3 {
  padding: 1rem 1.25rem;
  font-size: 1.05rem;
  font-weight: 600;
}
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 0;
}
.video-wrap iframe,
.video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Single article */
.single-news .content,
.single-spotlight .content,
.film-content {
  margin-top: 1rem;
  max-width: 72ch;
}
.single-news figure,
.single-event figure,
.single-spotlight figure {
  margin: 1rem 0;
}
.single-news figure img,
.single-event figure img,
.single-spotlight figure img {
  border-left: 4px solid var(--color-accent);
  border-radius: 8px;
}
.single-news .content img,
.single-spotlight .content img {
  border-left: 4px solid var(--color-accent);
  border-radius: 8px;
  margin: 1rem 0;
}
.single-news .meta,
.single-event .meta {
  color: var(--color-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.back { display: inline-block; margin-top: 1.5rem; }

/* Film / Spotlight single (stile Legendary) */
.film-page { padding-bottom: 3rem; }

/* Video boxato con angoli curvi */
.film-hero {
  position: relative;
  width: 100%;
  padding: 2rem 1.5rem 2.5rem;
  background: var(--color-bg);
}
.film-hero-media {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  aspect-ratio: 16/9;
  background: #000;
  border-left: 4px solid var(--color-accent);
}
.film-hero-media img,
.film-hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.film-hero-media iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Bottone play sulle pagine Scopri (spotlight singolo) */
.film-hero-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.95);
  background: rgba(0, 0, 0, 0.5);
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
}
.film-hero-play-icon::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 0 14px 24px;
  border-color: transparent transparent transparent #fff;
  margin-left: 6px;
}

.film-hero-overlay { display: none; }
.film-hero-content { display: none; }
.film-title,
.film-back-link { display: none; }

.film-body { padding-top: 0; padding-bottom: 3rem; }
.film-body-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
}

/* Layout due colonne come Legendary */
.film-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) {
  .film-two-col { grid-template-columns: 1fr; }
}

.film-col-left { }
.film-title-main {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-text);
  margin: 0 0 1.25rem;
  padding-bottom: 0.65rem;
  border-bottom: 3px solid var(--color-accent);
  display: inline-block;
  line-height: 1.2;
}
.film-meta {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.film-meta p { margin-bottom: 0.35rem; }
.film-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.film-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  background: var(--color-surface-alt);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
}
.film-btn:hover { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }
.film-btn-share { cursor: default; }
.film-btn-share-icons { display: inline-flex; gap: 0.5rem; margin-left: 0.35rem; }
.film-btn-share-icons a { color: inherit; opacity: 0.9; text-decoration: none; }
.film-btn-share-icons a:hover { opacity: 1; }

.film-col-right { }
.film-synopsis {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}
.film-synopsis p { margin-bottom: 1rem; }
.film-follow-cta {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin-bottom: 1rem;
}
.film-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.film-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--color-surface-alt);
  color: var(--color-text);
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}
.film-social-links a:hover { background: var(--color-accent); color: #fff; }

.film-subtitle {
  font-size: 1.1rem;
  color: var(--color-muted);
  margin: 0.5rem 0 0;
  line-height: 1.5;
}

/* Spotlight sections (below hero) */
.spotlight-section {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}
.spotlight-section-title {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-text);
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--color-accent);
  display: inline-block;
  line-height: 1.2;
}
.spotlight-section img,
.spotlight-section-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1rem 0;
  display: block;
  border-left: 4px solid var(--color-accent);
}
.spotlight-section-content-body {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  margin-top: 0.5rem;
}
.spotlight-section-content-body p { margin-bottom: 1rem; }
.spotlight-section-desc {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.spotlight-section-links ul,
.spotlight-section-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.spotlight-section-links ul li,
.spotlight-section-links-list li {
  margin-bottom: 0.5rem;
}
.spotlight-section-links ul a,
.spotlight-section-links-list a {
  color: var(--color-accent);
  text-decoration: none;
}
.spotlight-section-links ul a:hover,
.spotlight-section-links-list a:hover {
  text-decoration: underline;
}

.film-content p { margin-bottom: 1rem; }

.film-excerpt {
  font-size: 1.1rem;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
  max-width: 72ch;
}
.film-about-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.btn-back {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.5rem 1rem;
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 600;
}
.btn-back:hover { background: #e02545; color: #fff; }

/* Film page: SHARE e FOLLOW US (stile Legendary) */
.film-share,
.film-follow-social {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}
.film-share-title,
.film-follow-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-muted);
  margin-bottom: 1rem;
}
.film-share-links,
.film-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.film-share-links a,
.film-social-links a {
  color: var(--color-text);
  font-weight: 500;
}
.film-share-links a:hover,
.film-social-links a:hover {
  color: var(--color-accent);
}

/* ========== Chi siamo / About ========== */
.about-hero {
  position: relative;
  padding: 4rem 1.5rem 3rem;
  overflow: hidden;
}
.about-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.1);
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.7), transparent 45%),
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(237, 28, 36, 0.25), transparent 60%),
    var(--color-surface);
  z-index: 1;
  pointer-events: none;
}
.about-hero-content { position: relative; z-index: 2; text-align: center; }
.about-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}
.about-subtitle {
  font-size: 1.1rem;
  color: var(--color-accent);
  letter-spacing: 0.1em;
}
.about-intro { padding-top: 2rem; }
.container-narrow { max-width: 640px; margin: 0 auto; }
.about-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-muted);
  margin-bottom: 2rem;
  text-align: center;
}
.about-team-lead {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.about-catalogs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.about-catalog-pill {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--color-surface);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
}
.about-catalog-pill:hover {
  border-color: var(--color-accent);
  background: rgba(237, 28, 36, 0.08);
  color: var(--color-accent);
  transform: translateY(-2px);
}

/* Team: cerchio rotante con i tre soci */
.about-team { padding: 4rem 1.5rem; }
.about-section-title {
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--color-text);
}
.team-circle-wrap {
  position: relative;
  width: min(620px, 95vw);
  height: min(620px, 95vw);
  margin: 0 auto;
}
.team-circle-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--color-accent);
  border-right-color: var(--color-accent);
  animation: team-ring-spin 12s linear infinite;
  opacity: 0.9;
  box-shadow: 0 0 22px rgba(237, 28, 36, 0.6);
}
.team-circle-ring-2 {
  inset: -22px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: rgba(237, 28, 36, 0.85);
  border-left-color: rgba(237, 28, 36, 0.85);
  animation: team-ring-spin 18s linear infinite;
  animation-direction: reverse;
  opacity: 0.45;
}
.team-circle-ring-3 {
  position: absolute;
  inset: -36px;
  border-radius: 50%;
  border: 2px dashed rgba(237, 28, 36, 0.65);
  animation: team-ring-spin 24s linear infinite;
  animation-direction: alternate;
  opacity: 0.35;
}
@keyframes team-ring-spin {
  to { transform: rotate(360deg); }
}
.team-circle-inner {
  position: absolute;
  inset: 0;
}
.team-circle-item {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 160px;
  margin-left: -80px;
  margin-top: -80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: var(--color-text);
  transform: rotate(var(--angle, 0deg)) translateY(-190px) rotate(calc(-1 * var(--angle, 0deg)));
  transition: transform 0.3s ease, color 0.2s;
}
.team-circle-item:hover {
  color: var(--color-accent);
  z-index: 2;
}
.team-circle-item:hover .team-circle-avatar {
  box-shadow: 0 0 0 3px var(--color-accent);
  transform: scale(1.05);
}
.team-circle-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-surface);
  border: 4px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  transition: box-shadow 0.3s, transform 0.3s;
}
.team-circle-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-circle-initial {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
}
.team-circle-name {
  font-weight: 700;
  font-size: 0.9rem;
  display: block;
}
.team-circle-role {
  font-size: 0.7rem;
  color: var(--color-muted);
  margin-top: 0.15rem;
}

.about-contact { padding-top: 2rem; padding-bottom: 3rem; }
.about-contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  text-align: center;
}
.about-contact-item {
  margin: 0;
}
.about-contact-item a { color: var(--color-accent); }
.about-contact-item a:hover { text-decoration: underline; }

/* Team single (about/matteo-catelli) */
.team-single-page { padding: 3rem 1.5rem 4rem; }
.team-single-inner {
  max-width: 960px;
  margin: 0 auto;
  background: #ffffff;
  color: #000000;
  border-radius: 8px;
  padding: 2.5rem 2rem 2.75rem;
  box-shadow: 0 18px 45px rgba(0,0,0,0.6);
}
.team-single-header {
  display: grid;
  grid-template-columns: minmax(0, 2fr) 220px;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
}
.team-single-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  background: #f5f5f5;
  flex-shrink: 0;
}
.team-single-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-single-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-accent);
}
.team-single-name { font-size: 2rem; margin-bottom: 0.25rem; }
.team-single-role { color: #555555; font-size: 1rem; margin: 0; }
.team-single-bio,
.team-single-contact { margin-top: 2rem; }
.team-single-bio h2,
.team-single-contact h2 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  color: #000000;
}
.team-single-bio .content { color: #444444; line-height: 1.7; }
.team-single-contact a { color: var(--color-accent); }

@media (max-width: 768px) {
  .team-single-inner {
    padding: 1.75rem 1.25rem 2.25rem;
  }
  .team-single-header {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .team-single-photo {
    margin: 0 auto;
  }
  .team-single-bio,
  .team-single-contact {
    text-align: left;
  }
}

/* Footer (stile Legendary: social, legal, copyright) */
.site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 3rem 1.5rem 2rem;
  margin-top: 3rem;
  color: var(--color-muted);
  font-size: 0.9rem;
}
.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.footer-logo {
  display: inline-block;
  margin-bottom: 1.5rem;
  transition: opacity 0.2s;
}
.footer-logo:hover {
  opacity: 0.9;
}
.footer-logo img {
  height: 48px;
  width: auto;
  display: block;
}
.footer-brand {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 52em;
  margin: 0 auto 1.5rem;
}
.footer-social-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
}
.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  margin-bottom: 1.5rem;
}
.footer-social-links a {
  color: var(--color-muted);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.footer-social-links a:hover {
  color: var(--color-accent);
}
.footer-social-links svg {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}
.footer-legal a {
  color: var(--color-muted);
}
.footer-legal a:hover { color: var(--color-accent); }
.footer-text {
  font-size: 0.8rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}
.footer-contacts a {
  color: var(--color-accent);
}
.footer-contacts a:hover { text-decoration: underline; }
.footer-credit {
  margin-top: 1rem;
  font-size: 0.75rem;
  opacity: 0.8;
}
.footer-credit a {
  color: var(--color-muted);
}
.footer-credit a:hover {
  color: var(--color-accent);
}

/* 404 */
.error-404 {
  padding: 4rem 1.5rem;
  text-align: center;
}
.error-404 h1 { font-size: 3rem; color: var(--color-muted); }

/* ========== Catalogo ========== */
.catalogo-main {
  padding: 3rem 1.5rem 4rem;
}
.catalogo-main-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.catalogo-main-intro {
  color: var(--color-muted);
  margin-bottom: 2.5rem;
  max-width: 42ch;
}
.catalogo-categories-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}
.catalogo-main-grid {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.catalogo-category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 1.5rem;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1.05rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: border-color var(--transition), background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.catalogo-category-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  margin: -0.5rem -0.5rem 0.5rem;
}
.catalogo-category-card .catalog-title {
  margin-top: 0.25rem;
}
.catalogo-category-card .catalog-placeholder {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin-bottom: 0.25rem;
}
.catalogo-category-card:hover {
  border-color: var(--color-accent);
  background: rgba(237, 28, 36, 0.08);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35), 0 0 0 2px rgba(237, 28, 36, 0.2);
}

/* TV/Film category page */
.catalogo-tv-desc {
  padding: 2.5rem 1.5rem;
  background: var(--color-surface);
}
.catalogo-tv-desc-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.catalogo-tv-desc-text {
  color: var(--color-muted);
  max-width: 65ch;
  line-height: 1.65;
}
/* Switch Distribution / Production */
.catalogo-switch-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.catalogo-switch {
  display: inline-flex;
  position: relative;
  background: var(--color-surface-alt);
  border-radius: 999px;
  padding: 4px;
  border: 1px solid var(--color-border);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
  transition: box-shadow 300ms ease, border-color 300ms ease;
}
.catalogo-switch:hover {
  border-color: rgba(237, 28, 36, 0.3);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.3), 0 0 20px rgba(237, 28, 36, 0.1);
}
.catalogo-switch-btn {
  position: relative;
  z-index: 1;
  padding: 0.75rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-muted);
  border-radius: 999px;
  transition: color 300ms ease;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}
.catalogo-switch-btn:hover {
  color: var(--color-text);
}
.catalogo-switch-btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
.catalogo-switch-btn.active {
  color: #fff;
}
.catalogo-switch-indicator {
  position: absolute;
  top: 4px;
  bottom: 4px;
  width: calc(50% - 6px);
  left: 5px;
  background: linear-gradient(135deg, var(--color-accent) 0%, #c91820 100%);
  border-radius: 999px;
  transition: left 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 2px 8px rgba(237, 28, 36, 0.4);
}
.catalogo-switch-btn:nth-child(2).active ~ .catalogo-switch-indicator {
  left: calc(50% + 1px);
}
.catalogo-section-block {
  margin-bottom: 0;
  display: none;
}
.catalogo-section-block.active {
  display: block;
  animation: section-fade-in 0.4s ease both;
}
@keyframes section-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.catalogo-tv-posters {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.25rem;
  list-style: none;
}
@media (min-width: 640px) {
  .catalogo-tv-posters {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.75rem;
  }
}
@media (min-width: 1024px) {
  .catalogo-tv-posters {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
  }
}
.catalogo-tv-poster {
  display: block;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-surface-alt);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 350ms cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 350ms ease;
  animation: poster-fade-in 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation-delay: calc(var(--stagger, 0) * 40ms);
}
@keyframes poster-fade-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.catalogo-tv-poster:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(237, 28, 36, 0.3);
}
.catalogo-tv-poster-img-wrap {
  display: block;
  position: relative;
  overflow: hidden;
}
.catalogo-tv-poster::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 350ms ease;
  pointer-events: none;
}
.catalogo-tv-poster:hover::after {
  opacity: 1;
}
.catalogo-tv-poster-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 350ms cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 350ms ease;
  z-index: 1;
}
.catalogo-tv-poster:hover .catalogo-tv-poster-title {
  transform: translateY(0);
  opacity: 1;
}
.catalogo-tv-poster img {
  width: 100%;
  height: auto;
  min-height: 260px;
  object-fit: contain;
  object-position: center;
  aspect-ratio: 2/3;
  transition: transform 450ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.catalogo-tv-poster:hover img {
  transform: scale(1.08);
}
.catalogo-tv-empty {
  color: var(--color-muted);
  font-style: italic;
}
.catalogo-tv-categories {
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

/* Catalogo item detail (pagina dedicata locandina) */
.catalogo-item-page {
  padding: 2rem 0 4rem;
}
.catalogo-item-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}
.catalogo-item-animate .catalogo-back {
  animation: item-fade-up 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.catalogo-item-animate .catalogo-item-figure {
  animation: item-fade-scale 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s both;
}
@keyframes item-fade-scale {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.catalogo-item-animate .catalogo-item-title {
  animation: item-fade-up 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}
.catalogo-item-animate .catalogo-item-desc,
.catalogo-item-animate .catalogo-item-link {
  animation: item-fade-up 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}
@keyframes item-fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.catalogo-back {
  display: inline-block;
  margin-bottom: 2rem;
  color: var(--color-muted);
  font-size: 0.9rem;
  transition: color var(--transition), transform var(--transition);
}
.catalogo-back:hover {
  color: var(--color-accent);
  transform: translateX(-4px);
}
.catalogo-item-detail {
  text-align: center;
}
.catalogo-item-figure {
  margin: 0 0 2rem;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-surface-alt);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}
.catalogo-item-img {
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 400ms ease;
}
.catalogo-item-figure:hover .catalogo-item-img {
  transform: scale(1.02);
}
.catalogo-item-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.catalogo-item-desc {
  color: var(--color-muted);
  max-width: 55ch;
  margin: 0 auto 1rem;
  text-align: left;
}
.catalogo-item-link {
  font-weight: 600;
}

/* Fade-in on scroll (minimal) */
.section {
  animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ========== Stile Legendary (tutte le pagine) ========== */
body .section-title {
  font-size: 1.65rem;
  font-weight: 700;
  padding-bottom: 0.65rem;
  border-bottom: 3px solid var(--color-accent);
  margin-bottom: 2rem;
  display: inline-block;
}
body .about-section-title {
  padding-bottom: 0.65rem;
  border-bottom: 3px solid var(--color-accent);
  margin-bottom: 2rem;
}
body .section {
  padding: 3rem 0;
}
body .section:has(.section-title),
body .section:has(.about-section-title) {
  background: linear-gradient(180deg, rgba(237, 28, 36, 0.05) 0%, var(--color-bg) 100%);
}

/* Latest news (home) */
body .latest-news-section {
  background: linear-gradient(180deg, rgba(237, 28, 36, 0.06) 0%, var(--color-bg) 100%);
  padding: 3rem 0 4rem;
}
body .latest-news-section .news-carousel {
  margin-top: 0.5rem;
}
body .news-track .news-card,
body .news-grid .news-card {
  background: var(--color-surface);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  border-left: 4px solid var(--color-accent);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
body .news-track .news-card {
  flex: 0 0 min(360px, 85vw);
}
body .news-track .news-card:hover,
body .news-grid .news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(237, 28, 36, 0.2);
}
body .news-track {
  gap: 1.75rem;
}
body .news-card-body {
  padding: 1.5rem;
}
body .news-card-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
}
body .news-card-body h3 a:hover {
  color: var(--color-accent);
}
body .news-arrow {
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.85);
  border-color: rgba(237, 28, 36, 0.5);
}
body .news-arrow:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

/* Spotlight (home + pagina Spotlight) */
body .spotlight-section,
body .section:has(.spotlight-grid) {
  background: var(--color-surface);
  padding: 3.5rem 0 4rem;
}
body .spotlight-grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
body .spotlight-grid li a {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
  border-left: 4px solid var(--color-accent);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
body .spotlight-grid li a:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 0 2px rgba(237, 28, 36, 0.3);
}
body .spotlight-grid img {
  aspect-ratio: 16/9;
  transition: transform 0.5s ease;
}
body .spotlight-grid li a:hover img {
  transform: scale(1.05);
}
body .spotlight-grid span.spotlight-card-title,
body .spotlight-grid .spotlight-card-link > span:last-child {
  position: relative;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 1.05rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  margin-top: -3rem;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}
body .spotlight-grid span.spotlight-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1a1a 0%, #252525 50%, #1a1a1a 100%);
  color: rgba(255,255,255,0.5);
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  padding: 0;
  min-height: 120px;
}
body .spotlight-grid li a.spotlight-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* Cataloghi (home, eventi, catalogo) */
body .catalogs-section,
body .events-catalogs,
body .catalogo-main {
  padding: 3rem 0 4rem;
  background: linear-gradient(0deg, rgba(237, 28, 36, 0.04) 0%, transparent 50%);
}
body .catalog-card a {
  border-radius: 10px;
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
body .catalog-card a:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35), 0 0 0 2px rgba(237, 28, 36, 0.25);
  border-color: rgba(237, 28, 36, 0.4);
}
body .catalog-title {
  font-weight: 700;
  font-size: 1.05rem;
}

/* Pagina News: titolo H1 in stile section-title */
body .section > .container > h1:first-child {
  font-size: 1.65rem;
  font-weight: 700;
  padding-bottom: 0.65rem;
  border-bottom: 3px solid var(--color-accent);
  margin-bottom: 2rem;
  display: inline-block;
}

/* News grid (listing): stessa gap e layout */
body .news-grid {
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

/* Pagine singole (articolo, evento): container con stesso feeling */
body .container.single-news,
body .container.single-event,
body .team-single-inner {
  padding: 2.5rem 1.5rem;
  background: linear-gradient(180deg, rgba(237, 28, 36, 0.04) 0%, transparent 120px);
  border-radius: 0 0 var(--radius) var(--radius);
}
body .single-news h1,
body .single-event h1 {
  font-size: 1.65rem;
  font-weight: 700;
  padding-bottom: 0.65rem;
  border-bottom: 3px solid var(--color-accent);
  margin-bottom: 1.5rem;
  display: inline-block;
}
body .film-title-main,
body .spotlight-section-title {
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--color-accent);
  display: inline-block;
}
body .single-news figure img,
body .single-event figure img,
body .single-spotlight figure img,
body .spotlight-section img,
body .spotlight-section-img,
body .single-news .content img,
body .single-spotlight .content img {
  border-left: 4px solid var(--color-accent);
}
body .back,
body .btn-back {
  color: #fff !important;
  background: var(--color-accent);
  font-weight: 600;
  transition: opacity 0.2s;
}
body .back:hover,
body .btn-back:hover {
  opacity: 0.9;
  color: #fff !important;
}

/* Spotlight/Film: pulsanti sempre leggibili (testo bianco su rosso) */
body .film-btn,
body a.film-btn {
  color: #fff !important;
  background: var(--color-accent);
  border-color: var(--color-accent);
}
body .film-btn:hover,
body a.film-btn:hover {
  background: #c91820;
  color: #fff !important;
  border-color: #c91820;
}
body .film-btn-share .film-btn-share-icons a {
  color: #fff !important;
}

/* Ads & Brand page (hero + intro + spotlight + catalogs + scrivici) */
.ads-brand-page .ads-brand-intro {
  padding: 3rem 0;
  background: linear-gradient(180deg, rgba(237, 28, 36, 0.06) 0%, var(--color-surface) 100%);
}
.ads-brand-page .ads-brand-intro-title {
  font-size: 1.65rem;
  font-weight: 700;
  padding-bottom: 0.65rem;
  border-bottom: 3px solid var(--color-accent);
  margin-bottom: 1.5rem;
  display: inline-block;
}
.ads-brand-page .ads-brand-intro-desc {
  color: var(--color-muted);
  max-width: 65ch;
  line-height: 1.65;
}
.ads-brand-page .ads-brand-spotlight {
  padding: 3rem 0 4rem;
  background: linear-gradient(180deg, rgba(237, 28, 36, 0.05) 0%, var(--color-bg) 100%);
}
.ads-brand-page .ads-brand-video-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.ads-brand-page .ads-brand-video-card {
  background: var(--color-surface);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--color-border);
  padding-bottom: 1rem;
}
.ads-brand-page .ads-brand-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-left: 4px solid var(--color-accent);
}
.ads-brand-page .ads-brand-video-wrap iframe,
.ads-brand-page .ads-brand-video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ads-brand-page .ads-brand-video-title {
  padding: 1rem 1.25rem 0.25rem;
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
}
.ads-brand-page .ads-brand-video-title a {
  color: inherit;
  text-decoration: none;
}
.ads-brand-page .ads-brand-video-title a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}
.ads-brand-page .ads-brand-video-sub {
  display: block;
  padding: 0 1.25rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}
.ads-brand-page .ads-brand-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.75rem;
  padding: 0 1.25rem;
}
.ads-brand-page .ads-brand-watch-btn {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-accent);
}
.ads-brand-page .ads-brand-watch-btn:hover {
  text-decoration: underline;
}
.ads-brand-page .ads-brand-discover-btn {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: underline;
}
.ads-brand-page .ads-brand-discover-btn:hover {
  opacity: 0.85;
}
.ads-brand-page .ads-brand-catalogs {
  padding: 3rem 0 4rem;
}
.ads-brand-page .ads-brand-collab {
  padding: 3rem 0 4rem;
  background: linear-gradient(180deg, rgba(237, 28, 36, 0.06) 0%, var(--color-surface) 100%);
  text-align: center;
}
.ads-brand-page .ads-brand-collab-title {
  font-size: 1.65rem;
  font-weight: 700;
  padding-bottom: 0.65rem;
  border-bottom: 3px solid var(--color-accent);
  margin-bottom: 1rem;
  display: inline-block;
}
.ads-brand-page .ads-brand-collab-text {
  color: var(--color-muted);
  max-width: 55ch;
  margin: 0 auto 1.5rem;
  line-height: 1.65;
}
.ads-brand-page .ads-brand-collab-cta {
  margin: 0;
}
.ads-brand-page .ads-brand-collab-cta .btn {
  padding: 0.65rem 1.5rem;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}
.ads-brand-page .ads-brand-collab-cta .btn:hover {
  filter: brightness(1.1);
}
.ads-brand-page .section-title {
  font-size: 1.65rem;
  font-weight: 700;
  padding-bottom: 0.65rem;
  border-bottom: 3px solid var(--color-accent);
  margin-bottom: 2rem;
  display: inline-block;
}

/* Ads & Brand (legacy), Contact, 404: sezioni con stesso stile */
body .ads-brand .section-title,
body .contact-page h1,
body .error-404 h1 {
  font-size: 1.65rem;
  font-weight: 700;
  padding-bottom: 0.65rem;
  border-bottom: 3px solid var(--color-accent);
  margin-bottom: 2rem;
  display: inline-block;
}

/* Social page */
.social-page .social-carousel-section {
  padding: 3rem 0 2rem;
  padding-left: 1.5rem;
  background: linear-gradient(180deg, rgba(237, 28, 36, 0.06) 0%, var(--color-bg) 100%);
  border-left: 4px solid var(--color-accent);
  margin-left: 0;
}
.social-page .social-carousel-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.social-page .social-carousel-title {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
  margin-bottom: 1.25rem;
  padding-left: 0.5rem;
}
.social-page .social-carousel-viewport {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.social-page .social-carousel-wrap {
  width: 100%;
  max-width: min(100%, calc(4 * 260px + 3 * 1rem));
  margin: 0 auto;
  overflow: hidden;
}
.social-page .social-carousel-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.5s ease;
  will-change: transform;
}
.social-page .social-carousel-item {
  flex-shrink: 0;
  width: 260px;
}
.social-page .social-carousel-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  background: var(--color-surface);
  color: var(--color-accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.social-page .social-carousel-arrow:hover,
.social-page .social-carousel-arrow:focus {
  background: var(--color-accent);
  color: #fff;
  transform: scale(1.05);
}
.social-page .social-carousel-arrow:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
.social-page .social-carousel-arrow-icon {
  display: block;
  width: 12px;
  height: 12px;
  border-style: solid;
  border-color: currentColor;
  border-width: 0 2px 2px 0;
}
.social-page .social-carousel-prev .social-carousel-arrow-icon {
  margin-left: 4px;
  transform: rotate(135deg);
}
.social-page .social-carousel-next .social-carousel-arrow-icon {
  margin-right: 4px;
  transform: rotate(-45deg);
}
.social-page .social-vertical-frame {
  position: relative;
  width: 100%;
  padding-bottom: 177.78%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  border-left: 4px solid var(--color-accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.social-page .social-vertical-frame iframe,
.social-page .social-vertical-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.social-page .social-carousel-item-instagram .social-vertical-frame {
  min-height: 400px;
  padding-bottom: 0;
  height: auto;
}
.social-page .social-instagram-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  min-height: 400px;
  position: relative;
}
.social-page .social-instagram-wrap .instagram-media {
  margin: 0 !important;
  min-width: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}
.social-page .social-instagram-wrap iframe {
  max-width: 100%;
  width: 100% !important;
  min-height: 400px;
}
.social-page .social-intro {
  padding: 3rem 0;
}
.social-page .social-page-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border-bottom: 3px solid var(--color-accent);
  padding-bottom: 0.5rem;
  display: inline-block;
}
.social-page .social-intro-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text);
}
.social-page .social-collaborators {
  padding: 3rem 0 4rem;
  background: var(--color-surface);
}
.social-page .social-collab-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
}
.social-page .social-collab-card {
  margin: 0;
}
.social-page .social-collab-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--color-bg);
  border-radius: 10px;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.social-page .social-collab-link:hover {
  border-color: var(--color-accent);
  background: rgba(237, 28, 36, 0.06);
  color: var(--color-text);
}
.social-page .social-collab-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(45deg, #f09433, #e1306c, #fd1d1d);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}
.social-page .social-collab-card:has([href*="tiktok"]) .social-collab-icon {
  background: #000;
  color: #fff;
}
.social-page .social-collab-name {
  font-weight: 600;
  font-size: 1rem;
}
.social-page .social-cta {
  padding: 3rem 0 4rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(237, 28, 36, 0.06) 0%, var(--color-surface) 100%);
}
.social-page .social-cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.social-page .social-cta-text {
  color: var(--color-muted);
  margin-bottom: 1.5rem;
  max-width: 36em;
  margin-left: auto;
  margin-right: auto;
}
.social-page .social-cta-btn-wrap .btn:hover {
  filter: brightness(1.1);
}
