.media-news {
  background: #fff;
  color: #322F2E;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* === Mobile-first media page refresh ================================= */

.media-news__hero {
  min-height: auto;
  padding: 108px 0 42px;
}

.media-news__hero-bg {
  clip-path: none;
  background: linear-gradient(135deg, #17202f 0%, #302C74 100%);
}

.media-news__hero-numbers,
.media-news__hero-scroll {
  display: none;
}

.media-news__hero-text h1 {
  font-size: 44px;
  line-height: 1.02;
  letter-spacing: 0;
}

.media-news__hero-stats {
  gap: 12px;
}

.media-news__stat {
  padding: 18px 16px;
}

.media-news__featured {
  padding: 52px 0;
}

.media-news__featured-accent {
  display: none;
}

.media-news__section-head--with-controls {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 24px;
}

.media-news__news-controls {
  display: flex;
  gap: 8px;
}

.media-news__news-arrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23, 32, 47, .12);
  border-radius: 999px;
  background: #fff;
  color: #17202f;
  cursor: pointer;
}

.media-news__news-arrow:hover,
.media-news__news-arrow:focus-visible {
  border-color: #302C74;
  background: #302C74;
  color: #fff;
}

.media-news__news-arrow svg {
  width: 20px;
  height: 20px;
}

.media-news__news-slider {
  min-height: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: none;
}

.media-news__news-slide {
  position: relative;
  inset: auto;
  display: none;
  grid-template-rows: auto auto;
  border: 1px solid rgba(23, 32, 47, .10);
  color: #17202f;
  opacity: 1;
  animation: none !important;
}

.media-news__news-slide.is-active {
  display: grid;
}

.media-news__news-image {
  min-height: 210px;
  aspect-ratio: 16 / 9;
}

.media-news__news-body {
  gap: 12px;
  padding: 22px;
}

.media-news__news-body strong {
  font-size: 24px;
  line-height: 1.12;
}

.media-news__news-body em {
  font-size: 14px;
  line-height: 1.55;
}

.media-news__slider-dots {
  gap: 8px;
  margin-top: 16px;
}

.media-news__slider-dots button {
  width: 30px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(48, 44, 116, .16);
  cursor: pointer;
}

.media-news__slider-dots button.is-active {
  background: #302C74;
}

.media-news__slider-dots span {
  display: none;
}

.media-news__videos {
  padding: 54px 0;
}

.media-news__split-head {
  margin-bottom: 24px;
}

.media-news__video-grid {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 0 0 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.media-news__video-card,
.media-news__video-card:not(.is-feature) {
  flex: 0 0 min(82vw, 360px);
  width: min(82vw, 360px);
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid rgba(255, 255, 255, .14);
  text-align: left;
  scroll-snap-align: start;
  cursor: pointer;
}

.media-news__video-card:not(.is-feature) .media-news__video-thumb {
  min-height: auto;
  aspect-ratio: 16 / 9;
}

.media-news__video-card.is-feature {
  flex-basis: min(88vw, 430px);
}

.media-news__video-card:focus-visible {
  outline: 3px solid rgba(218, 16, 24, .45);
  outline-offset: 3px;
}

.media-news__video-modal[hidden] {
  display: none;
}

.media-news__video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 18px;
}

.media-news__video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 13, .82);
}

.media-news__video-modal-dialog {
  position: relative;
  width: min(100%, 960px);
  display: grid;
  gap: 12px;
  padding: 12px;
  background: #fff;
  color: #17202f;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .36);
}

.media-news__video-modal-frame {
  aspect-ratio: 16 / 9;
  background: #05070a;
}

.media-news__video-modal-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.media-news__video-modal-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: #DA1018;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.media-news__newsletter {
  display: none;
}

@media (min-width: 900px) {
  .media-news__hero {
    padding: 130px 0 70px;
  }

  .media-news__news-slide.is-active {
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, .8fr);
    grid-template-rows: 1fr;
  }

  .media-news__news-image {
    min-height: 430px;
  }

  .media-news__video-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, .7fr);
    overflow: visible;
  }

  .media-news__video-card,
  .media-news__video-card:not(.is-feature) {
    width: auto;
    flex-basis: auto;
  }
}

.media-news * {
  box-sizing: border-box;
}

.media-news__accent {
  color: #DA1018;
}

.media-news__shell {
  width: min(100% - 36px, 1600px);
  margin: 0 auto;
  padding: 0 12px;
}

