.news-hero,
.news-detail__header {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 80% 10%, rgba(225, 6, 0, .3), transparent 34%),
    linear-gradient(135deg, #171d26 0%, #0f141c 62%, #252e3b 100%);
}

.news-hero::after,
.news-detail__header::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.news-hero .container,
.news-detail__header .container {
  position: relative;
  z-index: 1;
}

.news-hero .container {
  padding-top: clamp(3.5rem, 7vw, 6rem);
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
}

.news-hero h1,
.news-detail__header h1 {
  max-width: 18ch;
  margin: .45rem 0 1rem;
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 750;
  letter-spacing: -.04em;
  line-height: 1;
  text-transform: uppercase;
}

.news-hero p {
  max-width: 45rem;
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 1.12rem;
  line-height: 1.7;
}

.news-kicker {
  color: #ef5555;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.news-breadcrumb {
  display: flex;
  align-items: center;
  gap: .6rem;
  max-width: 100%;
  margin-bottom: 2.5rem;
  color: rgba(255,255,255,.58);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.news-breadcrumb a {
  color: rgba(255,255,255,.82);
}

.news-breadcrumb span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-listing,
.news-related {
  background: linear-gradient(180deg, #f7f9fc, #fff);
}

.news-card {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(15,23,42,.09);
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 16px 46px rgba(15,23,42,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(15,23,42,.11);
}

.news-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #161c25;
}

.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.news-card:hover .news-card__media img { transform: scale(1.025); }

.news-card__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: rgba(255,255,255,.86);
  background:
    radial-gradient(circle at 72% 24%, rgba(225,6,0,.55), transparent 32%),
    linear-gradient(135deg, #252e3b, #0f141c);
}

.news-card__placeholder span {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: .14em;
}

.news-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.5rem;
}

.news-card time {
  margin-bottom: .65rem;
  color: #c81717;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.news-card h2 {
  margin-bottom: .75rem;
  color: #0f172a;
  font-size: 1.35rem;
  font-weight: 750;
  line-height: 1.25;
}

.news-card h2 a { color: inherit; text-decoration: none; }
.news-card h2 a:hover { color: #a71313; }

.news-card p {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 1.25rem;
  color: #4f5663;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.news-card__link,
.news-related__heading > a {
  margin-top: auto;
  color: #c81717;
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-underline-offset: .22em;
}

.news-empty {
  padding: 4rem 2rem;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 1.25rem;
  background: #fff;
  text-align: center;
}

.news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 3rem;
  font-weight: 700;
}

.news-detail__header .news-detail__narrow {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.news-detail__narrow { max-width: 1040px; }

.news-detail__summary {
  max-width: 48rem;
  color: rgba(255,255,255,.8);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.65;
}

.news-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  margin-top: 1.6rem;
  color: rgba(255,255,255,.62);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.news-detail__image {
  overflow: hidden;
  margin: clamp(2rem, 5vw, 4rem) 0 0;
  border-radius: 1.35rem;
  box-shadow: 0 22px 65px rgba(15,23,42,.16);
}

.news-detail__image img {
  display: block;
  width: 100%;
  max-height: 620px;
  object-fit: cover;
}

.news-detail__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
}

.news-detail__body {
  color: #2f3744;
  font-size: 1.08rem;
  line-height: 1.85;
}

.news-detail__body p { margin-bottom: 1.45rem; }
.news-detail__body p:first-child { font-size: 1.18rem; }

.news-share {
  position: sticky;
  top: 1.5rem;
  padding: 1.25rem;
  border-top: 3px solid #c81717;
  background: #f4f6f9;
}

.news-share h2 {
  margin-bottom: 1rem;
  color: #0f172a;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.news-share__links { display: grid; gap: .55rem; }

.news-share__links a,
.news-share__links button {
  padding: 0;
  border: 0;
  color: #364152;
  background: transparent;
  font: inherit;
  font-size: .92rem;
  font-weight: 700;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: .2em;
}

.news-share__links a:hover,
.news-share__links button:hover { color: #c81717; }

.news-share__status {
  margin: .8rem 0 0;
  color: #576172;
  font-size: .78rem;
  line-height: 1.4;
}

.news-related { border-top: 1px solid rgba(15,23,42,.08); }

.news-related__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.news-related__heading h2 {
  margin: .3rem 0 0;
  color: #0f172a;
  font-weight: 750;
  text-transform: uppercase;
}

@media (max-width: 767.98px) {
  .news-breadcrumb {
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
  }

  .news-breadcrumb span:last-child {
    white-space: normal;
  }

  .news-detail__header h1 {
    overflow-wrap: anywhere;
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .news-detail__summary,
  .news-detail__body {
    overflow-wrap: anywhere;
  }

  .news-detail__layout { grid-template-columns: 1fr; }
  .news-share { position: static; }
  .news-related__heading { align-items: start; flex-direction: column; gap: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  .news-card,
  .news-card__media img { transition: none; }
  .news-card:hover,
  .news-card:hover .news-card__media img { transform: none; }
}
