.news-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.news-swiper {
  position: relative;
}

.news-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--yellow);
  background: var(--yellow);
  color: #000;
  box-shadow: 6px 6px 0 rgba(240, 18, 164, 0.82);
  transform: translateY(-50%) skewX(-8deg);
  transition:
    background 180ms ease,
    color 180ms ease;
}

.news-nav:hover {
  background: #000;
  color: var(--yellow);
}

.news-nav svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 3;
  transform: skewX(8deg);
}

.news-nav-prev {
  left: -6px;
}

.news-nav-next {
  right: -6px;
}

.news-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.44fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  padding: 14px;
  overflow: hidden;
  transform: skewX(-2deg);
}

.news-card.is-featured {
  grid-row: span 2;
  grid-template-columns: 1fr;
  min-height: 500px;
}

.news-thumb {
  position: relative;
  display: grid;
  min-height: 210px;
  place-items: center;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #050505;
  transform: skewX(2deg);
}

.news-card.is-featured .news-thumb {
  min-height: 300px;
}

.news-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.25) brightness(0.72) contrast(1.08);
  transition: transform 500ms ease;
}

.news-thumb:hover img {
  transform: scale(1.04);
}

.news-thumb::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 242, 0, 0.18), transparent 36%),
    linear-gradient(180deg, transparent 18%, rgba(0, 0, 0, 0.84));
  content: "";
}

.news-thumb .play-icon {
  position: relative;
  z-index: 1;
}

.news-thumb small {
  position: absolute;
  right: 12px;
  bottom: 10px;
  z-index: 1;
  padding: 7px 10px;
  border-left: 5px solid var(--yellow);
  background: rgba(0, 0, 0, 0.78);
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.news-copy {
  display: grid;
  align-content: center;
  gap: 8px;
  transform: skewX(2deg);
}

.news-copy > span {
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.news-copy h3 {
  font-size: clamp(1.45rem, 2.8vw, 3.2rem);
  line-height: 0.95;
}

.news-card:not(.is-featured) .news-copy h3 {
  font-size: clamp(1.25rem, 1.8vw, 2rem);
}

.news-copy p {
  color: #eeeae0;
}

.news-copy time {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

@media (max-width: 980px) {
  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-card.is-featured {
    grid-row: auto;
  }
}

@media (max-width: 720px) {
  .news-swiper {
    width: calc(100vw - 28px);
    margin-inline: calc((var(--shell) - 100vw + 28px) / 2);
  }

  .news-grid {
    display: flex;
    gap: 14px;
    width: 100%;
    overflow-x: auto;
    padding: 0 52px 12px;
    scroll-behavior: smooth;
    scroll-padding-inline: 52px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .news-grid::-webkit-scrollbar {
    display: none;
  }

  .news-card,
  .news-card.is-featured {
    flex: 0 0 min(76vw, 340px);
    grid-template-columns: 1fr;
    min-height: 0;
    scroll-snap-align: start;
  }

  .news-nav {
    display: grid;
  }

  .news-thumb,
  .news-card.is-featured .news-thumb {
    min-height: 220px;
  }
}
