/* ==========================================================================
   BODIO ACADEMY ASD - EDITORIAL CLUB STYLESHEET
   Inspired by premium European club identity & sports editorial design.
   ========================================================================== */

/* --- Design Tokens --- */
:root {
  /* Brand Colors */
  --color-primary: #10b981;
  --color-primary-dark: #059669;
  --color-primary-glow: rgba(16, 185, 129, 0.2);
  --color-primary-light: #ecfdf5;

  --color-accent: #f59e0b;

  /* Surfaces */
  --bg-dark: #080d1a;
  --bg-dark-surface: #0f172a;
  --bg-dark-elevated: #1e293b;
  --bg-light: #ffffff;
  --bg-light-alt: #f8fafc;
  --bg-light-subtle: #f1f5f9;

  /* Typography Colors */
  --text-white: #ffffff;
  --text-white-muted: #94a3b8;
  --text-white-subtle: #64748b;
  --text-dark: #0f172a;
  --text-dark-muted: #475569;
  --text-dark-subtle: #94a3b8;

  /* Borders */
  --border-dark: rgba(255, 255, 255, 0.08);
  --border-light: rgba(0, 0, 0, 0.08);

  /* Fonts */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Radius & Shadows */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  --transition: 0.25s ease-in-out;
  --container-max: 1280px;
}