/* === Hero ============================================================ */

.media-news__hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  padding: 120px 0 80px;
}

.media-news__hero-bg {
  position: absolute;
  inset: 0;
  background: #302C74;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  z-index: 0;
}

.media-news__hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(218, 16, 24, .22), transparent 55%, rgba(48, 44, 116, .4));
}

.media-news__hero-numbers {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  color: rgba(255, 255, 255, .05);
  font-weight: 800;
  font-family: inherit;
  line-height: 1;
}

.media-news__hero-number {
  position: absolute;
  font-size: clamp(160px, 22vw, 320px);
}

.media-news__hero-number--tr {
  top: 60px;
  right: 60px;
}

.media-news__hero-number--bl {
  bottom: 80px;
  left: 60px;
  font-size: clamp(220px, 30vw, 420px);
}

.media-news__hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr;
  align-items: center;
}

.media-news__hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, .8);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}

.media-news__hero-line {
  display: block;
  width: 72px;
  height: 1px;
  background: #DA1018;
}

.media-news__hero-text h1 {
  margin: 0 0 24px;
  font-size: clamp(56px, 9vw, 140px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.media-news__hero-text p {
  margin: 0;
  max-width: 520px;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(16px, 1.5vw, 22px);
  line-height: 1.55;
  font-weight: 300;
}

.media-news__hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.media-news__stat {
  padding: 28px 24px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .18);
}

.media-news__stat--accent {
  margin-top: 40px;
}

.media-news__stat-value {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  line-height: 1;
}

.media-news__stat--accent .media-news__stat-value {
  color: #DA1018;
}

.media-news__stat-label {
  display: block;
  color: rgba(255, 255, 255, .58);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.media-news__hero-scroll {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .55);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  z-index: 3;
  animation: media-news-bounce 1.8s ease-in-out infinite;
}

.media-news__hero-scroll span:first-child {
  transform: rotate(90deg);
}

.media-news__hero-scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, .3);
}

@keyframes media-news-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* === Featured ======================================================== */

.media-news__featured {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: #fff;
}

.media-news__featured-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 33%;
  height: 100%;
  background: #f8f8f8;
  transform: skewX(-12deg);
  transform-origin: top right;
}

.media-news__section-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.media-news__section-head svg {
  width: 30px;
  height: 30px;
  color: #DA1018;
}

.media-news__section-head h2 {
  margin: 0;
  color: #322F2E;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.media-news__featured-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

.media-news__featured-image {
  position: relative;
  display: block;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 10;
}

.media-news__featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.media-news__featured-image:hover img {
  transform: scale(1.08);
}

.media-news__featured-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .8), rgba(0, 0, 0, .2) 60%, transparent);
}

.media-news__category-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  padding: 8px 16px;
  background: #DA1018;
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.media-news__featured-body {
  padding: 36px 32px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(48, 44, 116, .12);
}

.media-news__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #6b6b6b;
  font-size: 13px;
}

.media-news__meta svg {
  width: 16px;
  height: 16px;
}

.media-news__meta-divider {
  width: 1px;
  height: 12px;
  background: #d6d6d6;
}

.media-news__featured-body h3 {
  margin: 0 0 16px;
  color: #322F2E;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 700;
  line-height: 1.18;
}

.media-news__featured-body p {
  margin: 0 0 24px;
  color: #6b6b6b;
  font-size: 16px;
  line-height: 1.7;
}

.media-news__read-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #302C74;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
}

.media-news__read-link svg {
  width: 18px;
  height: 18px;
  transition: transform .25s ease;
}

.media-news__read-link:hover svg {
  transform: translateX(6px);
}

.media-news__featured--slider {
  padding-bottom: 126px;
}

.media-news__news-slider {
  position: relative;
  z-index: 1;
  min-height: clamp(620px, 66vw, 780px);
  overflow: hidden;
  background: #111;
  box-shadow: 0 34px 88px rgba(48, 44, 116, .14);
}

.media-news__news-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: minmax(300px, 1.1fr) auto;
  color: inherit;
  text-decoration: none;
  opacity: 0;
  animation: media-news-slide calc(var(--slide-count) * 5s) infinite;
  animation-delay: calc(var(--slide-index) * 5s);
}

.media-news__news-slide:first-child {
  opacity: 1;
}

.media-news__news-image {
  position: relative;
  display: block;
  min-height: 300px;
  overflow: hidden;
  background: #000;
}

