#magazine {
  margin: 2rem 0;
}

#magazine h2 {
  text-align: center;
  margin-bottom: 1rem;
}
#magazine {
  margin: 2rem 0;
}

#magazine h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  max-width: calc(320px * 3 + 2rem); /* 3 card visibili + gap */
  margin: 0 auto;
  padding: 0; /* necessario per evitare le barre e lasciare le frecce fuori dalle card */
}


.carousel {
  display: flex;
  transition: transform 0.3s;
  gap: 1rem; /* distanza tra le card */
}

.carousel-item {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 14px;
  flex: 0 0 320px; /* larghezza fissa */
  min-width: 0;
  max-width: 320px; /* blocca l'espansione in Firefox */
  box-sizing: border-box;
}



.carousel-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 14px 14px 0 0;
}

.carousel-item .news-link {
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 15px;
  box-sizing: border-box;
}

.carousel-item h3 { margin: 10px 0 8px; }
.carousel-item p { margin-bottom: 10px; line-height: 1.5; }

/* FRECCE */
button.prev, button.next {
  cursor: pointer;
  font-size: 2rem;
  background: rgba(255,255,255,0.8);
  border: none;
  color: #333;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  padding: 10px; /* leggermente più grande per click facile */
  border-radius: 50%;
  transition: background 0.3s;
}

button.prev { left: 5px; }  /* leggermente staccate dai bordi */
button.next { right: 5px; }

button.prev:hover, button.next:hover {
  background: rgba(255,255,255,1);
}

button:disabled {
  opacity: 0.5;
  cursor: default;
}


/* MOBILE */
@media(max-width:768px){
  .carousel-item { flex: 0 0 200px; } /* card più piccole */
  .carousel-wrapper { padding: 0; }   /* frecce sempre visibili */
}


/* ===== HEADER MAGAZINE SPORTIVO ===== */
#magazine-header {
    text-align: center; /* centra il contenitore */
    margin: 20px 0 0 0;
}

/* Titolo principale */
#magazine-header h2 {
    display: inline-block;      /* consente al text-align del genitore di funzionare */
    position: relative;         /* necessario per ::before */
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1a73e8;
    padding: 8px 20px;
    transition: color 0.3s;
}

/* Barra verticale a sinistra della M */
#magazine-header h2::before {
    content: "";
    position: absolute;       /* rispetto a h2 */
    left: 0;                  /* parte dall'inizio del testo */
    top: 0;
    height: 100%;
    width: 8px;
    background: #1a73e8;
    border-radius: 3px;
}

/* Lineetta sotto il titolo */
#magazine-header h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background: #1a73e8;
    margin: 8px auto 0 auto;
    border-radius: 2px;
}

/* Hover leggero */
#magazine-header h2:hover {
    color: #0f4bbd;
    cursor: default;
}
#magazine-header h2:hover::after {
    background: #0f4bbd;
}

/* Sottotitolo */
#magazine-header .magazine-subtitle {
    font-size: 16px;
    color: #555;
    font-weight: 500;
    margin-top: 5px;
    letter-spacing: 1px;
    text-transform: none;
}