/* --- Global Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ==========================================================================
   TOP BAR & NAVIGATION
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color var(--transition), backdrop-filter var(--transition);
}

.site-header.scrolled {
  background-color: rgba(8, 13, 26, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dark);
}

/* Top Announcement */
.top-bar {
  background-color: rgba(6, 10, 20, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.4rem 0;
  font-size: 0.8rem;
  transition: all var(--transition);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.badge-novita {
  background-color: var(--color-primary);
  color: #080d1a;
  font-weight: 800;
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.top-bar-text {
  color: #cbd5e1;
  font-weight: 500;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--text-white-muted);
}

.top-bar-right a:hover {
  color: var(--text-white);
}

/* Nav Bar */
.nav-bar {
  padding: 0.85rem 0;
  transition: padding var(--transition);
}

.site-header.scrolled .nav-bar {
  padding: 0.6rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-crest {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.brand-names {
  display: flex;
  flex-direction: column;
}

.brand-main {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #ffffff;
  line-height: 1;
}

.brand-sub {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.12em;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #cbd5e1;
  position: relative;
  padding: 0.3rem 0;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.search-btn {
  color: #cbd5e1;
  padding: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition);
}

.search-btn:hover {
  color: #ffffff;
}

.mobile-toggle {
  display: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: #ffffff;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #ffffff;
  transition: all var(--transition);
}

/* ==========================================================================
   HERO SECTION (CINEMATIC FULL-BLEED)
   ========================================================================== */
.hero-editorial {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: 5rem;
  background: #080d1a;
  overflow: hidden;
}

.hero-bg-container {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 13, 26, 0.95) 0%, rgba(8, 13, 26, 0.8) 40%, rgba(8, 13, 26, 0.35) 75%, rgba(8, 13, 26, 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.hero-tagline::after {
  content: '';
  width: 48px;
  height: 2px;
  background-color: var(--color-primary);
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6.5vw, 5.25rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.75rem;
}

.hero-description {
  font-size: 1.15rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.btn-primary-club {
  background-color: var(--color-primary);
  color: #080d1a;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.9rem 1.85rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: all var(--transition);
}

.btn-primary-club:hover {
  background-color: #34d399;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--color-primary-glow);
}

.btn-ghost-club {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.9rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}

.btn-ghost-club:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

/* FIGC Floating Badge in Hero */
.hero-figc-badge {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(8, 13, 26, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.figc-crest-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.figc-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.figc-title {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  line-height: 1.1;
}

.figc-sub {
  font-size: 0.72rem;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   SECTION: "NON È SOLO CALCIO" (LIGHT EDITORIAL)
   ========================================================================== */
.section-values {
  background-color: var(--bg-light);
  color: var(--text-dark);
  padding: 6.5rem 0;
}

.values-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.values-tag {
  color: var(--color-primary-dark);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

.values-title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text-dark);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.values-subtitle {
  font-size: 1.15rem;
  color: var(--text-dark-muted);
  line-height: 1.5;
  margin-bottom: 3rem;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.value-item {
  display: flex;
  gap: 1.25rem;
}

.value-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background-color: var(--color-primary-light);
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-content h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.value-content p {
  font-size: 0.95rem;
  color: var(--text-dark-muted);
  line-height: 1.5;
}

/* Values Photo Collage */
.values-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 1rem;
}

.collage-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.collage-item:hover img {
  transform: scale(1.04);
}

.collage-item.tall {
  grid-row: 1 / span 2;
  height: 100%;
}

/* ==========================================================================
   SECTION: MATCH CENTER STRIP (WEEKEND SLIDESHOW / CAROUSEL)
   ========================================================================== */
.section-match-center {
  position: relative;
  padding: 6.5rem 0 6.5rem;
  background-color: #030705;
  overflow: hidden;
  border-top: 1px solid rgba(16, 185, 129, 0.2);
  border-bottom: 1px solid rgba(16, 185, 129, 0.2);
  scroll-margin-top: 80px;
}

/* Dynamic Neon Speed Lines matching the mockup */
.section-match-center::before {
  content: '';
  position: absolute;
  top: 18%;
  left: -8%;
  width: 440px;
  height: 8px;
  background: linear-gradient(90deg, transparent, #10b981, #34d399, transparent);
  transform: rotate(-35deg);
  filter: blur(2px);
  box-shadow: 0 0 25px #10b981, 0 0 45px rgba(16, 185, 129, 0.4);
  opacity: 0.75;
  pointer-events: none;
  z-index: 2;
}

.section-match-center::after {
  content: '';
  position: absolute;
  bottom: 15%;
  right: -8%;
  width: 480px;
  height: 9px;
  background: linear-gradient(90deg, transparent, #10b981, #34d399, transparent);
  transform: rotate(-35deg);
  filter: blur(2px);
  box-shadow: 0 0 28px #10b981, 0 0 50px rgba(16, 185, 129, 0.45);
  opacity: 0.8;
  pointer-events: none;
  z-index: 2;
}

.match-center-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.match-center-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 75%;
  filter: brightness(0.68) contrast(1.15) saturate(1.2);
}

.match-center-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(3, 10, 7, 0.4) 0%, rgba(2, 6, 4, 0.75) 100%);
}

.match-center-header {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.match-center-badge-live {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.76rem;
  font-weight: 800;
  color: #10b981;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  margin-bottom: 0.6rem;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.15);
}

.match-center-badge-live::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #10b981;
  box-shadow: 0 0 10px #10b981, 0 0 4px #34d399;
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
}

.match-center-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0;
}

.btn-app-external {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition);
}

.btn-app-external:hover {
  background: rgba(16, 185, 129, 0.15);
  border-color: #10b981;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
  transform: translateY(-1px);
}

/* Slider Outer Wrapper */
.match-slider-wrapper {
  position: relative;
  z-index: 3;
  max-width: 960px;
  margin: 0 auto;
}

.match-slider-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 280px;
}

.match-slides-track {
  display: flex;
  width: 100%;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.3, 1);
  will-change: transform;
}

.match-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Glassmorphism Card Inner */
.match-card-inner {
  position: relative;
  border-radius: 18px;
  background: rgba(10, 22, 17, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 1.85rem 2.25rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  background-image: radial-gradient(ellipse at 50% 0%, rgba(16, 185, 129, 0.1) 0%, transparent 65%);
}

/* Top Meta Row in Slide */
.match-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.match-card-top-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.mc-cat-badge {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.4rem 0.95rem;
  border-radius: 8px;
}

.mc-loc-badge {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.mc-loc-badge.home {
  background: #065f46;
  border: 1px solid #10b981;
  color: #ffffff;
}

.mc-loc-badge.away {
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid #f59e0b;
  color: #fbbf24;
}

.mc-date-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #f8fafc;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 0.4rem 0.95rem;
  border-radius: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

/* Matchup Teams Row */
.mc-matchup-stage {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.75rem;
  margin-bottom: 2.25rem;
}

.mc-team-zone {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.mc-team-zone.home {
  justify-content: flex-end;
  text-align: right;
}

.mc-team-zone.away {
  justify-content: flex-start;
  text-align: left;
}

.mc-team-name {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.3vw, 1.65rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.mc-crest-box {
  width: 66px;
  height: 66px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 5px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}

.mc-crest-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mc-vs-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #064e3b;
  border: 1.5px solid #10b981;
  color: #34d399;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(16, 185, 129, 0.35);
  flex-shrink: 0;
}

/* Bottom Match Info Bar */
.mc-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 0.85rem 1.4rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.mc-info-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  flex: 1;
}

.mc-info-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
}

.mc-info-label {
  color: #10b981;
  font-weight: 800;
}

.mc-info-val {
  color: #ffffff;
  font-weight: 700;
}

.mc-info-divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.18);
}

.mc-venue-item {
  color: #cbd5e1;
}

.mc-btn-svg-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: #10b981;
}

.mc-loc-svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

.mc-date-svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: #10b981;
  display: inline-block;
  vertical-align: middle;
}

.mc-info-svg-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  display: block;
}

