/* ===================================================
   press.css — Rassegna Stampa
   =================================================== */

/* ── Hero ── */
.page-hero h1 em { font-style: normal; color: var(--orange, #f47c20); }

/* ── Sezione articoli ── */
.press-section {
  padding: 64px 0 80px;
  background: #fff;
}

.press-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 780px;
  margin: 0 auto;
}

/* ── Singolo articolo ── */
.press-card {
  padding: 28px 0;
  border-bottom: 1px solid #e8e8e8;
}

.press-card:first-child { padding-top: 0; }
.press-card:last-child  { border-bottom: none; }

.press-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.press-source {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #b35400;
  background: rgba(244,124,32,.10);
  padding: 2px 10px;
  border-radius: 20px;
}

.press-date {
  font-size: 13px;
  color: #666;
}

.press-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 8px;
  line-height: 1.4;
}

.press-title a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color .2s;
}

.press-title a:hover { color: var(--orange, #f47c20); }

.press-excerpt {
  font-size: 14px;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

/* ── Stato vuoto (prima che vengano aggiunti articoli) ── */
.press-list:empty::after {
  content: "Articoli in arrivo.";
  display: block;
  text-align: center;
  color: #aaa;
  font-size: 15px;
  padding: 48px 0;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .press-section { padding: 40px 0 56px; }
  .press-card { padding: 22px 0; }
  .press-title { font-size: 1.05rem; }
}
