/* /css/pages/press/press-base.css */
#press {
    padding: var(--section-padding);
    max-width: var(--max-width);
    margin: auto;
  }

  /* Intestazione */
  /* Gradient text uniformato - ora usa .page-title-gradient da base.css */
  #press h2,
  #press_title {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  #press .claim-text,
  #press_claim {
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  @media (max-width: 767px) {
    #press h2,
    #press_title {
      font-size: 2.5rem;
    }
    #press .claim-text,
    #press_claim {
      font-size: 1.1rem;
    }
  }
  
  /* Citazioni press */
  .press-quote {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(20, 20, 20, 0.8) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-left: 4px solid var(--accent-color);
    border-radius: 14px;
    padding: 2rem 2.5rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.75;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    font-family: 'Cormorant Garamond', serif;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
  }

  .press-quote:nth-child(1) { animation-delay: 0.1s; }
  .press-quote:nth-child(2) { animation-delay: 0.2s; }
  .press-quote:nth-child(3) { animation-delay: 0.3s; }
  .press-quote:nth-child(4) { animation-delay: 0.4s; }
  .press-quote:nth-child(5) { animation-delay: 0.5s; }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .press-quote:hover {
    transform: translateX(8px);
    box-shadow:
      -8px 0 24px rgba(212, 175, 55, 0.15),
      0 8px 32px rgba(0, 0, 0, 0.5);
    border-color: rgba(212, 175, 55, 0.5);
    border-left-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(20, 20, 20, 0.95) 100%);
  }

  .press-quote p {
    position: relative;
    padding-left: 2.5rem;
  }

  .press-quote p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.15rem;
    font-size: 3rem;
    color: var(--accent-color);
    opacity: 0.5;
    font-family: Georgia, serif;
    line-height: 1;
  }
  
  /* Citazione intervista (bordo tratteggiato) */
  .press-quote.interview {
    border: 2px dashed rgba(212, 175, 55, 0.5);
    border-left: 4px dashed var(--accent-color);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(26, 26, 26, 0.8) 100%);
  }

  .press-quote.interview::after {
    content: '💬';
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    opacity: 0.3;
  }

  /* Icona intervista opzionale */
  .press-quote.interview .press-icon {
    position: absolute;
    top: 2rem;
    left: 1rem;
    font-size: 1.5rem;
    color: var(--accent-color);
    opacity: 0.8;
  }

  /* Fonte e link */
  .press-source {
    margin-top: 1.5rem;
    font-style: normal;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  }

  .press-source em {
    font-style: normal;
    font-weight: 600;
    color: var(--accent-color);
  }

  .press-source a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
  }

  .press-source a::after {
    content: '→';
    transition: transform 0.25s ease;
  }

  .press-source a:hover {
    color: var(--light-accent);
  }

  /* Critical iPhone breakpoint */
  @media (max-width: 420px) {
    #press h2,
    #press_title {
      font-size: 1.8rem;
    }
    #press .claim-text,
    #press_claim {
      font-size: 1rem;
    }
  }

  .press-source a:hover::after {
    transform: translateX(3px);
  }
  
  /* Lingue */
  .lang-it, .lang-en {
    display: none;
  }
  
  .lang-it.visible, .lang-en.visible {
    display: block;
    text-align: center;
  }
/* /css/pages/press/press-modern.css */
/* =================================================================
   PRESS - MODERN CARD DESIGN
   Modern card-based layout with image previews and better UX
   ================================================================= */

/* Import Engagement Funnel Components */
@import url('../../components/engagement-funnel.css');

#press_section {
  padding: var(--section-padding);
  max-width: 1200px;
  margin: 0 auto;
}

/* ========== HEADER ========== */
#press_title {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#press_claim {
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== CARDS GRID ========== */
.press-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

/* ========== QUOTE CARD ========== */
.press-card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(20, 20, 20, 0.8) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
}

.press-card:nth-child(1) { animation-delay: 0.1s; }
.press-card:nth-child(2) { animation-delay: 0.2s; }
.press-card:nth-child(3) { animation-delay: 0.3s; }
.press-card:nth-child(4) { animation-delay: 0.4s; }
.press-card:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.press-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(212, 175, 55, 0.5);
  border-color: rgba(212, 175, 55, 0.6);
}