.mc-map-svg-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: #10b981;
  stroke: #10b981;
}

.mc-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid #10b981;
  color: #34d399;
  padding: 0.5rem 1.15rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all var(--transition);
}

.mc-map-btn:hover {
  background: #10b981;
  color: #080d1a;
  box-shadow: 0 0 14px rgba(16, 185, 129, 0.4);
}

/* Slider Navigation Controls matching the exact mockup layout */
.slider-nav-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding: 0 0.5rem;
}

.slider-arrow-group {
  display: flex;
  gap: 0.6rem;
}

.slider-arrow-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all var(--transition);
}

.slider-arrow-btn:hover {
  background: var(--color-primary);
  color: #080d1a;
  border-color: var(--color-primary);
  box-shadow: 0 0 16px rgba(16, 185, 129, 0.4);
}

.slider-counter-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.slider-indicator-bar {
  display: inline-block;
  width: 38px;
  height: 4px;
  border-radius: 2px;
  background: #10b981;
  box-shadow: 0 0 12px #10b981;
}

.slider-counter-text {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  color: #cbd5e1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.slider-dots-group {
  display: none; /* Hidden to match mockup where the green line & text counter are used */
}

@media (max-width: 768px) {
  .section-match-center {
    padding: 3.75rem 0 4.5rem;
  }

  .match-center-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .match-center-title {
    font-size: 1.85rem;
  }

  .btn-app-external {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }

  .match-card-inner {
    padding: 1.35rem 1.15rem;
    border-radius: 16px;
  }

  .match-card-top {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    margin-bottom: 1.5rem;
  }

  .match-card-top-left {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .mc-cat-badge, .mc-loc-badge {
    font-size: 0.72rem;
    padding: 0.35rem 0.65rem;
  }

  .mc-date-badge {
    width: 100%;
    justify-content: center;
    font-size: 0.78rem;
    padding: 0.45rem 0.75rem;
  }

  /* Matchup Stage on Mobile: Logos row 1, Names row 2 */
  .mc-matchup-stage {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-areas:
      "crest-home vs crest-away"
      "name-home . name-away";
    align-items: center;
    gap: 0.65rem 0.75rem;
    margin-bottom: 1.75rem;
    text-align: center;
  }

  .mc-team-zone.home {
    display: contents;
  }

  .mc-team-zone.away {
    display: contents;
  }

  .mc-team-zone.home .mc-crest-box {
    grid-area: crest-home;
    justify-self: center;
    width: 56px;
    height: 56px;
  }

  .mc-vs-circle {
    grid-area: vs;
    justify-self: center;
    width: 36px;
    height: 36px;
    font-size: 0.82rem;
  }

  .mc-team-zone.away .mc-crest-box {
    grid-area: crest-away;
    justify-self: center;
    width: 56px;
    height: 56px;
  }

  .mc-team-zone.home .mc-team-name {
    grid-area: name-home;
    font-size: 1.05rem;
    text-align: center;
    justify-self: center;
    line-height: 1.25;
    margin-top: 0.2rem;
  }

  .mc-team-zone.away .mc-team-name {
    grid-area: name-away;
    font-size: 1.05rem;
    text-align: center;
    justify-self: center;
    line-height: 1.25;
    margin-top: 0.2rem;
  }

  /* Bottom Bar on Mobile: Vertical Stack */
  .mc-bottom-bar {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.15rem;
    gap: 0.85rem;
  }

  .mc-info-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    width: 100%;
  }

  .mc-info-divider {
    display: none;
  }

  .mc-info-item {
    font-size: 0.85rem;
    width: 100%;
  }

  .mc-map-btn {
    width: 100%;
    justify-content: center;
    padding: 0.65rem 1rem;
    margin-top: 0.35rem;
  }

  .slider-nav-controls {
    flex-direction: column-reverse;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1.25rem;
  }

  .slider-arrow-group {
    justify-content: center;
  }

  .slider-counter-box {
    justify-content: center;
  }
}