.media-news__news-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, .62));
  pointer-events: none;
}

.media-news__news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.media-news__news-body {
  display: grid;
  gap: 16px;
  padding: clamp(28px, 4vw, 58px);
  background: #fff;
}

.media-news__news-body .media-news__category-tag {
  position: static;
  width: max-content;
}

.media-news__news-body .media-news__meta {
  margin: 0;
}

.media-news__news-body strong {
  max-width: 760px;
  color: #322F2E;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.05;
}

.media-news__news-body em {
  max-width: 720px;
  color: #6b6b6b;
  font-size: 17px;
  font-style: normal;
  line-height: 1.7;
}

.media-news__slider-dots {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.media-news__slider-dots span {
  width: 42px;
  height: 3px;
  background: rgba(48, 44, 116, .18);
  animation: media-news-dot calc(var(--slide-count, 3) * 5s) infinite;
  animation-delay: calc(var(--slide-index) * 5s);
}

@keyframes media-news-slide {
  0%, 28% {
    opacity: 1;
    z-index: 2;
  }
  34%, 100% {
    opacity: 0;
    z-index: 1;
  }
}

@keyframes media-news-dot {
  0%, 28% { background: #DA1018; }
  34%, 100% { background: rgba(48, 44, 116, .18); }
}

@media (prefers-reduced-motion: reduce) {
  .media-news__news-slide,
  .media-news__slider-dots span {
    animation: none;
  }

  .media-news__news-slide:not(:first-child) {
    display: none;
  }
}

/* === Trending ========================================================= */

.media-news__trending {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: #322F2E;
  color: #fff;
}

.media-news__trending-accent {
  position: absolute;
  top: 0;
  left: -25%;
  width: 50%;
  height: 100%;
  background: rgba(218, 16, 24, .18);
  transform: skewY(-3deg);
}

.media-news__trending-head {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}

.media-news__trending-head h2 {
  margin: 0 0 14px;
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.media-news__trending-bar {
  display: block;
  width: 86px;
  height: 4px;
  background: #DA1018;
}

.media-news__trending-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.media-news__trending-item {
  display: block;
  color: inherit;
  text-decoration: none;
  transform: translateY(var(--offset, 0));
}

.media-news__trending-image {
  position: relative;
  display: block;
  margin-bottom: 22px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 4 / 3;
}

.media-news__trending-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter .7s ease, transform .7s ease;
}

.media-news__trending-item:hover .media-news__trending-image img {
  filter: grayscale(0);
  transform: scale(1.05);
}

.media-news__category-chip {
  position: absolute;
  top: 22px;
  left: 22px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, .22);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.media-news__category-chip--light {
  position: static;
  background: rgba(48, 44, 116, .1);
  color: #302C74;
  backdrop-filter: none;
}

.media-news__meta--light {
  color: rgba(255, 255, 255, .5);
  margin-bottom: 12px;
}

.media-news__trending-item h3 {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 700;
  line-height: 1.16;
  transition: color .25s ease;
}

.media-news__trending-item:hover h3 {
  color: #DA1018;
}

/* === Categories Bar =================================================== */

.media-news__categories {
  position: sticky;
  top: 88px;
  z-index: 20;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e6e6e6;
  padding: 20px 0;
}

.media-news__categories-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.media-news__category-btn {
  flex: 0 0 auto;
  padding: 8px 22px;
  border: 0;
  background: #f3f3f5;
  color: #322F2E;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: all .25s ease;
}

.media-news__category-btn:hover {
  background: #302C74;
  color: #fff;
}

.media-news__category-btn.is-active {
  background: #302C74;
  color: #fff;
  font-weight: 700;
}

/* === Recent / Bento =================================================== */

.media-news__recent {
  padding: 100px 0;
  background: #fff;
}

.media-news__recent-head {
  margin-bottom: 64px;
}

.media-news__recent-head h2 {
  margin: 0 0 14px;
  color: #322F2E;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.01em;
}

.media-news__recent-head p {
  margin: 0;
  color: #6b6b6b;
  font-size: 18px;
}

.media-news__bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.media-news__bento-item {
  display: block;
  color: inherit;
  text-decoration: none;
}

.media-news__bento-image {
  display: block;
  margin-bottom: 22px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 1 / 1;
}

.media-news__bento-item.is-feature .media-news__bento-image {
  aspect-ratio: 16 / 9;
}

.media-news__bento-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.media-news__bento-item:hover .media-news__bento-image img {
  transform: scale(1.08);
}

.media-news__bento-body {
  display: grid;
  gap: 14px;
}

.media-news__bento-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.media-news__bento-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #6b6b6b;
}

.media-news__bento-date svg {
  width: 13px;
  height: 13px;
}

.media-news__bento-item h3 {
  margin: 0;
  color: #322F2E;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.18;
  transition: color .25s ease;
}

.media-news__bento-item.is-feature h3 {
  font-size: clamp(26px, 3vw, 38px);
}

.media-news__bento-item:hover h3 {
  color: #302C74;
}

.media-news__bento-item p {
  margin: 0;
  color: #6b6b6b;
  font-size: 15px;
  line-height: 1.6;
}

.media-news__read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  color: #302C74;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: gap .25s ease;
}

