.shock-featured-grid {
  --shock-bg: #050505;
  --shock-panel: #0b0b0b;
  --shock-text: #f2f0ea;
  --shock-muted: #d7d1c7;
  --shock-accent: #f6d21a;
  --shock-accent-dark: #6e5430;
  --shock-radius: 3px;
  display: grid;
  gap: 1.25rem;
  color: var(--shock-text);
}

.shock-featured-grid a {
  color: inherit;
  text-decoration: none;
}

.shock-featured-grid__lead {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(320px, 1fr);
  background: var(--shock-bg);
  overflow: hidden;
  min-height: 420px;
}

.shock-featured-grid__visual,
.shock-featured-grid__image-link {
  display: block;
  height: 100%;
}

.shock-featured-grid__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shock-featured-grid__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1.75rem 1.6rem;
  background: var(--shock-bg);
}

.shock-featured-grid__badge,
.shock-featured-grid__card-badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  min-height: 1.5rem;
  padding: 0.12rem 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--shock-radius);
}

.shock-featured-grid__title {
  margin: 1rem 0 1rem;
  color: var(--shock-accent);
  font-size: clamp(2rem, 2vw + 1.2rem, 3.25rem);
  line-height: 1.05;
  font-style: italic;
  font-weight: 800;
}

.shock-featured-grid__leadtext {
  margin: 0;
  max-width: 30rem;
  color: var(--shock-muted);
  font-size: 1rem;
  line-height: 1.55;
}

.shock-featured-grid__rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.shock-featured-grid__card {
  min-width: 0;
}

.shock-featured-grid__card-media {
  position: relative;
  display: block;
  aspect-ratio: 1.3 / 0.78;
  overflow: hidden;
  background: #161616;
  border-radius: var(--shock-radius);
}

.shock-featured-grid__card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.shock-featured-grid__card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.65rem;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06) 10%, rgba(0, 0, 0, 0.82) 100%);
}

.shock-featured-grid__card-title {
  margin: 0;
  font-size: clamp(1.2rem, 1vw + 0.8rem, 1.75rem);
  line-height: 1.08;
  font-weight: 800;
}

.shock-featured-grid__image-link:hover .shock-featured-grid__image,
.shock-featured-grid__card-media:hover .shock-featured-grid__card-image {
  transform: scale(1.03);
}

.shock-featured-grid--news-block {
  --shock-news-text: #121212;
  --shock-news-accent: #ffe11a;
  --shock-news-bg: #f7f4ed;
  --shock-news-image-bg: #d8d2c7;
  color: var(--shock-news-text);
}

.shock-featured-grid--news-block .shock-news-block__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.95fr);
  gap: 1.2rem;
  isolation: isolate;
}

.shock-featured-grid--news-block .shock-news-block__inner::before {
  content: "";
  position: absolute;
  inset: -2rem 18% -2rem 36%;
  background: var(--shock-news-accent);
  transform: skewX(-11deg);
  z-index: -1;
}

.shock-featured-grid--news-block .shock-news-block__lead {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.shock-featured-grid--news-block .shock-news-block__lead-image-link {
  display: block;
  background: var(--shock-news-image-bg);
  border-radius: var(--shock-radius);
  overflow: hidden;
}

.shock-featured-grid--news-block .shock-news-block__lead-image {
  display: block;
  width: 100%;
  aspect-ratio: 1.45 / 0.86;
  object-fit: cover;
}

.shock-featured-grid--news-block .shock-news-block__lead-content {
  color: var(--shock-news-text);
}

.shock-featured-grid--news-block .shock-news-block__lead-badge {
  display: inline-flex;
  align-items: center;
  min-height: 1.45rem;
  padding: 0.08rem 0.42rem;
  margin-bottom: 0.55rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--shock-radius);
}

.shock-featured-grid--news-block .shock-news-block__lead-title {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 1.6vw + 1.1rem, 3rem);
  line-height: 1.08;
  font-weight: 800;
  color: #090909;
}

.shock-featured-grid--news-block .shock-news-block__lead-text {
  margin: 0;
  max-width: 41rem;
  color: #232323;
  font-size: 1rem;
  line-height: 1.6;
}

.shock-featured-grid--news-block .shock-news-block__rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.1rem;
  align-content: start;
}

.shock-featured-grid--news-block .shock-news-block__card {
  min-width: 0;
  color: var(--shock-news-text);
}

.shock-featured-grid--news-block .shock-news-block__card-image-link {
  display: block;
  margin-bottom: 0.55rem;
  background: #1a1a1a;
  border-radius: var(--shock-radius);
  overflow: hidden;
}

.shock-featured-grid--news-block .shock-news-block__card-image {
  display: block;
  width: 100%;
  aspect-ratio: 1.16 / 0.7;
  object-fit: cover;
  transition: transform 220ms ease;
}

.shock-featured-grid--news-block .shock-news-block__card-title {
  margin: 0;
  font-size: clamp(1.08rem, 0.55vw + 0.9rem, 1.5rem);
  line-height: 1.12;
  font-weight: 800;
  color: #101010;
}

.shock-featured-grid--news-block .shock-news-block__card-image-link:hover .shock-news-block__card-image {
  transform: scale(1.03);
}

@media (max-width: 1199.98px) {
  .shock-featured-grid__lead {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .shock-featured-grid__visual {
    min-height: 360px;
  }

  .shock-featured-grid__rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shock-featured-grid--news-block .shock-news-block__inner {
    grid-template-columns: 1fr;
  }

  .shock-featured-grid--news-block .shock-news-block__inner::before {
    inset: 7rem 5% 12rem 42%;
  }
}

@media (max-width: 767.98px) {
  .shock-featured-grid__visual {
    min-height: 250px;
  }

  .shock-featured-grid__content {
    padding: 1.25rem 1rem 1.1rem;
  }

  .shock-featured-grid__title {
    margin-top: 0.8rem;
    font-size: 1.95rem;
  }

  .shock-featured-grid__leadtext {
    font-size: 0.95rem;
  }

  .shock-featured-grid__rail {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .shock-featured-grid__card-media {
    aspect-ratio: 1.45 / 0.88;
  }

  .shock-featured-grid--news-block .shock-news-block__inner::before {
    inset: 11rem 18% 10rem 44%;
    transform: skewX(-9deg);
  }

  .shock-featured-grid--news-block .shock-news-block__lead-title {
    font-size: 1.95rem;
  }

  .shock-featured-grid--news-block .shock-news-block__rail {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .shock-featured-grid--news-block .shock-news-block__card-image {
    aspect-ratio: 1.42 / 0.76;
  }
}