/* ==========================================================================
   SECTION: "IL BODIO / NATI QUI. CRESCIUTI QUI." (LIGHT EDITORIAL)
   ========================================================================== */
.section-il-bodio {
  background-color: var(--bg-light-subtle);
  color: var(--text-dark);
  padding: 6.5rem 0;
}

.il-bodio-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4.5rem;
  align-items: center;
}

.numeral-heading {
  font-family: var(--font-heading);
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--color-primary-dark);
  margin-bottom: 0.5rem;
}

.il-bodio-tag {
  color: var(--color-primary-dark);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}

.il-bodio-title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 3.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.il-bodio-text {
  font-size: 1.05rem;
  color: var(--text-dark-muted);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.club-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.stat-unit {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-tag {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn-dark-club {
  background-color: var(--text-dark);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.85rem 1.65rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--transition);
}

.btn-dark-club:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
}

.il-bodio-image {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  height: 440px;
}

.il-bodio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   SECTION: "LE NOSTRE SQUADRE / TUTTE LE CATEGORIE" (DARK EDITORIAL)
   ========================================================================== */
.section-squadre-editorial {
  background-color: var(--bg-dark);
  padding: 6.5rem 0;
  border-top: 1px solid var(--border-dark);
}

.squadre-header {
  margin-bottom: 2.5rem;
}

.squadre-tag {
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}

.squadre-title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #ffffff;
}

/* Sector Filter Pills */
.squadre-sector-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.squadre-sector-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--transition);
}

.squadre-sector-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
}

.squadre-sector-btn.active {
  background: var(--color-primary);
  color: #080d1a;
  border-color: var(--color-primary);
  box-shadow: 0 4px 14px var(--color-primary-glow);
}

.category-sector-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 0 0.5rem 0;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-bottom: 2px solid rgba(16, 185, 129, 0.25);
  margin-top: 1rem;
}

.category-sector-divider.agonistica {
  color: #60a5fa;
  border-bottom-color: rgba(96, 165, 250, 0.25);
}

