#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;
  }