.page-news {
  --news-radius: 14px;
  --news-radius-sm: 8px;
  --news-ink-soft: rgba(30, 22, 16, 0.8);
  --news-ink-faint: rgba(30, 22, 16, 0.6);
  --news-cream-soft: rgba(245, 240, 225, 0.85);
  --news-cream-faint: rgba(245, 240, 225, 0.7);
}
.page-news .news-hero {
  background: linear-gradient(135deg, var(--color-primary), var(--color-deep));
  color: var(--color-cream);
  padding: 48px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-news .news-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 280px;
  height: 280px;
  border: 2px solid rgba(57, 255, 20, 0.25);
  border-radius: 50%;
  pointer-events: none;
}
.page-news .news-hero__breadcrumb {
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.page-news .news-hero .section-kicker {
  color: var(--color-neon);
}
.page-news .news-hero__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  z-index: 1;
}
.page-news .news-hero__title {
  color: var(--color-cream);
  margin: 8px 0 12px;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.1;
}
.page-news .news-hero__lead {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--news-cream-soft);
  max-width: 640px;
  margin: 0;
}
.page-news .news-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.page-news .news-hero__stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--news-radius-sm);
  padding: 16px;
  text-align: center;
}
.page-news .news-hero__stat .stat__value {
  font-size: 24px;
  color: var(--color-cream);
  display: block;
}
.page-news .news-hero__stat .stat__value--neon {
  color: var(--color-neon);
}
.page-news .news-hero__stat .stat__label {
  font-size: 12px;
  margin-top: 6px;
  color: var(--news-cream-faint);
  line-height: 1.4;
}
.page-news .news-feature {
  padding: 64px 0 48px;
  background: var(--color-cream);
}
.page-news .news-feature__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}
.page-news .news-feature__head .section-title {
  color: var(--color-primary);
  margin-bottom: 0;
}
.page-news .news-feature__grid {
  display: grid;
  gap: 24px;
}
.page-news .news-feature__main {
  background: var(--color-primary);
  border-radius: var(--news-radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.page-news .news-feature__media img,
.page-news .news-item__media img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}
.page-news .news-feature__body {
  padding: 24px;
}
.page-news .news-feature__title {
  font-family: var(--font-head);
  font-size: 22px;
  line-height: 1.25;
  color: var(--color-cream);
  margin: 12px 0 8px;
}
.page-news .news-feature__summary {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--news-cream-soft);
  margin: 0 0 16px;
}
.page-news .news-feature__link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-orange);
  text-decoration: none;
  transition: color 0.2s ease;
}
.page-news .news-feature__link:hover {
  color: var(--color-neon);
}
.page-news .news-feature__side {
  padding: 24px;
  border-radius: var(--news-radius);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(11, 30, 62, 0.12);
}
.page-news .news-feature__side-title {
  font-family: var(--font-head);
  font-size: 18px;
  line-height: 1.3;
  color: var(--color-primary);
  margin: 12px 0 8px;
}
.page-news .news-feature__side-summary {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-ink);
  margin: 0 0 16px;
}
.page-news .news-main {
  padding: 48px 0 64px;
  background: var(--color-cream);
}
.page-news .news-main__layout {
  display: grid;
  gap: 40px;
}
.page-news .news-list__head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}
.page-news .news-list__head .section-title {
  color: var(--color-primary);
  margin-bottom: 0;
}
.page-news .news-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.page-news .news-filter__link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(11, 30, 62, 0.2);
  color: var(--color-primary);
  text-decoration: none;
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.page-news .news-filter__link:hover,
.page-news .news-filter__link.is-active {
  background: var(--color-primary);
  color: var(--color-cream);
  border-color: var(--color-primary);
}
.page-news .news-list__items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.page-news .news-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(11, 30, 62, 0.12);
  border-radius: var(--news-radius);
  padding: 18px;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.page-news .news-item[id] {
  scroll-margin-top: 120px;
}
.page-news .news-item:hover,
.page-news .news-item:focus-within {
  box-shadow: var(--shadow-pop);
  border-color: rgba(255, 107, 53, 0.5);
  transform: translateY(-2px);
}
.page-news .news-item__media img {
  border-radius: var(--news-radius-sm);
}
.page-news .news-item__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.page-news .news-item__content--full {
  gap: 10px;
}
.page-news .news-item__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.page-news .news-item__time {
  font-size: 12px;
  color: var(--news-ink-faint);
}
.page-news .news-item__title {
  font-family: var(--font-head);
  font-size: 18px;
  line-height: 1.3;
  color: var(--color-primary);
  margin: 0;
}
.page-news .news-item__excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--news-ink-soft);
  margin: 0;
}
.page-news .news-item__reading {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-orange);
  margin: 0;
}
.page-news .news-item__link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-electric);
  text-decoration: none;
  transition: color 0.2s ease;
}
.page-news .news-item__link:hover {
  color: var(--color-orange);
}
.page-news .news-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.page-news .news-sidebar__block {
  padding: 24px;
  border-radius: var(--news-radius);
}
.page-news .news-sidebar__title {
  font-family: var(--font-head);
  font-size: 17px;
  margin: 0 0 16px;
  color: var(--color-primary);
}
.page-news .news-categories__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.page-news .news-categories__link {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: var(--news-radius-sm);
  background: transparent;
  transition: background 0.2s ease, padding-left 0.2s ease;
}
.page-news .news-categories__link:hover,
.page-news .news-categories__link.is-active {
  background: rgba(255, 107, 53, 0.12);
  padding-left: 20px;
}
.page-news .news-hot {
  color: var(--color-cream);
}
.page-news .news-hot .news-sidebar__title {
  color: var(--color-cream);
}
.page-news .news-hot__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.page-news .news-hot__item a {
  display: block;
  color: var(--news-cream-soft);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 14px;
  padding: 10px 12px;
  border-left: 2px solid rgba(57, 255, 20, 0.4);
  transition: color 0.2s ease, border-left-color 0.2s ease, padding-left 0.2s ease;
}
.page-news .news-hot__item a:hover {
  color: var(--color-cream);
  border-left-color: var(--color-neon);
  padding-left: 16px;
}
.page-news .news-subscribe {
  border: 1px dashed var(--color-electric);
  background: rgba(46, 107, 230, 0.06);
}
.page-news .news-subscribe__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-ink);
  margin: 0 0 16px;
}
.page-news .news-subscribe .btn {
  width: 100%;
  text-align: center;
}
.page-news .news-subscribe__note {
  font-size: 12px;
  color: var(--news-ink-faint);
  margin: 12px 0 0;
}
.page-news .news-cta {
  position: relative;
  overflow: hidden;
}
.page-news .news-cta::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-orange), var(--color-neon));
}
.page-news .news-cta .site-container {
  text-align: center;
  padding: 56px 0;
}
.page-news .news-cta__title {
  font-family: var(--font-head);
  font-size: 26px;
  color: var(--color-cream);
  margin: 0 0 8px;
}
.page-news .news-cta__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--news-cream-soft);
  margin: 0 auto 20px;
  max-width: 600px;
}
@media (min-width: 768px) {
  .page-news .news-hero__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 48px;
  }
  .page-news .news-hero__text {
    max-width: 640px;
  }
  .page-news .news-hero__stats {
    min-width: 320px;
  }
  .page-news .news-feature__grid {
    grid-template-columns: 1.4fr 1fr;
    align-items: stretch;
  }
  .page-news .news-main__layout {
    grid-template-columns: 1fr 260px;
    gap: 32px;
    align-items: start;
  }
  .page-news .news-list__head {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .page-news .news-item {
    padding: 20px;
  }
  .page-news .news-item--media {
    display: grid;
    grid-template-columns: 140px 1fr;
    align-items: start;
  }
  .page-news .news-item--media .news-item__media {
    aspect-ratio: 4 / 3;
  }
  .page-news .news-item--media .news-item__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--news-radius-sm);
  }
  .page-news .news-item__excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .page-news .news-item:hover .news-item__excerpt,
  .page-news .news-item:focus-within .news-item__excerpt {
    -webkit-line-clamp: 6;
  }
  .page-news .news-item__reading {
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .page-news .news-item:hover .news-item__reading,
  .page-news .news-item:focus-within .news-item__reading {
    opacity: 1;
    transform: translateY(0);
  }
  .page-news .news-sidebar {
    position: sticky;
    top: 120px;
  }
}
@media (min-width: 1024px) {
  .page-news .news-hero {
    padding: 56px 0 64px;
  }
  .page-news .news-hero__stats {
    min-width: 340px;
  }
  .page-news .news-feature__body {
    padding: 28px;
  }
  .page-news .news-feature__title {
    font-size: 26px;
  }
  .page-news .news-feature__side {
    padding: 28px;
  }
  .page-news .news-item--media {
    grid-template-columns: 200px 1fr;
    gap: 20px;
  }
}
