/* =============================================================
   TransRisk v3 — press.css
   Press Releases page
============================================================= */


/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */

.press-hero {
  background: var(--color-navy);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}

/* Decorative dot grid — matches other page heroes */
.press-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
}

.press-hero-inner {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.press-hero-title {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 14px 0 20px;
}

.press-hero-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.72;
  max-width: 560px;
  margin: 0 auto;
}


/* ═══════════════════════════════════════════════════════════
   PRESS RELEASES LIST
═══════════════════════════════════════════════════════════ */

.press-section {
  background: #fff;
  padding: 80px 0 96px;
}

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

/* ── Individual card ── */
.press-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-green);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.press-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Placeholder / coming-soon cards */
.press-card--placeholder {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}

.press-card--placeholder:hover {
  transform: none;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

/* ── Date pill ── */
.press-date {
  display: inline-block;
  background: var(--color-green);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ── Body column ── */
.press-body {
  flex: 1;
  min-width: 0;
}

.press-headline {
  font-size: 1.0rem;
  font-weight: 700;
  line-height: 1.48;
  color: var(--color-text);
  margin: 0 0 10px;
}

.press-headline a {
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--transition);
}

.press-headline a:hover {
  color: var(--color-green-dark);
}

.press-excerpt {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin: 0 0 14px;
}

.press-read-more {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--color-green-dark);
  text-decoration: none;
  transition: color var(--transition);
}

.press-read-more:hover {
  color: var(--color-green);
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* ═══════════════════════════════════════════════════════════
   MEDIA / CONTACT CTA STRIP
═══════════════════════════════════════════════════════════ */

.press-cta-strip {
  max-width: 760px;
  margin: 48px auto 0;
  padding: 22px 28px;
  background: var(--color-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  text-align: center;
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.press-cta-strip a {
  color: var(--color-green-dark);
  font-weight: 600;
  text-decoration: none;
}

.press-cta-strip a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .press-hero {
    padding: 64px 0 56px;
  }

  .press-section {
    padding: 56px 0 72px;
  }

  .press-card {
    flex-direction: column;
    gap: 12px;
    padding: 20px 18px;
  }

  .press-date {
    margin-top: 0;
  }
}
