:root {
  --media-light: #dce6f9;
  --media-pale: #eef2fb;
  --media-navy: #102694;
  --media-navy-2: #1330aa;
  --media-text: #11226d;
  --media-border: rgba(17, 39, 155, 0.16);
  --media-muted: rgba(18, 33, 93, 0.8);
}

.media-page {
  background: #f4f4f4;
}

.media-serif {
  font-family: 'IvyPresto Display Light Italic' !important;
  font-style: italic !important;
  font-weight: 400;
}

/* Ensure all elements on media page use Neue Haas Grotesk by default */
.media-page {
  font-family: "Neue Haas Grotesk Display Pro", Arial, sans-serif;
}

.media-page .media-serif,
.media-page .media-serif * {
  font-family: 'IvyPresto Display Light Italic' !important;
}

.media-hero {
  background: url("assets/banners/media.webp?v=3") center center / cover no-repeat;
  padding-bottom: 56px;
  height: 711px;
}



.media-nav-shell {
  background: rgba(245, 247, 251, 0.64);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.media-navbar {
  min-height: 58px;
  padding-top: 0;
  padding-bottom: 0;
}

.media-hero-copy {
  height: 711px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.media-hero-copy h1 {
  margin: 0;
  color: var(--media-navy);
  font-family: "Neue Haas Grotesk Display Pro 95 Black", "Neue Haas Grotesk Display Pro", Arial, sans-serif;
  font-size: clamp(32px, 3.6vw, 58px);
  line-height: 1.22;
  letter-spacing: -0.03em;
  font-weight: 400;
}

.media-section {
  background: #f4f4f4;
  padding: 80px 0 120px;
}

.media-section-light {
  background: var(--media-light);
  padding: 36px 0 32px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 60px;
}

.section-kicker {
  margin: 0;
  color: var(--media-text);
  font-size: 32px;
  line-height: 1;
}

.interview-card {
  display: grid;
  grid-template-columns: 1fr 1.04fr;
  border: 1px solid rgba(48, 70, 179, 0.42);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}

.interview-visual {
  min-height: 286px;
  background: url("assets/pictures/court.png") center center / cover no-repeat;
}

.interview-copy {
  padding: 38px 46px 34px 42px;
}

.interview-copy h2 {
  margin: 0 0 20px;
  color: var(--media-text);
  font-size: 42px;
  line-height: 1.1;
}

.interview-copy p {
  margin: 0 0 32px;
  color: #051143;
  font-size: 24px;
  line-height: 1.4;
  max-width: 100%;
}

.article-feature {
  display: grid;
  grid-template-columns: 1.48fr 1fr;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(6, 18, 73, 0.06);
}

.article-copy {
  background: var(--media-navy);
  color: #fff;
  padding: 64px 64px;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}



.article-tag {
  padding: 8px 34px;
  border-radius: 999px;
  background: rgba(221, 230, 255, 0.16);
  color: rgba(255, 255, 255, 0.94);
  font-size: 20px;
  display: inline-flex;
  align-items: center;
}

.article-copy h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 36px;
  line-height: 1.08;
  max-width: 520px;
}

.article-copy p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 24px;
  line-height: 1.4;
  max-width: 520px;
}