.media-news__read-more svg {
  width: 16px;
  height: 16px;
}

.media-news__bento-item:hover .media-news__read-more {
  gap: 14px;
}

.media-news__empty {
  padding: 64px 32px;
  text-align: center;
  color: #6b6b6b;
  font-size: 15px;
  background: #f8f8f8;
  border: 1px dashed #d6d6d6;
}

/* === Video / YouTube ================================================== */

.media-news__videos {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 8vw, 120px) 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(218, 16, 24, .22), transparent 30%),
    linear-gradient(135deg, #111215 0%, #27245f 48%, #151519 100%);
  color: #fff;
}

.media-news__videos::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.media-news__videos .media-news__shell {
  position: relative;
  z-index: 1;
}

.media-news__split-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: end;
  margin-bottom: 58px;
}

.media-news__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #DA1018;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.media-news__kicker::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

.media-news__split-head h2 {
  max-width: 720px;
  margin: 0;
  color: #322F2E;
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.01em;
}

.media-news__split-head p {
  max-width: 560px;
  margin: 0;
  color: #6b6b6b;
  font-size: 17px;
  line-height: 1.7;
}

.media-news__videos .media-news__split-head h2 {
  color: #fff;
}

.media-news__videos .media-news__split-head p {
  color: rgba(255, 255, 255, .68);
}

.media-news__video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.media-news__video-grid--single {
  max-width: 1060px;
}

.media-news__video-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .22);
  transition: transform .28s ease, border-color .28s ease, background .28s ease;
}

.media-news__video-card:hover {
  border-color: rgba(218, 16, 24, .72);
  background: rgba(255, 255, 255, .09);
  transform: translateY(-4px);
}

.media-news__video-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #111;
}

.media-news__video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, .6));
  pointer-events: none;
}

.media-news__video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.95) contrast(1.04);
  transition: filter .55s ease, transform .65s ease;
}

.media-news__video-card:hover .media-news__video-thumb img {
  filter: saturate(1.08) contrast(1.08);
  transform: scale(1.06);
}

.media-news__video-play {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #DA1018;
  color: #fff;
  box-shadow: 0 18px 34px rgba(0, 0, 0, .26);
}

.media-news__video-card:not(.is-feature) .media-news__video-play {
  width: 42px;
  height: 42px;
  left: 14px;
  bottom: 14px;
}

.media-news__video-card:not(.is-feature) .media-news__video-play svg {
  width: 18px;
  height: 18px;
}

.media-news__video-play svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  transform: translateX(2px);
}

.media-news__video-duration {
  position: absolute;
  right: 16px;
  bottom: 18px;
  padding: 5px 9px;
  background: rgba(0, 0, 0, .72);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.media-news__video-body {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.media-news__video-body small {
  color: #DA1018;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.media-news__video-body strong {
  color: #fff;
  font-size: 19px;
  font-weight: 750;
  line-height: 1.18;
}

/* === Construction Updates ============================================ */

.media-news__construction {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background: #322F2E;
  color: #fff;
}

.media-news__construction::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -12%;
  width: 42%;
  background: rgba(218, 16, 24, .16);
  transform: skewX(-12deg);
}

.media-news__construction .media-news__shell {
  position: relative;
  z-index: 1;
}

.media-news__split-head--light h2 {
  color: #fff;
}

.media-news__split-head--light p {
  color: rgba(255, 255, 255, .66);
}

.media-news__construction-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.media-news__construction-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, .055);
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .08);
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
}

.media-news__construction-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, .085);
  border-color: rgba(218, 16, 24, .52);
}