.badge-sector-pill {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.15rem 0.45rem;
  border-radius: 3px;
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* ==========================================================================
   EDITORIAL PHOTO-DRIVEN SQUADRE & WORLDS SYSTEM
   ========================================================================== */
.section-squadre-editorial {
  position: relative;
  padding: 5.5rem 0 6rem 0;
  background-color: #080d1a;
  background-image: 
    radial-gradient(ellipse at 20% 0%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
  overflow: hidden;
}

/* Header */
.squadre-editorial-header {
  margin-bottom: 2.75rem;
}

.squadre-editorial-tag {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.squadre-editorial-tag::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background-color: var(--color-primary);
}

.squadre-editorial-title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 0.75rem;
}

.squadre-editorial-sub {
  font-size: 1.1rem;
  color: #94a3b8;
  max-width: 620px;
  line-height: 1.55;
}

/* I Due Grandi Mondi (Macro Hero Cards) */
.squadre-worlds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.world-card {
  position: relative;
  height: 280px;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.world-card-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.world-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.world-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(8, 13, 26, 0.15) 0%, rgba(8, 13, 26, 0.9) 80%, #080d1a 100%);
  transition: background 0.3s ease;
}

.world-card-content {
  position: relative;
  z-index: 3;
}

.world-card-tag {
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.4rem;
}

.world-card.is-agonistica .world-card-tag {
  color: #60a5fa;
}

.world-card-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 0.35rem;
}

.world-card-desc {
  font-size: 0.92rem;
  color: #cbd5e1;
  margin-bottom: 0.9rem;
}

.world-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: transform 0.2s ease, color 0.2s ease;
}

.world-card.is-agonistica .world-card-cta {
  color: #60a5fa;
}

.world-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(16, 185, 129, 0.15);
}

.world-card.is-agonistica:hover {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(59, 130, 246, 0.15);
}

.world-card:hover .world-card-bg img {
  transform: scale(1.05);
}

.world-card:hover .world-card-cta {
  transform: translateX(4px);
}

/* Macro Sector Block */
.squadre-sector-block {
  margin-bottom: 3.5rem;
}

.sector-block-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sector-block-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.sector-block-count {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
}

.sector-block-count.agonistica {
  color: #60a5fa;
}

.sector-swipe-hint {
  display: none;
  font-size: 0.78rem;
  color: #94a3b8;
  font-weight: 600;
}

/* Editorial Rail Grid */
.squadre-editorial-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* Photo Card (Compact & Cinematic) */
.squadre-photo-card {
  position: relative;
  height: 195px;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem 1.35rem;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.25s ease;
}

.photo-card-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.photo-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.photo-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(8, 13, 26, 0.25) 0%, rgba(8, 13, 26, 0.7) 50%, rgba(8, 13, 26, 0.96) 100%);
  transition: background 0.25s ease;
}

.photo-card-top {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.photo-card-idx {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-primary);
  background: rgba(8, 13, 26, 0.75);
  backdrop-filter: blur(4px);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.squadre-photo-card.is-agonistica .photo-card-idx {
  color: #60a5fa;
  border-color: rgba(59, 130, 246, 0.25);
}

.photo-card-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(8, 13, 26, 0.6);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.photo-card-bottom {
  position: relative;
  z-index: 3;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.photo-card-title {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0 0 0.25rem 0;
  line-height: 1.15;
}

.photo-card-years {
  font-size: 0.82rem;
  font-weight: 700;
  color: #34d399;
}

.squadre-photo-card.is-agonistica .photo-card-years {
  color: #93c5fd;
}

/* Photo Card Hover */
.squadre-photo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.55);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.65), 0 0 20px rgba(16, 185, 129, 0.2);
}

.squadre-photo-card.is-agonistica:hover {
  border-color: rgba(59, 130, 246, 0.55);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.65), 0 0 20px rgba(59, 130, 246, 0.2);
}

.squadre-photo-card:hover .photo-card-bg img {
  transform: scale(1.06);
}

.squadre-photo-card:hover .photo-card-bottom {
  transform: translateY(-2px);
}

.squadre-photo-card:hover .photo-card-arrow {
  background: var(--color-primary);
  color: #080d1a;
  border-color: var(--color-primary);
  transform: translateX(3px);
}

.squadre-photo-card.is-agonistica:hover .photo-card-arrow {
  background: #3b82f6;
  border-color: #3b82f6;
  color: #ffffff;
}