.article-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.article-action {
  height: 32px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  color: #fff;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.article-image {
  background: #fff;
  padding: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-image a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: url("assets/icons/play.png") center center / contain no-repeat;
  opacity: 0.9;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.article-image:hover .play-button-overlay {
  opacity: 1;
}

.article-list {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.article-row {
  display: grid;
  grid-template-columns: 290px 1fr 94px;
  align-items: center;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: background 0.3s ease, transform 0.2s ease;
}

.article-row:hover {
  background: #fdfdfd;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.article-row img {
  width: 100%;
  height: 100%;
  min-height: 96px;
  object-fit: cover;
}

.hidden-video-row {
  display: none !important;
}

.show-all-videos .hidden-video-row {
  display: grid !important;
}

.article-row-copy {
  padding: 40px 40px;
}

.article-row-copy h3 {
  margin: 0 0 8px;
  color: var(--media-text);
  font-size: 28px;
  line-height: 1.08;
  font-family: "Neue Haas Grotesk Display Pro", Arial, sans-serif;
  font-weight: 300;
}

.article-row-copy p {
  margin: 0 0 10px;
  color: var(--media-muted);
  font-size: 18px;
  line-height: 1.45;
  font-family: "Neue Haas Grotesk Display Pro", Arial, sans-serif;
}

.article-row-meta {
  color: rgba(18, 33, 93, 0.72);
  font-size: 16px;
}

.play-button {
  width: 60px;
  height: 60px;
  margin-right: 20px;
  background: url("assets/icons/play.png") center center / contain no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  opacity: 0.8;
  flex-shrink: 0;
}

.article-row:hover .play-button {
  opacity: 1;
}

.coverage-section {
  background: #f4f4f4;
  padding: 120px 0 120px;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 24px;
}

.coverage-card {
  display: flex;
  flex-direction: column;
}

.coverage-thumb {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  border-radius: 4px;
  background: #b4c3de;
  margin-bottom: 12px;
  overflow: hidden;
}

.coverage-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coverage-card p {
  margin: 0 0 10px;
  color: rgba(18, 33, 93, 0.86);
  font-size: 12px;
  line-height: 1.45;
}

.coverage-card a {
  color: var(--media-text);
  font-size: 12px;
  text-decoration: underline;
}

.coverage-meta {
  font-size: 18px;
}

.coverage-card h3 {
  font-size: 24px;
}

.coverage-card h3 a {
  font-size: inherit;
  text-decoration: none;
}

.coverage-card a.coverage-read-more {
  font-size: 24px;
}

.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.gallery-section {
  background: #f4f4f4;
  padding: 18px 0 52px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 14px;
}

.gallery-card {
  overflow: hidden;
  border-radius: 4px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-card.g1 {
  grid-column: 1;
  grid-row: 1;
}

.gallery-card.g4 {
  grid-column: 1;
  grid-row: 2;
}

.gallery-card.g2 {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.gallery-card.g3 {
  grid-column: 3;
  grid-row: 1;
}

.gallery-bottom-right {
  grid-column: 3;
  grid-row: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.media-page .footer {
  margin-top: 0;
}

@media (max-width: 1100px) {

  .interview-card,
  .article-feature,
  .coverage-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-rows: auto;
  }

  .gallery-card,
  .gallery-bottom-right {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .gallery-bottom-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .article-row {
    grid-template-columns: 140px 1fr 44px;
  }
}

@media (max-width: 760px) {
  .media-hero,
  .media-hero-copy {
    height: 356px;
    min-height: unset;
  }

  .media-hero-copy h1 {
    font-size: 28px !important;
  }

  .section-kicker {
    font-size: 22px !important;
  }

  .interview-copy h2 {
    font-size: 26px !important;
    line-height: 1.15 !important;
  }

  .interview-copy p {
    font-size: 17px !important;
    line-height: 1.4 !important;
  }

  .article-tag {
    font-size: 14px !important;
    padding: 6px 20px !important;
  }

  .article-copy h2 {
    font-size: 24px !important;
    line-height: 1.15 !important;
  }

  .article-copy p {
    font-size: 17px !important;
    line-height: 1.4 !important;
  }

  .article-row-copy h3 {
    font-size: 18px !important;
    line-height: 1.2 !important;
  }

  .article-row-copy p {
    font-size: 15px !important;
    line-height: 1.4 !important;
  }

  .interview-copy,
  .article-copy,
  .article-row-copy {
    padding-left: 20px;
    padding-right: 20px;
  }

  .article-row {
    grid-template-columns: 1fr;
  }

  .play-button {
    margin: 0 0 18px 20px;
  }

  .coverage-grid,
  .gallery-bottom-right {
    grid-template-columns: 1fr;
  }

  .coverage-meta {
    font-size: 16px;
  }
  
  .coverage-card h3 {
    font-size: 20px;
  }
  
  .coverage-card a.coverage-read-more {
    font-size: 18px;
  }
}