.media-news__construction-image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #111;
}

.media-news__construction-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease;
}

.media-news__construction-card:hover .media-news__construction-image img {
  transform: scale(1.055);
}

.media-news__construction-image span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 7px 12px;
  background: #DA1018;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.media-news__construction-body {
  display: grid;
  gap: 12px;
  padding: 26px;
}

.media-news__construction-body small {
  color: rgba(255, 255, 255, .52);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.media-news__construction-body strong {
  color: #fff;
  font-size: 24px;
  font-weight: 760;
  line-height: 1.12;
}

.media-news__construction-body em {
  color: rgba(255, 255, 255, .68);
  font-size: 15px;
  font-style: normal;
  line-height: 1.65;
}

/* === Akol Blog Creative Cards ======================================== */

.media-news__blog-ribbon {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.media-news__blog-number {
  position: absolute;
  right: 18px;
  bottom: 14px;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 800;
  line-height: .8;
}

/* === Newsletter ======================================================= */

.media-news__newsletter {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  color: #fff;
}

.media-news__newsletter-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #302C74 0%, #322F2E 60%, #000 120%);
}

.media-news__newsletter-accent {
  position: absolute;
  top: 0;
  right: -10%;
  width: 50%;
  height: 100%;
  background: rgba(218, 16, 24, .12);
  transform: skewX(-12deg);
  z-index: 0;
}

.media-news__newsletter-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.media-news__newsletter-inner h2 {
  margin: 0 0 22px;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.media-news__newsletter-inner p {
  max-width: 520px;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, .7);
  font-size: 19px;
  line-height: 1.55;
}

.media-news__newsletter-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.media-news__newsletter-form input[type="email"] {
  flex: 1;
  padding: 18px 22px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, .22);
  color: #fff;
  font: inherit;
  font-size: 15px;
  outline: 0;
  transition: border-color .22s ease;
}

.media-news__newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, .55);
}

.media-news__newsletter-form input[type="email"]:focus {
  border-color: #DA1018;
}

.media-news__newsletter-form button {
  padding: 18px 36px;
  background: #DA1018;
  border: 0;
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s ease;
}

.media-news__newsletter-form button:hover {
  background: #fff;
  color: #DA1018;
}

@media (min-width: 640px) {
  .media-news__newsletter-form {
    flex-direction: row;
  }
}

@media (min-width: 900px) {
  .media-news__hero-inner {
    grid-template-columns: 7fr 5fr;
    gap: 80px;
  }

  .media-news__featured-grid {
    grid-template-columns: 7fr 5fr;
    gap: 0;
    align-items: center;
  }

  .media-news__featured-image {
    margin-right: -80px;
  }

  .media-news__featured-body {
    position: relative;
    z-index: 2;
    padding: 56px 56px;
  }

  .media-news__news-slide {
    grid-template-columns: minmax(0, 1.35fr) minmax(420px, .85fr);
    grid-template-rows: 1fr;
  }

  .media-news__news-image {
    min-height: 620px;
  }

  .media-news__news-body {
    align-content: center;
  }

  .media-news__trending-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
  }

  .media-news__bento {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
  }

  .media-news__bento-item.is-feature {
    grid-column: span 2;
    grid-row: span 2;
  }

  .media-news__split-head {
    grid-template-columns: 1fr .62fr;
    gap: 44px;
  }

  .media-news__video-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, .72fr);
    gap: 14px 28px;
    align-items: start;
  }

  .media-news__video-grid--single {
    grid-template-columns: minmax(0, 1fr);
  }

  .media-news__video-card.is-feature {
    grid-row: 1 / span 5;
  }

  .media-news__video-grid--single .media-news__video-card.is-feature {
    grid-row: auto;
  }

  .media-news__video-card.is-feature .media-news__video-thumb {
    aspect-ratio: 16 / 9;
  }

  .media-news__video-card.is-feature .media-news__video-body {
    padding: 24px 26px 28px;
  }

  .media-news__video-card.is-feature .media-news__video-body strong {
    font-size: clamp(26px, 2.5vw, 38px);
  }

  .media-news__video-card:not(.is-feature) {
    grid-column: 2;
    grid-template-columns: 154px minmax(0, 1fr);
    align-items: stretch;
  }

  .media-news__video-card:not(.is-feature) .media-news__video-thumb {
    height: 100%;
    min-height: 106px;
    aspect-ratio: auto;
  }

  .media-news__video-card:not(.is-feature) .media-news__video-duration {
    display: none;
  }

  .media-news__video-card:not(.is-feature) .media-news__video-body {
    align-content: center;
    padding: 16px 18px;
  }

  .media-news__video-card:not(.is-feature) .media-news__video-body strong {
    font-size: 17px;
  }

  .media-news__construction-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .media-news__construction-card:nth-child(even) {
    transform: translateY(34px);
  }

  .media-news__construction-card:nth-child(even):hover {
    transform: translateY(28px);
  }

  .media-news__blog-ribbon {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: start;
  }

  .media-news__blog-ribbon .media-news__bento-item.is-feature {
    grid-column: span 2;
  }

  .media-news__blog-ribbon .media-news__bento-item:nth-child(4),
  .media-news__blog-ribbon .media-news__bento-item:nth-child(5) {
    margin-top: 54px;
  }
}

