/* ============================================================
   press.css
   Styles for the dedicated Press & Media page.
   ============================================================ */

/* --- Hero --- */
.press-hero {
  background: var(--navy);
  padding: 100px 48px 64px;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.press-hero-in {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}
.press-hero-in h1 {
  font-size: 56px;
  font-weight: 800;
  color: var(--od);
  letter-spacing: -1px;
  line-height: 1.1;
  margin: 16px 0 14px;
}
.press-hero-in h1 strong { color: var(--blue); }
.press-hero-in p {
  font-size: 18px;
  color: var(--od-m);
  line-height: 1.65;
  max-width: 600px;
}

/* --- Body --- */
.press-page-body {
  padding: 0 48px 80px;
  max-width: 1300px;
  margin: 0 auto;
}

/* --- Section label --- */
.press-page-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 56px 0 24px;
}

/* --- Press items: strip card style, image-left content-right --- */
.press-page-body .press-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.press-page-body .press-item {
  display: flex;
  gap: 40px;
  padding: 40px 0;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0;
  background: none;
  align-items: center;
}
.press-page-body .press-item:last-child { border-bottom: none; }

.press-item__cover {
  width: 340px;
  flex-shrink: 0;
}
.press-item__cover img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.press-item__content { flex: 1; min-width: 0; }

.press-item__date {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 10px;
}

.press-page-body .press-item h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin: 0 0 12px;
}
.press-page-body .press-item h4 a {
  color: var(--blue);
  text-decoration: none;
  transition: opacity 0.15s;
}
.press-page-body .press-item h4 a:hover { opacity: 0.8; }
.press-page-body .press-item p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .press-page-body .press-item { flex-direction: column; gap: 16px; }
  .press-item__cover { width: 100%; }
}
@media (max-width: 600px) {
  .press-page-body .press-item h4 { font-size: 17px; }
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .press-hero { padding: 64px 24px 48px; min-height: unset; }
  .press-hero-in h1 { font-size: 40px; }
  .press-page-body { padding: 0 24px 64px; }
}
@media (max-width: 600px) {
  .press-hero { padding: 48px 20px 36px; }
  .press-hero-in h1 { font-size: 30px; letter-spacing: -0.5px; }
  .press-hero-in p { font-size: 16px; }
  .press-page-body { padding: 0 20px 48px; }
}
