/* ============================================================
   Ligue 1 à la maison — section "Nouveautés" de l'accueil
   ============================================================ */

.news {
  max-width: 1080px;
  margin: 10px auto 30px;
  padding: 0 20px;
}
.news-title {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 22px;
  color: var(--ink);
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .news-grid { grid-template-columns: 1fr; } }

.news-card {
  display: block;
  text-decoration: none;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 18px;
  transition: transform .18s ease, border-color .18s ease;
}
.news-card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan, #36e3ff);
}
.news-ico {
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 12px;
}
.news-card h3 {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}
.news-card p {
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--muted);
}