/* Card with Image */
.press-card.has-image {
  grid-template-columns: 280px 1fr;
}

/* ========== IMAGE SECTION ========== */
.press-card__image {
  position: relative;
  width: 280px;
  min-height: 180px;
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.press-card__image img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.press-card:hover .press-card__image img {
  transform: scale(1.05);
}

/* Badge "In evidenza" */
.press-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent-color);
  color: #000;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  z-index: 2;
}

/* ========== CONTENT SECTION ========== */
.press-card__content {
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Quote Text */
.press-card__quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.95);
  position: relative;
  padding-left: 2rem;
}

.press-card__quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.15rem;
  font-size: 3rem;
  color: var(--accent-color);
  opacity: 0.4;
  font-family: Georgia, serif;
  line-height: 1;
}

/* Meta Info */
.press-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.press-card__source {
  font-weight: 700;
  color: var(--accent-color);
  font-size: 1rem;
}

.press-card__author {
  color: rgba(255, 255, 255, 0.7);
}

.press-card__date {
  color: rgba(255, 255, 255, 0.5);
  margin-left: auto;
}

/* Link Button */
.press-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 8px;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  align-self: flex-start;
  margin-top: 0.5rem;
}

.press-card__link:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(212, 175, 55, 0.15) 100%);
  border-color: var(--accent-color);
  transform: translateX(3px);
}

.press-card__link i {
  transition: transform 0.25s ease;
}

.press-card__link:hover i {
  transform: translateX(3px);
}

/* ========== EMPTY STATE ========== */
.empty-state {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.1rem;
  padding: 4rem 2rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  #press_title {
    font-size: 2.5rem;
  }

  #press_claim {
    font-size: 1.1rem;
  }

  .press-card.has-image {
    grid-template-columns: 1fr;
  }

  .press-card__image {
    width: 100%;
    height: 240px;
  }

  .press-card__content {
    padding: 1.5rem;
  }

  .press-card__quote {
    font-size: 1.1rem;
    padding-left: 1.5rem;
  }

  .press-card__date {
    margin-left: 0;
    width: 100%;
  }
}

@media (max-width: 420px) {
  #press_title {
    font-size: 1.8rem;
  }

  #press_claim {
    font-size: 1rem;
  }

  .press-card__content {
    padding: 1.25rem;
  }

  .press-card__quote {
    font-size: 1rem;
  }

  .press-card__link {
    width: 100%;
    justify-content: center;
  }
}

/* Nota sulla lingua della fonte (contesto per il lettore) */
.press-card__source-note {
  margin: 0.5rem 0 0;
  font-size: 0.78rem;
  font-style: italic;
  color: #8d877c;
}

/* =================================================================
   LA TRAIETTORIA — le recensioni in ordine di tempo
   Il senso di questa sezione è la sequenza: un giudizio severo nel 2018
   e la fiducia degli anni dopo, dallo stesso critico. Perciò l'anno è
   un elemento grafico, non un dettaglio del piè di pagina.
   ================================================================= */
.press-section-title,
.press-arc__intro h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: #d4af37;
  margin: 0 0 0.75rem;
  letter-spacing: 0.01em;
}

.press-arc { margin-top: 3rem; }

.press-arc__intro {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.press-arc__intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
  line-height: 1.7;
}

.press-arc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

/* Il filo che tiene insieme gli anni */
.press-arc__list::before {
  content: '';
  position: absolute;
  top: 0.6rem;
  bottom: 0.6rem;
  left: 4.25rem;
  width: 1px;
  background: linear-gradient(180deg,
    rgba(212, 175, 55, 0) 0%,
    rgba(212, 175, 55, 0.45) 12%,
    rgba(212, 175, 55, 0.45) 88%,
    rgba(212, 175, 55, 0) 100%);
}

.press-arc__item {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1.75rem;
  align-items: start;
  margin-bottom: 2rem;
}

.press-arc__year {
  position: relative;
  text-align: right;
  padding-top: 0.35rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: rgba(212, 175, 55, 0.9);
  line-height: 1;
}

