/* ============================================================
   PRESS PAGE — press.css
   Robbie Felice brand site
   ============================================================ */

/* ── Hero ──────────────────────────────────────────────────── */
.press-hero {
  min-height: 50vh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 6rem;
  border-bottom: 1px solid rgba(243, 241, 238, 0.08);
}

.press-hero .section-label {
  color: var(--flame-red);
  font-family: var(--font-secondary);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.press-hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 0.9;
  color: var(--white);
  letter-spacing: 0.02em;
  margin: 0 0 1.5rem;
}

.press-hero-sub {
  font-family: var(--font-secondary);
  font-style: italic;
  font-size: 1rem;
  color: var(--gray);
  letter-spacing: 0.05em;
  max-width: 480px;
}

/* ── Featured Section ──────────────────────────────────────── */
.press-featured-section {
  background: var(--black);
  padding: 5rem 4rem;
}

.press-section-label {
  font-family: var(--font-secondary);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--flame-red);
  margin-bottom: 2.5rem;
}

.press-featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.press-featured-card {
  background: #111;
  border: 1px solid rgba(243, 241, 238, 0.1);
  margin: -1px 0 0 -1px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  transition: border-color 0.4s ease, background 0.4s ease;
  position: relative;
}

.press-featured-card:hover {
  border-color: var(--flame-red);
  background: rgba(193, 23, 31, 0.06);
  z-index: 2;
}

.press-featured-card a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.press-featured-card .press-pub {
  font-family: var(--font-secondary);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--flame-red);
  margin-bottom: 1rem;
}

.press-featured-card .press-pub-name {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 0.9;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
  flex: 1;
}

.press-featured-card .press-title {
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(243, 241, 238, 0.75);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.press-featured-card .press-read-link {
  font-family: var(--font-secondary);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--flame-red);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.press-featured-card:hover .press-read-link {
  gap: 0.75rem;
}

.press-read-link::after {
  content: '→';
  font-size: 0.8rem;
}

/* ── Wine Divider ──────────────────────────────────────────── */
.press-break {
  background: var(--wine-red);
  padding: 8rem 4rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.press-break-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--cream);
  letter-spacing: 0.04em;
  line-height: 1.15;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  width: 100%;
}

.press-break-attr {
  font-family: var(--font-secondary);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(244, 226, 202, 0.6);
}

/* ── Press Grid Section ────────────────────────────────────── */
.press-grid-section {
  background: var(--black);
  padding: 5rem 4rem;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.press-card {
  background: #111;
  border: 1px solid rgba(243, 241, 238, 0.1);
  margin: -1px 0 0 -1px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  transition: border-color 0.4s ease, background 0.4s ease;
  position: relative;
}

.press-card:hover {
  border-color: var(--flame-red);
  background: rgba(193, 23, 31, 0.06);
  z-index: 1;
}

.press-card a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.press-card .press-pub {
  font-family: var(--font-secondary);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--flame-red);
  margin-bottom: 1rem;
}

.press-card .press-pub-name {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.5rem);
  line-height: 0.9;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
  flex: 1;
}

.press-card .press-title {
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(243, 241, 238, 0.75);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.press-card .press-read-link {
  font-family: var(--font-secondary);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--flame-red);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.press-card:hover .press-read-link {
  gap: 0.75rem;
}

.press-card .press-read-link::after {
  content: '→';
  font-size: 0.8rem;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .press-featured-section,
  .press-grid-section {
    padding: 4rem 2rem;
  }

  .press-featured {
    grid-template-columns: repeat(2, 1fr);
  }

  .press-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .press-break {
    padding: 3rem 2rem;
  }
}

@media (max-width: 600px) {
  .press-hero {
    padding: 7rem 1.5rem 4rem;
  }

  .press-featured-section,
  .press-grid-section {
    padding: 3rem 1.25rem;
  }

  .press-featured {
    grid-template-columns: 1fr;
  }

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

  .press-featured-card {
    min-height: 200px;
  }

  .press-break {
    padding: 2.5rem 1.5rem;
  }
}