/* Final media overrides: keep mobile compact and controllable. */
.media-news__hero { min-height: auto !important; padding: 108px 0 42px !important; }
.media-news__hero-bg { clip-path: none !important; background: linear-gradient(135deg, #17202f 0%, #302C74 100%) !important; }
.media-news__hero-numbers, .media-news__hero-scroll, .media-news__featured-accent, .media-news__newsletter { display: none !important; }
.media-news__hero-text h1 { font-size: clamp(42px, 7vw, 78px) !important; line-height: 1.02 !important; letter-spacing: 0 !important; }
.media-news__featured { padding: 52px 0 !important; }
.media-news__section-head--with-controls { display: flex !important; justify-content: space-between !important; align-items: flex-end !important; gap: 18px !important; margin-bottom: 24px !important; }
.media-news__news-controls { display: flex !important; gap: 8px !important; }
.media-news__news-arrow { width: 42px !important; height: 42px !important; display: grid !important; place-items: center !important; border: 1px solid rgba(23,32,47,.12) !important; border-radius: 999px !important; background: #fff !important; color: #17202f !important; cursor: pointer !important; }
.media-news__news-arrow:hover, .media-news__news-arrow:focus-visible { border-color: #302C74 !important; background: #302C74 !important; color: #fff !important; }
.media-news__news-arrow svg { width: 20px !important; height: 20px !important; }
.media-news__news-slider { min-height: 0 !important; overflow: hidden !important; background: #fff !important; box-shadow: none !important; }
.media-news__news-slide { position: relative !important; inset: auto !important; display: none !important; grid-template-rows: auto auto !important; border: 1px solid rgba(23,32,47,.10) !important; color: #17202f !important; opacity: 1 !important; animation: none !important; }
.media-news__news-slide.is-active { display: grid !important; }
.media-news__news-image { min-height: 210px !important; aspect-ratio: 16 / 9 !important; }
.media-news__news-body { gap: 12px !important; padding: 22px !important; }
.media-news__news-body strong { font-size: clamp(24px, 4vw, 42px) !important; line-height: 1.12 !important; }
.media-news__news-body em { font-size: 14px !important; line-height: 1.55 !important; }
.media-news__slider-dots { gap: 8px !important; margin-top: 16px !important; }
.media-news__slider-dots span { display: none !important; }
.media-news__slider-dots button { width: 30px !important; height: 4px !important; border: 0 !important; border-radius: 999px !important; background: rgba(48,44,116,.16) !important; cursor: pointer !important; }
.media-news__slider-dots button.is-active { background: #302C74 !important; }
.media-news__videos { padding: 54px 0 !important; }
.media-news__split-head { margin-bottom: 24px !important; }
.media-news__video-grid { display: flex !important; gap: 14px !important; overflow-x: auto !important; padding: 0 0 12px !important; scroll-snap-type: x mandatory !important; -webkit-overflow-scrolling: touch !important; }
.media-news__video-card, .media-news__video-card:not(.is-feature) { flex: 0 0 min(82vw, 360px) !important; width: min(82vw, 360px) !important; display: grid !important; grid-template-columns: 1fr !important; text-align: left !important; scroll-snap-align: start !important; cursor: pointer !important; }
.media-news__video-card:not(.is-feature) .media-news__video-thumb { min-height: auto !important; aspect-ratio: 16 / 9 !important; }
.media-news__video-card.is-feature { flex-basis: min(88vw, 430px) !important; }
.media-news__video-card:focus-visible { outline: 3px solid rgba(218,16,24,.45) !important; outline-offset: 3px !important; }
.media-news__video-modal[hidden] { display: none !important; }
.media-news__video-modal { position: fixed !important; inset: 0 !important; z-index: 2000 !important; display: grid !important; place-items: center !important; padding: 18px !important; }
.media-news__video-modal-backdrop { position: absolute !important; inset: 0 !important; background: rgba(5,8,13,.82) !important; }
.media-news__video-modal-dialog { position: relative !important; width: min(100%, 960px) !important; display: grid !important; gap: 12px !important; padding: 12px !important; background: #fff !important; color: #17202f !important; box-shadow: 0 34px 90px rgba(0,0,0,.36) !important; }
.media-news__video-modal-frame { aspect-ratio: 16 / 9 !important; background: #05070a !important; }
.media-news__video-modal-frame iframe { width: 100% !important; height: 100% !important; border: 0 !important; }
.media-news__video-modal-close { position: absolute !important; top: -14px !important; right: -14px !important; width: 38px !important; height: 38px !important; border: 0 !important; border-radius: 999px !important; background: #DA1018 !important; color: #fff !important; font-size: 26px !important; line-height: 1 !important; cursor: pointer !important; }
.media-news:not(.media-news-show-video-labels) .media-news__video-duration,
.media-news:not(.media-news-show-video-labels) .media-news__video-body small {
  display: none !important;
}

.media-news:not(.media-news-show-blog) .media-news__recent {
  display: none !important;
}

.media-news.media-news-size-normal .media-news__news-image {
  min-height: 260px !important;
}

.media-news.media-news-size-large .media-news__news-image {
  min-height: 340px !important;
}

@media (min-width: 900px) {
  .media-news__hero { padding: 130px 0 70px !important; }
  .media-news__news-slide.is-active { grid-template-columns: minmax(0, 1.1fr) minmax(360px, .8fr) !important; grid-template-rows: 1fr !important; }
  .media-news__news-image { min-height: 430px !important; }
  .media-news__video-grid { display: grid !important; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .7fr) !important; overflow: visible !important; }
  .media-news__video-card, .media-news__video-card:not(.is-feature) { width: auto !important; flex-basis: auto !important; }
}

@media (max-width: 680px) {
  .media-news__hero { padding: 96px 0 30px !important; }
  .media-news__hero-text p,
  .media-news__split-head p { font-size: 14px !important; line-height: 1.55 !important; }
  .media-news__section-head--with-controls { align-items: center !important; }
  .media-news__news-image { min-height: 176px !important; }
  .media-news__news-body { padding: 18px !important; }
  .media-news__news-body strong { font-size: 22px !important; }
  .media-news__videos { padding: 40px 0 34px !important; }
  .media-news__video-grid::-webkit-scrollbar { display: none !important; }
  .media-news__shell { width: min(100% - 28px, 1180px) !important; }
  .media-news__featured { padding: 34px 0 !important; }
  .media-news__news-controls {
    position: absolute !important;
    left: 12px !important;
    right: 12px !important;
    top: 50% !important;
    z-index: 5 !important;
    justify-content: space-between !important;
    pointer-events: none !important;
  }
  .media-news__news-arrow {
    pointer-events: auto !important;
    width: 38px !important;
    height: 38px !important;
    box-shadow: 0 10px 28px rgba(23,32,47,.18) !important;
  }
  .media-news__featured .media-news__shell {
    position: relative !important;
  }
  .media-news__news-body em,
  .media-news__read-link {
    display: none !important;
  }
  .media-news__video-card,
  .media-news__video-card:not(.is-feature),
  .media-news__video-card.is-feature {
    flex-basis: min(72vw, 260px) !important;
    width: min(72vw, 260px) !important;
  }
  .media-news__video-body {
    padding: 12px 13px !important;
  }
  .media-news__video-body strong {
    font-size: 14px !important;
    line-height: 1.25 !important;
  }
}

/* Final media mobile controls/video polish. */
.media-news__featured .media-news__news-controls {
  width: 100% !important;
  margin: 18px 0 0 !important;
  display: flex !important;
  justify-content: center !important;
  gap: 12px !important;
  order: 3 !important;
}

.media-news__section-head--with-controls {
  display: block !important;
}

.media-news__video-grid {
  scroll-behavior: smooth !important;
  overscroll-behavior-x: contain !important;
}

.media-news__video-body small,
.media-news__video-duration {
  display: none !important;
}

.media-news__video-body {
  padding: 13px 14px 15px !important;
}

.media-news__video-body strong {
  display: block !important;
  color: #17202f !important;
  font-size: 16px !important;
  line-height: 1.25 !important;
}

@media (max-width: 680px) {
  .media-news__news-controls {
    position: static !important;
    transform: none !important;
  }

  .media-news__slider-dots {
    margin-top: 10px !important;
  }

  .media-news__split-head {
    margin-bottom: 16px !important;
  }

  .media-news__split-head p {
    display: none !important;
  }

  .media-news__video-grid {
    display: flex !important;
    gap: 12px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 0 4px 14px !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .media-news__video-card,
  .media-news__video-card:not(.is-feature),
  .media-news__video-card.is-feature {
    flex: 0 0 min(78vw, 318px) !important;
    width: min(78vw, 318px) !important;
    scroll-snap-align: start !important;
  }
}

/* Promotional videos: featured left, stacked cards right, brighter thumbs. */
.media-news__videos .media-news__video-grid {
  align-items: start !important;
}

.media-news__videos .media-news__video-card {
  border: 1px solid rgba(255, 255, 255, .16) !important;
  background: rgba(255, 255, 255, .08) !important;
}

.media-news__videos .media-news__video-thumb {
  background: rgba(8, 10, 18, .72) !important;
}

.media-news__videos .media-news__video-thumb::after {
  background: linear-gradient(180deg, rgba(6, 8, 14, .04) 0%, rgba(6, 8, 14, .22) 100%) !important;
}

.media-news__videos .media-news__video-thumb img {
  display: block !important;
  opacity: 1 !important;
  filter: saturate(1.05) contrast(1.04) brightness(1.04) !important;
}

.media-news__videos .media-news__video-card:hover .media-news__video-thumb img {
  filter: saturate(1.1) contrast(1.06) brightness(1.06) !important;
}

.media-news__videos .media-news__video-body {
  background: rgba(255, 255, 255, .06) !important;
}

.media-news__videos .media-news__video-body strong {
  color: #fff !important;
}

@media (min-width: 900px) {
  .media-news__videos .media-news__video-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, .75fr) !important;
    gap: 18px 28px !important;
    overflow: visible !important;
  }

  .media-news__videos .media-news__video-card.is-feature {
    grid-column: 1 !important;
    grid-row: 1 / span 6 !important;
    width: 100% !important;
  }

  .media-news__videos .media-news__video-card.is-feature .media-news__video-thumb {
    min-height: 520px !important;
    aspect-ratio: auto !important;
  }

  .media-news__videos .media-news__video-card.is-feature .media-news__video-body {
    padding: 22px 24px 24px !important;
  }

  .media-news__videos .media-news__video-card.is-feature .media-news__video-body strong {
    font-size: clamp(26px, 2.4vw, 34px) !important;
    line-height: 1.12 !important;
  }

  .media-news__videos .media-news__video-card:not(.is-feature) {
    grid-column: 2 !important;
    display: grid !important;
    grid-template-columns: 168px minmax(0, 1fr) !important;
    min-height: 122px !important;
    width: 100% !important;
  }

  .media-news__videos .media-news__video-card:not(.is-feature) .media-news__video-thumb {
    min-height: 122px !important;
    aspect-ratio: auto !important;
  }

  .media-news__videos .media-news__video-card:not(.is-feature) .media-news__video-body {
    align-content: center !important;
    padding: 16px 18px !important;
  }

  .media-news__videos .media-news__video-card:not(.is-feature) .media-news__video-body strong {
    font-size: 18px !important;
    line-height: 1.18 !important;
  }
}

@media (max-width: 899px) {
  .media-news__videos .media-news__video-grid {
    display: flex !important;
    gap: 14px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding-bottom: 12px !important;
  }

  .media-news__videos .media-news__video-card,
  .media-news__videos .media-news__video-card.is-feature,
  .media-news__videos .media-news__video-card:not(.is-feature) {
    flex: 0 0 min(82vw, 360px) !important;
    width: min(82vw, 360px) !important;
    grid-template-columns: 1fr !important;
  }

  .media-news__videos .media-news__video-card.is-feature .media-news__video-thumb,
  .media-news__videos .media-news__video-card:not(.is-feature) .media-news__video-thumb {
    min-height: auto !important;
    aspect-ratio: 16 / 9 !important;
  }
}
