/* ── BANNER NEWS ── */
.news-banner {
  background: var(--nebbia);
  position: relative; overflow: hidden;
  border-bottom: 3px solid var(--grano);
  min-height: 220px; display: flex; align-items: center;
}

.news-banner-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(74,155,181,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,155,181,0.06) 1px, transparent 1px);
  background-size: 55px 55px;
}

.news-tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--grano);
  margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 0.8rem;
}

.news-tag::before { content:''; width:24px; height:1px; background:currentColor; }

.news-banner-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700;
  color: var(--acqua); line-height: 1.05; margin-bottom: 0.8rem;
}

.news-banner-title em { font-style: italic; color: var(--acqua-m); }

.news-banner-desc {
  font-size: 0.95rem; font-weight: 300;
  color: #666; line-height: 1.8; max-width: 480px;
}

.news-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; color: var(--acqua); margin-bottom: 1.5rem;
}

.news-section-title em { font-style: italic; color: var(--salvia); }

/* ── CARD ARTICOLI ── */
.news-card {
  display: block;
  background: #fff;
  border-radius: 4px;
  padding: 1.5rem;
  border-top: 3px solid var(--acqua-m);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  text-decoration: none;
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}

.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.news-card-fonte {
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--acqua-m);
  margin-bottom: 0.3rem;
}

.news-card-data {
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem; letter-spacing: 0.08em;
  color: #aaa; margin-bottom: 0.8rem;
}

.news-card-titolo {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; color: var(--acqua);
  line-height: 1.5; margin-bottom: 1rem;
  font-weight: 700;
}

.news-card-link {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--grano);
}

/* ── VIDEO ── */
.news-video-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  border-top: 3px solid var(--grano);
}

.news-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0; overflow: hidden;
}

.news-video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

.news-video-body {
  padding: 1rem 1.2rem;
}

.news-video-titolo {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem; color: var(--acqua); font-weight: 700;
  margin-top: 0.3rem;
}

.news-ordine {
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: #aaa;
  border: 1px solid var(--pietra);
  display: inline-flex; align-items: center;
  padding: 0.35rem 0.8rem; border-radius: 2px;
  margin-bottom: 1.5rem;
}

.news-yt-card {
  display: block; background: #fff;
  border-radius: 4px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  border-top: 3px solid #ff0000;
  text-decoration: none;
  transition: transform 0.2s;
}

.news-yt-card:hover { transform: translateY(-3px); }

.news-yt-thumb {
  position: relative; overflow: hidden; height: 200px;
}

.news-yt-thumb img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.3s;
}

.news-yt-card:hover .news-yt-thumb img { transform: scale(1.03); }

.news-yt-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.25);
  transition: background 0.2s;
}

.news-yt-card:hover .news-yt-play { background: rgba(0,0,0,0.4); }

.news-yt-play i {
  font-size: 3.5rem; color: #fff; opacity: 0.95;
}

.news-yt-badge {
  position: absolute; top: 0.6rem; left: 0.6rem;
  background: #ff0000;
  font-family: 'Space Mono', monospace;
  font-size: 0.5rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: #fff;
  padding: 0.2rem 0.5rem; border-radius: 2px;
  display: flex; align-items: center;
}

.news-card-foto {
  height: 180px;
  overflow: hidden;
}

.news-card-foto img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: transform 0.3s;
}

.news-card:hover .news-card-foto img {
  transform: scale(1.03);
}