.news-page-hero {
  position: relative;
  padding: 28px 0 14px;
}

.news-page-hero__wrap {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: 32px;
  background:
      linear-gradient(135deg, rgba(8, 13, 25, 0.96), rgba(11, 17, 30, 0.94)),
      rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
      0 24px 70px rgba(0,0,0,0.34),
      inset 0 1px 0 rgba(255,255,255,0.04);
}

.news-page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.news-page-hero__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.34;
  pointer-events: none;
}

.news-page-hero__glow--one {
  top: -80px;
  right: -20px;
  width: 240px;
  height: 240px;
  background: rgba(37, 99, 235, 0.34);
}

.news-page-hero__glow--two {
  bottom: -60px;
  left: 0;
  width: 220px;
  height: 220px;
  background: rgba(168, 85, 247, 0.28);
}

.news-page-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 10px 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #dbeafe;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-page-hero__badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #60a5fa;
  box-shadow: 0 0 18px rgba(96, 165, 250, 0.8);
}

.news-page-hero__title {
  margin: 0;
  font-size: 64px;
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.news-page-hero__title span {
  display: block;
  margin-top: 10px;
  background: linear-gradient(90deg, #ffffff 0%, #93c5fd 35%, #60a5fa 70%, #c084fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.news-page-hero__text {
  max-width: 840px;
  margin: 22px 0 0;
  color: #cbd9ea;
  font-size: 18px;
  line-height: 1.9;
}

.news-page-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
  max-width: 760px;
}

.news-page-stat {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
}

.news-page-stat__label {
  display: block;
  color: #8ea6c3;
  font-size: 13px;
  margin-bottom: 8px;
}

.news-page-stat__value {
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
}

.news-page-section {
  padding: 12px 0 8px;
}

.news-featured {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 22px;
  overflow: hidden;
  padding: 26px;
  border-radius: 30px;
  background:
      linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 22px 60px rgba(0,0,0,0.26);
  margin-bottom: 24px;
}

.news-featured__bg {
  position: absolute;
  inset: 0;
  background:
      radial-gradient(circle at top right, rgba(37, 99, 235, 0.18), transparent 28%),
      radial-gradient(circle at bottom left, rgba(168, 85, 247, 0.16), transparent 24%);
  pointer-events: none;
}

.news-featured__content,
.news-featured__image-wrap,
.news-featured__visual {
  position: relative;
  z-index: 2;
}

.news-featured__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  color: #9bb0c8;
  font-size: 13px;
  font-weight: 700;
}

.news-featured__tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.14);
  color: #dbeafe;
  font-weight: 800;
}

.news-featured__divider {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #60738c;
}

.news-featured__title {
  margin: 0;
  max-width: 780px;
  font-size: 48px;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.news-featured__title a {
  color: inherit;
}

.news-featured__excerpt {
  max-width: 760px;
  margin: 18px 0 0;
  color: #d2deec;
  font-size: 17px;
  line-height: 1.9;
}

.news-featured__actions {
  margin-top: 24px;
}

.news-featured__image-wrap {
  display: block;
  overflow: hidden;
  border-radius: 24px;
  min-height: 100%;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 50px rgba(0,0,0,0.26);
}

.news-featured__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-featured:hover .news-featured__image {
  transform: scale(1.04);
}

.news-featured__visual {
  display: grid;
  align-items: stretch;
}

.news-featured__visual-card {
  position: relative;
  min-height: 360px;
  border-radius: 24px;
  overflow: hidden;
  background:
      linear-gradient(160deg, rgba(15, 23, 42, 0.95), rgba(17, 24, 39, 0.92));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.news-featured__visual-lines {
  position: absolute;
  inset: 0;
  background-image:
      linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 34px 34px;
}

.news-featured__visual-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(96,165,250,0.8) 0%, rgba(96,165,250,0.16) 40%, transparent 72%);
  filter: blur(8px);
}

.news-featured__visual-label {
  position: absolute;
  left: 24px;
  bottom: 24px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.news-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.news-modern-card {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.news-modern-card:hover {
  transform: translateY(-5px);
  border-color: rgba(96,165,250,0.24);
  box-shadow: 0 24px 52px rgba(0,0,0,0.24);
}

.news-modern-card__image-wrap {
  display: block;
  overflow: hidden;
}

.news-modern-card__image {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.36s ease;
}

.news-modern-card:hover .news-modern-card__image {
  transform: scale(1.04);
}

.news-modern-card__body {
  padding: 20px;
}

.news-modern-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  color: #8ea6c3;
  font-size: 13px;
  font-weight: 700;
}

.news-modern-card__dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #5a6f88;
}

.news-modern-card__type {
  color: #93c5fd;
}

.news-modern-card__title {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 26px;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.news-modern-card__title a {
  color: inherit;
}

.news-modern-card__excerpt {
  margin: 0;
  color: #cfdbeb;
  line-height: 1.82;
  min-height: 104px;
}

.news-modern-card__footer {
  margin-top: 18px;
}

.news-modern-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #93c5fd;
  font-weight: 800;
  transition: gap 0.2s ease, color 0.2s ease;
}

.news-modern-card__link:hover {
  gap: 12px;
  color: #bfdbfe;
}

.news-empty-state {
  padding: 38px;
  border-radius: 28px;
  text-align: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.news-empty-state__icon {
  margin-bottom: 14px;
  font-size: 34px;
  color: #93c5fd;
}

@media (max-width: 1200px) {
  .news-cards-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 768px) {
  .news-page-hero__wrap {
      padding: 24px;
      border-radius: 24px;
  }

  .news-page-hero__title {
      font-size: 42px;
  }

  .news-page-hero__text {
      font-size: 16px;
  }

  .news-page-hero__stats {
      grid-template-columns: 1fr;
  }

  .news-featured {
      padding: 18px;
      border-radius: 24px;
  }

  .news-featured__title {
      font-size: 32px;
  }

  .news-featured__excerpt {
      font-size: 15px;
  }

  .news-featured__image,
  .news-featured__visual-card {
      min-height: 240px;
  }

  .news-cards-grid {
      grid-template-columns: 1fr;
  }

  .news-modern-card__image {
      height: 210px;
  }

  .news-modern-card__title {
      font-size: 22px;
  }

  .news-modern-card__excerpt {
      min-height: 0;
  }
}
