.cover-showcase {
  padding: 100px max(24px, calc((100vw - var(--max)) / 2));
  background: #fff;
}

.cover-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.cover-card {
  min-width: 0;
  border: 1px solid var(--line);
  background: #f7fafb;
  animation: coverPulse 6s ease-in-out infinite;
}

.cover-card:nth-child(3n+2) { animation-delay: -2s; }
.cover-card:nth-child(3n) { animation-delay: -4s; }
.cover-image { position: relative; height: 420px; overflow: hidden; background: #eaf3f6; }
.cover-image img { width: 100%; height: 100%; object-fit: contain; transition: transform .5s ease; }
.cover-card:hover .cover-image img { transform: scale(1.02); }
.cover-card > div:last-child { padding: 22px; }
.cover-card h3 { color: var(--navy); font-size: 1.55rem; line-height: 1.08; margin: 10px 0; }
.cover-card > div:last-child p:last-child { color: var(--muted); font-size: .86rem; font-weight: 700; }
.requested { outline: 4px solid var(--orange); outline-offset: 4px; }

.coverage-tools {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-top: 36px;
  padding: 18px;
  background: #fff;
  border-top: 4px solid var(--blue);
}
.coverage-tools label { display: grid; gap: 6px; width: min(520px,100%); color: var(--navy); font-size: .76rem; font-weight: 800; text-transform: uppercase; }
.coverage-tools input { height: 46px; border: 1px solid var(--line); padding: 0 13px; font: 500 1rem "DM Sans",sans-serif; }
.coverage-tools p { margin: 0; color: var(--muted); font-weight: 800; }

@keyframes coverPulse {
  0%,100% { box-shadow:0 12px 32px rgba(7,50,74,.08); transform:translateY(0); }
  50% { box-shadow:0 20px 45px rgba(255,105,0,.18); transform:translateY(-3px); }
}

.media-coverage {
  padding: 100px max(24px, calc((100vw - var(--max)) / 2));
  background: #edf6f9;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.coverage-card {
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
}

.coverage-card.cover {
  grid-column: span 2;
  border-top: 5px solid var(--orange);
}

.coverage-visual {
  min-width: 0;
  min-height: 190px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  font: 800 2rem/1.05 "Bricolage Grotesque", sans-serif;
}

.coverage-visual .media-logo {
  width: 88px;
  height: 88px;
  padding: 10px;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
}

.coverage-visual span,
.coverage-card h3 { overflow-wrap: anywhere; }

.coverage-card > div:last-child { padding: 24px; }
.coverage-card h3 { color: var(--navy); font-size: 1.65rem; }
.coverage-card a { display: inline-block; margin-top: 14px; color: var(--orange); font-weight: 800; }

@media (max-width: 900px) {
  .cover-gallery { grid-template-columns: 1fr 1fr; }
  .coverage-grid { grid-template-columns: 1fr 1fr; }
  .coverage-card.cover { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .cover-showcase { padding: 75px 20px; }
  .cover-gallery { grid-template-columns: 1fr; }
  .cover-image { height: 380px; }
  .coverage-tools { display: grid; align-items: stretch; }
  .media-coverage { padding: 75px 20px; }
  .coverage-grid { grid-template-columns: 1fr; }
  .coverage-card.cover { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .cover-card { animation: none; }
}

/* Newsroom hierarchy: coverage first, press releases after the full news archive. */
main { display: flex; flex-direction: column; }
.newsroom-hero { order: 1; min-height: 410px; padding-top: 58px; padding-bottom: 58px; }
.newsroom-hero h1 { font-size: clamp(3rem, 5vw, 5.5rem); }
.cover-showcase { order: 2; }
.media-coverage { order: 3; }
.archive { order: 4; width: 100%; }
.article-view { order: 5; width: 100%; }

.cover-gallery { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cover-image { height: 330px; }
.cover-card h3 { font-size: 1.3rem; }

.coverage-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.coverage-visual { min-height: 142px; padding: 20px; font-size: 1.45rem; }
.coverage-visual .media-logo { width: 64px; height: 64px; }
.coverage-card > div:last-child { padding: 20px; }
.coverage-card h3 { font-size: 1.35rem; line-height: 1.12; }

@media (max-width: 1080px) {
  .cover-gallery,
  .coverage-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .newsroom-hero { min-height: 0; }
  .cover-gallery,
  .coverage-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 520px) {
  .cover-gallery,
  .coverage-grid { grid-template-columns: 1fr; }
}