.squadre-preview-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  height: 480px;
  position: sticky;
  top: 100px;
}

.squadre-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.squadre-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(8, 13, 26, 0.95) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.btn-all-teams {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(8, 13, 26, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.95rem 1.25rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-all-teams:hover {
  background-color: var(--color-primary);
  color: #080d1a;
  border-color: var(--color-primary);
  box-shadow: 0 6px 20px var(--color-primary-glow);
}

/* ==========================================================================
   SECTION: "ENTRA NEL MONDO BODIO" (EDITORIAL CALL TO ACTION BANNER)
   ========================================================================== */
.section-cta-world {
  position: relative;
  padding: 7.5rem 0;
  background-color: #060a14;
  text-align: center;
  overflow: hidden;
}

.cta-world-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.cta-world-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.cta-world-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(6, 10, 20, 0.82) 0%, rgba(6, 10, 20, 0.96) 80%);
}

.cta-world-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.cta-tag {
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.cta-sub {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 2.5rem;
}

.btn-cta-enroll {
  background-color: var(--color-primary);
  color: #080d1a;
  font-weight: 900;
  font-size: 0.95rem;
  padding: 1rem 2.25rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition);
}

.btn-cta-enroll:hover {
  background-color: #34d399;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--color-primary-glow);
}

/* ==========================================================================
   SECTION: "CONTATTI & SEGRETERIA"
   ========================================================================== */
.section-contacts {
  background-color: var(--bg-dark);
  padding: 6.5rem 0 5rem 0;
  border-top: 1px solid var(--border-dark);
  position: relative;
}

.contacts-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem auto;
}

