/* ============================================================
   press-section.css
   Styles the Press & Media section on the About page.
   .press-item and .press-grid base styles live in blog.css
   since the press grid also appears on the blog page.
   ============================================================ */

.press-about-section {
  padding: 80px 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.press-about-section .feature-eyebrow {
  margin-bottom: 10px;
}

.press-about-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--od);
  letter-spacing: -0.5px;
  margin-bottom: 40px;
}

/* --- "Read article" link appended to external items ---------- */
.press-item__read {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  margin-top: 8px;
  transition: opacity 0.15s;
}
.press-item__read:hover { opacity: 0.75; }
.press-item__read i { font-size: 11px; }

/* --- Responsive -------------------------------------------- */
@media (max-width: 900px) {
  .press-about-section { padding: 56px 24px; }
  .press-about-section h2 { font-size: 26px; margin-bottom: 28px; }
}
@media (max-width: 600px) {
  .press-about-section { padding: 48px 20px; }
}