/* Il punto sul filo */
.press-arc__year::after {
  content: '';
  position: absolute;
  top: 0.75rem;
  right: -1.28rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d4af37;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.press-arc__card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(20, 20, 20, 0.8) 100%);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 16px;
  padding: 1.75rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  transition: border-color 0.35s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.press-arc__card:hover {
  border-color: rgba(212, 175, 55, 0.45);
  transform: translateY(-2px);
}

.press-arc__quote {
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.94);
  font-style: italic;
}

.press-arc__note {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.98rem;
  line-height: 1.65;
  padding-left: 1rem;
  border-left: 2px solid rgba(212, 175, 55, 0.25);
}

.press-arc__article-title {
  margin: 0.75rem 0 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
}

.press-card__role { color: rgba(255, 255, 255, 0.5); font-weight: 400; }

/* Su schermo stretto il filo non serve: l'anno passa sopra la citazione */
@media (max-width: 700px) {
  .press-arc__list::before { display: none; }

  .press-arc__item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
  }

  .press-arc__year {
    text-align: left;
    padding-top: 0;
    font-size: 1.4rem;
  }

  .press-arc__year::after { display: none; }

  .press-arc__card { padding: 1.35rem 1.25rem; }
  .press-arc__quote { font-size: 1.25rem; }
  .press-section-title,
  .press-arc__intro h2 { font-size: 1.9rem; }
}

/* =================================================================
   INTERVISTE E RITRATTI — la citazione è il pezzo forte della scheda
   Prima il titolo dell'articolo faceva da titolo della scheda: ma il
   titolo lo ha scritto la redazione per il suo giornale, mentre la
   frase è quello che il lettore è venuto a leggere. Invertito.
   ================================================================= */
.press-card__kicker {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0 0 1.1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  font-family: Helvetica, Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.press-card__kicker .press-card__source { color: #d4af37; font-weight: 700; }
.press-card__kicker time { color: rgba(255, 255, 255, 0.45); letter-spacing: 0.1em; }

.press-card .press-card__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  line-height: 1.48;
  font-style: italic;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 1.1rem;
}

.press-card__title {
  margin: 0 0 0.6rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  font-style: italic;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.01em;
}

.press-card__description {
  margin: 0 0 1.1rem;
  font-size: 0.97rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.68);
}

.press-card__meta { border: 0; padding: 0; margin: 0 0 1rem; }

/* Le testate senza immagine: un blocco tipografico, non un buco */
.press-card__image--wordmark {
  flex-direction: column;
  gap: 0.5rem;
  background:
    radial-gradient(circle at 50% 35%, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0) 62%),
    linear-gradient(135deg, #1c1c1c 0%, #0d0d0d 100%);
  border-right: 1px solid rgba(212, 175, 55, 0.16);
  padding: 1.5rem 1rem;
  text-align: center;
}

/* La testata scritta per esteso, come una testata di giornale: le sigle
   («IT» per Il Tempo) non dicono niente a nessuno. */
.press-card__wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1.15;
  font-weight: 600;
  color: rgba(212, 175, 55, 0.88);
  letter-spacing: 0.02em;
  max-width: 13rem;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.7rem 0;
}

/* Le scansioni restano intere: niente ingrandimento che taglia i bordi.
   Al passaggio del mouse si schiariscono, e basta. */
.press-card:hover .press-card__image img { transform: none; filter: brightness(1.12); }
.press-card__image img { transition: filter 0.35s ease; }

.press-card__badge {
  background: rgba(212, 175, 55, 0.92);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
}

@media (max-width: 768px) {
  .press-card .press-card__quote { font-size: 1.3rem; }
  .press-card__image--wordmark { padding: 1.75rem 1rem; border-right: 0; border-bottom: 1px solid rgba(212, 175, 55, 0.16); }
  .press-card__wordmark { font-size: 1.7rem; }
}

/* /css/pages/press/press-responsive.css */
@media (max-width:768px){#press{padding:2rem .3rem}.press-quote,.press-quote.interview{padding:1.2rem;font-size:1rem}}