.contacts-tag {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.contacts-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.contacts-subtitle {
  font-size: 1.05rem;
  color: var(--text-white-muted);
  line-height: 1.6;
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.contact-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.contact-card.highlight {
  border-color: rgba(16, 185, 129, 0.3);
  background: linear-gradient(145deg, var(--bg-surface) 0%, rgba(16, 185, 129, 0.06) 100%);
}

.contact-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.contact-icon-box.whatsapp {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.25);
  color: #25d366;
}

.contact-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.contact-card-desc {
  font-size: 0.88rem;
  color: var(--text-white-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.contact-card-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all var(--transition);
  text-decoration: none;
}

.contact-card-link:hover {
  color: #34d399;
  transform: translateX(4px);
}

.contact-card-link.wa {
  color: #25d366;
}

@media (max-width: 1024px) {
  .contacts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .contacts-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   FOOTER (CLUB EDITORIAL)
   ========================================================================== */
.site-footer {
  background-color: #050811;
  border-top: 1px solid var(--border-dark);
  padding: 4.5rem 0 2rem 0;
}

.footer-main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-white-muted);
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.social-icon {
  color: var(--text-white-muted);
  transition: color var(--transition);
}

.social-icon:hover {
  color: var(--color-primary);
}

.footer-bottom-row {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-white-subtle);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   DISCREET FLOATING WHATSAPP
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 900;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: transform var(--transition), box-shadow var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* ==========================================================================
   MODAL / DRAWER FOR SQUADRE & ISCRIZIONI
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background-color: var(--bg-dark-surface);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  color: var(--text-white-muted);
  font-size: 1.5rem;
  line-height: 1;
}

.modal-close:hover {
  color: #ffffff;
}

/* Form Styles inside Modal */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-white-muted);
  margin-bottom: 0.35rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  background-color: var(--bg-dark);
  border: 1px solid var(--border-dark);
  color: #ffffff;
  font-family: inherit;
  font-size: 0.95rem;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .values-grid, .il-bodio-grid, .squadre-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .values-collage {
    grid-template-rows: 180px 180px;
  }

  .club-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .il-bodio-image {
    height: 320px;
  }

  .squadre-editorial-rail {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar-right {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--bg-dark-surface);
    border-left: 1px solid var(--border-dark);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2.5rem;
    transition: right var(--transition);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    z-index: 999;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    font-size: 1.25rem;
  }

  .mobile-toggle {
    display: flex;
    z-index: 1001;
  }

  .hero-figc-badge {
    position: static;
    margin-top: 2rem;
    display: inline-flex;
  }

  .values-collage {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .collage-item.tall {
    grid-row: auto;
    height: 240px;
  }

  .collage-item {
    height: 180px;
  }

  .match-meta-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-main-row {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Squadre Editorial Mobile Rails */
  .squadre-editorial-header {
    margin-bottom: 2rem;
  }

  .squadre-worlds-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }

  .world-card {
    height: 240px;
    padding: 1.5rem;
  }

  .world-card-title {
    font-size: 1.35rem;
  }

  .squadre-sector-block {
    margin-bottom: 2.5rem;
  }

  .sector-swipe-hint {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
  }

  .squadre-editorial-rail {
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.85rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -1.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .squadre-editorial-rail::-webkit-scrollbar {
    display: none;
  }

  .squadre-photo-card {
    min-width: 260px;
    max-width: 76vw;
    flex-shrink: 0;
    scroll-snap-align: start;
    height: 175px;
    padding: 1.1rem 1.15rem;
  }

  .photo-card-title {
    font-size: 1.12rem;
  }
}

@media (max-width: 480px) {
  .world-card {
    height: 220px;
    padding: 1.25rem;
  }

  .squadre-photo-card {
    min-width: 240px;
    max-width: 82vw;
    height: 165px;
    padding: 1rem;
  }

  .photo-card-title {
    font-size: 1.05rem;
  }
}

/* ==========================================================================
   COOKIE BANNER & GDPR PREFERENCE MODAL
   ========================================================================== */
.cookie-banner-wrapper {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  z-index: 9999;
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.cookie-banner-wrapper.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner-card {
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(16, 185, 129, 0.3);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), 0 0 30px rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cookie-banner-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cookie-banner-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}

.cookie-banner-text {
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

.cookie-banner-text a {
  color: var(--color-primary);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn-cookie-accept {
  background: var(--color-primary);
  color: #050811;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-cookie-accept:hover {
  background: #34d399;
  transform: translateY(-1px);
}

.btn-cookie-reject {
  background: var(--bg-dark-elevated);
  color: var(--text-white);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-dark);
  cursor: pointer;
  transition: var(--transition);
}

.btn-cookie-reject:hover {
  background: #334155;
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-cookie-prefs {
  background: transparent;
  color: var(--text-white-muted);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.65rem 0.9rem;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  transition: var(--transition);
}

.btn-cookie-prefs:hover {
  color: #ffffff;
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 17, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cookie-modal-card {
  background: var(--bg-dark-surface);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 650px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.25rem;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

.cookie-category-item {
  background: var(--bg-dark-elevated);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.cookie-cat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.cookie-cat-title {
  font-weight: 700;
  color: #ffffff;
  font-size: 0.95rem;
}

.cookie-cat-status {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.status-always-on {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
}

/* Custom Toggle Switch */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #334155;
  transition: .3s;
  border-radius: 24px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
}

.cookie-switch input:checked + .cookie-slider {
  background-color: var(--color-primary);
}

.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(20px);
}

/* Form Checkbox Group for GDPR */
.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

.form-checkbox-group input[type="checkbox"] {
  accent-color: var(--color-primary);
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.2rem;
  cursor: pointer;
  flex-shrink: 0;
}

.form-checkbox-label {
  font-size: 0.82rem;
  color: #cbd5e1;
  line-height: 1.5;
  cursor: pointer;
}

.form-checkbox-label a {
  color: var(--color-primary);
  text-decoration: underline;
  font-weight: 600;
}

@media (max-width: 640px) {
  .cookie-banner-wrapper {
    bottom: 4.5rem; /* leave space for mobile quick bar */
    left: 0.75rem;
    right: 0.75rem;
  }
  .cookie-banner-card {
    padding: 1.25rem;
  }
  .cookie-banner-actions {
    flex-direction: column;
    width: 100%;
  }
  .cookie-banner-actions button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .cookie-modal-card {
    padding: 1.5rem 1rem;
  }
}

/* ==============================================================================
   AUDIT ENHANCEMENTS: MOBILE STICKY BAR, FAQ, TRIAL GUIDE, FIELDS & MATCH FILTERS
   ============================================================================== */

/* --- 1. Sticky Mobile Quick-Actions Bar --- */
.mobile-quick-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(8, 12, 22, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(16, 185, 129, 0.25);
  z-index: 1050;
  align-items: center;
  justify-content: space-around;
  padding: 0 0.5rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.mobile-quick-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-decoration: none;
  color: #94a3b8;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 6px 10px;
  border-radius: 8px;
  transition: all 0.2s ease;
  min-width: 68px;
  min-height: 48px; /* Touch target minimum */
}

.mobile-quick-item svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  transition: transform 0.2s ease;
}

.mobile-quick-item:hover, .mobile-quick-item:active {
  color: #ffffff;
}

.mobile-quick-item.highlight {
  color: #10b981;
}

.mobile-quick-item.highlight svg {
  stroke: #10b981;
}

.mobile-quick-item.cta-trial {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #050811 !important;
  font-weight: 800;
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.35);
}

.mobile-quick-item.cta-trial svg {
  stroke: #050811;
}

@media (max-width: 768px) {
  .mobile-quick-bar {
    display: flex;
  }
  body {
    padding-bottom: 64px; /* prevent content occlusion */
  }
  .floating-whatsapp {
    bottom: 74px !important; /* dock above quick bar */
    right: 1rem !important;
    width: 48px;
    height: 48px;
  }
}

/* --- 2. Trial Process Guide (Come Funziona la Prova) --- */
.section-trial-guide {
  background: var(--bg-dark-surface);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 4.5rem 0;
}

.trial-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.trial-step-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.trial-step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.4);
}

.trial-step-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(16, 185, 129, 0.25);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.trial-step-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.trial-step-desc {
  font-size: 0.88rem;
  color: var(--text-white-muted);
  line-height: 1.55;
}

/* --- 3. Interactive FAQ Accordion --- */
.section-faq {
  padding: 4.5rem 0;
  background: var(--bg-dark);
}

.faq-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem auto;
}

