/* /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-broken.css */
/* ===== PRESS PAGE - MODERN REDESIGN ===== */
/* Layout con hero sticky sulla destra (stile Concerts/News) */

.press-layout {
  --press-hero-min-h: 520px;
  --press-hero-focus-y: 50%;
  --press-hero-zoom: 1;
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 42%;
  gap: 0;
  background: var(--bg-color, #0a0a0a);
}

/* === Hero sticky sulla destra === */
.hero-press {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.hero-press .hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-press .hero-media-img {
  min-width: 100%;
  min-height: var(--press-hero-min-h);
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: center var(--press-hero-focus-y);
  transform: scale(var(--press-hero-zoom));
  filter: brightness(0.7) contrast(1.1) saturate(0.9);
}

/* === Header e layout-grid === */
.press-layout .page-header {
  grid-column: 1;
  padding: 4rem 4rem 2rem;
  max-width: 1200px;
}

.press-layout .page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--light-accent, #d4af37);
  margin: 0 0 0.5rem 0;
  letter-spacing: 0.02em;
}

.press-layout .page-claim {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-weight: 300;
}

.press-layout .layout-grid {
  grid-column: 1;
  padding: 0 4rem 4rem;
  max-width: 1200px;
}

/* === Press Grid === */
.press-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem 0;
}

.press-card {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: calc(var(--item-index, 0) * 0.1s);
}

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

.press-card__inner {
  position: relative;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.5) 0%, rgba(20, 20, 20, 0.7) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.press-card__inner:hover {
  border-color: rgba(212, 175, 55, 0.4);
  border-left-color: var(--accent-color, #d4af37);
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(20, 20, 20, 0.9) 100%);
  transform: translateX(8px);
  box-shadow:
    -8px 0 20px rgba(212, 175, 55, 0.1),
    0 10px 30px rgba(0, 0, 0, 0.3);
}

/* === Interview Badge === */
.press-card__badge {
  position: absolute;
  top: -0.5rem;
  right: 2rem;
  background: linear-gradient(135deg, var(--accent-color, #d4af37) 0%, #b8922d 100%);
  color: #0a0a0a;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* === Quote === */
.press-card__quote {
  margin: 0 0 1.5rem 0;
  position: relative;
  padding-left: 3rem;
}

.press-card__quote-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  color: var(--accent-color, #d4af37);
  opacity: 0.4;
}

.press-card__quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  line-height: 1.6;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  quotes: """ """ "'" "'";
}

.press-card__quote p::before {
  content: open-quote;
  color: var(--accent-color, #d4af37);
  opacity: 0.6;
  margin-right: 0.15rem;
}

.press-card__quote p::after {
  content: close-quote;
  color: var(--accent-color, #d4af37);
  opacity: 0.6;
  margin-left: 0.15rem;
}

/* === Footer === */
.press-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.press-card__source {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.press-card__icon {
  font-size: 2rem;
  line-height: 1;
  opacity: 0.8;
}

.press-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.press-card__publication {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--light-accent, #d4af37);
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
}

.press-card__author {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}

.press-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 24px;
  color: var(--accent-color, #d4af37);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.press-card__link:hover {
  background: var(--accent-color, #d4af37);
  border-color: var(--accent-color, #d4af37);
  color: #0a0a0a;
  gap: 0.75rem;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* === Interview Variant === */
.press-card--interview .press-card__inner {
  border-left-width: 4px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(26, 26, 26, 0.7) 100%);
}

.press-card--interview .press-card__quote p {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.95);
}

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

/* === Responsive === */
@media (max-width: 1200px) {
  .press-layout {
    grid-template-columns: 1fr 40%;
  }

  .press-layout .page-header,
  .press-layout .layout-grid {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media (max-width: 900px) {
  .press-layout {
    grid-template-columns: 1fr;
  }

  .hero-press {
    position: relative;
    height: 60vh;
    min-height: 400px;
  }

  .press-layout .page-header,
  .press-layout .layout-grid {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .press-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .press-card__link {
    align-self: flex-start;
  }
}

@media (max-width: 600px) {
  .press-layout .page-header {
    padding: 2rem 1.5rem 1rem;
  }

  .press-layout .layout-grid {
    padding: 0 1.5rem 2rem;
  }

  .press-layout .page-title {
    font-size: 2rem;
  }

  .press-card__inner {
    padding: 1.5rem;
  }

  .press-card__quote {
    padding-left: 2.5rem;
  }

  .press-card__quote p {
    font-size: 1.1rem;
  }

  .press-card__quote-icon {
    width: 24px;
    height: 24px;
  }

  .hero-press {
    height: 50vh;
    min-height: 300px;
  }

  .press-card__badge {
    right: 1.5rem;
    font-size: 0.65rem;
    padding: 0.35rem 0.85rem;
  }
}

/* /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;
  }
}

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