.news-spotlight {
  padding: 2.15rem 0 1.15rem;
  background: var(--color-background, #fff8f3);
}

.news-spotlight__head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  padding: 0 0.25rem;
}

.news-spotlight__heading {
  flex: 1;
  margin: 0;
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-text, #2b2b2b);
}

.news-spotlight__more {
  margin-left: auto;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-primary, #ff6b00);
  text-decoration: none;
  white-space: nowrap;
}

.news-spotlight__more:hover {
  text-decoration: underline;
}

.news-spotlight__grid {
  display: grid;
  gap: 1rem;
}

.news-spotlight__side {
  display: grid;
  gap: 1rem;
}

.news-spotlight__card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 210px;
  border-radius: var(--theme-box-radius, 16px);
  color: #fff;
  text-decoration: none;
  background: #1a1a1a;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
}

.news-spotlight__card:hover,
.news-spotlight__card:focus {
  text-decoration: none;
  color: #fff;
}

.news-spotlight__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s ease;
}

.news-spotlight__img--fallback {
  background: linear-gradient(160deg, var(--color-primary, #ff6b00) 0%, #ffb347 100%);
}

.news-spotlight__card:hover .news-spotlight__img {
  transform: scale(1.06);
}

.news-spotlight__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 20%, rgba(0, 0, 0, 0.55) 68%, rgba(0, 0, 0, 0.88) 100%);
  pointer-events: none;
}

.news-spotlight__copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  padding: 1rem 1.05rem 1.05rem;
}

.news-spotlight__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: var(--badge, #e11d8f);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.news-spotlight__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: clamp(1.05rem, 2.4vw, 1.55rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.news-spotlight__card--side .news-spotlight__title {
  font-size: clamp(0.95rem, 1.7vw, 1.12rem);
  -webkit-line-clamp: 3;
}

html[data-theme-mode="dark"] .news-spotlight__heading {
  color: var(--color-text, #f7ede4);
}

.news-spotlight__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.92;
}

.news-spotlight__meta svg {
  width: 0.95rem;
  height: 0.95rem;
  flex: 0 0 auto;
}

.news-spotlight__lead {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: var(--theme-box-radius, 16px);
  aspect-ratio: 16 / 10;
}

@media (min-width: 900px) {
  .news-spotlight__lead {
    aspect-ratio: auto;
  }
}

.news-spotlight__lead.is-slider .news-spotlight__card--lead {
  position: absolute;
  inset: 0;
  min-height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.news-spotlight__lead.is-slider .news-spotlight__card--lead.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.news-spotlight__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 2.15rem;
  height: 2.15rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.news-spotlight__nav:hover {
  background: rgba(0, 0, 0, 0.7);
}

.news-spotlight__nav--prev { left: 0.7rem; }
.news-spotlight__nav--next { right: 0.7rem; }

.news-spotlight__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.7rem;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  pointer-events: none;
}

.news-spotlight__dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  pointer-events: auto;
}

.news-spotlight__dot.is-active {
  background: #fff;
}

.news-spotlight__card--lead {
  min-height: 280px;
}

@media (min-width: 900px) {
  .news-spotlight__grid {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    grid-template-rows: repeat(2, minmax(190px, 1fr));
    min-height: 460px;
  }

  .news-spotlight__lead {
    grid-column: 1;
    grid-row: 1 / span 2;
    min-height: 100%;
  }

  .news-spotlight__card--lead {
    min-height: 100%;
  }

  .news-spotlight__side {
    grid-column: 2;
    grid-row: 1 / span 2;
    grid-template-rows: 1fr 1fr;
    min-height: 100%;
  }

  .news-spotlight__grid.is-solo {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    min-height: 380px;
  }

  .news-spotlight__grid.is-solo .news-spotlight__lead {
    grid-column: 1;
    grid-row: 1;
  }
}

@media (max-width: 899px) {
  .news-spotlight {
    padding: 1.45rem 0 1rem;
  }

  .news-spotlight .container {
    max-width: 100%;
    width: min(100% - 1.2rem, 92%);
  }

  .news-spotlight__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .news-spotlight__lead {
    min-height: 200px;
    aspect-ratio: 16 / 11;
  }

  .news-spotlight__side {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .news-spotlight__card {
    min-height: 170px;
    border-radius: 14px;
  }

  .news-spotlight__card--lead {
    min-height: 200px;
  }

  .news-spotlight__copy {
    padding: 0.7rem 0.8rem 0.8rem;
    gap: 0.3rem;
  }

  .news-spotlight__title {
    font-size: 1.02rem;
    -webkit-line-clamp: 3;
    overflow-wrap: anywhere;
  }

  .news-spotlight__card--side .news-spotlight__title {
    font-size: 0.92rem;
  }

  .news-spotlight__meta {
    font-size: 0.72rem;
    max-width: 100%;
  }

  .news-spotlight__nav {
    width: 1.85rem;
    height: 1.85rem;
    font-size: 1.15rem;
  }

  .news-spotlight__nav--prev { left: 0.4rem; }
  .news-spotlight__nav--next { right: 0.4rem; }
}