.faq-tag {
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}

.faq-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-dark-surface);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item.active {
  border-color: rgba(16, 185, 129, 0.5);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-primary);
  font-weight: 800;
  font-size: 1.1rem;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--color-primary);
  color: #050811;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
  color: #cbd5e1;
  font-size: 0.92rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.35rem 1.5rem;
}

/* --- 4. Add to Calendar Buttons & Match Center Filters --- */
.mc-filter-row {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.mc-filter-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mc-filter-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.mc-filter-btn.active {
  background: var(--color-primary);
  color: #050811;
  border-color: var(--color-primary);
  font-weight: 800;
}

.btn-add-calendar {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-add-calendar:hover {
  background: rgba(16, 185, 129, 0.2);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-add-calendar svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}

/* --- 5. Form Funnel Success State --- */
.form-success-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-md);
  margin-top: 1rem;
}

.form-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #10b981;
  color: #050811;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.form-success-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.form-success-desc {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.btn-wa-confirm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-wa-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
}

/* --- 6. News & Bodio Life Section --- */
.section-news {
  padding: 4.5rem 0;
  background: var(--bg-dark-surface);
  border-top: 1px solid var(--border-dark);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.news-card {
  background: var(--bg-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.4);
}

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

.news-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.65rem;
}

.news-badge {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  background: rgba(16, 185, 129, 0.1);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
}

.news-date {
  font-size: 0.78rem;
  color: var(--text-white-muted);
}

.news-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 0.65rem;
}

.news-excerpt {
  font-size: 0.86rem;
  color: var(--text-white-muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.news-link {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--color-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.news-link:hover {
  text-decoration: underline;
}

