.page-news {
  --news-line: #D8E1FF;
  --news-cover-w: 180px;
  --news-cover-h: 120px;
  background: var(--c-page);
}

.page-news .news-hero {
  position: relative;
  background: linear-gradient(125deg, var(--c-primary) 0%, var(--c-primary-2) 55%, #10254F 100%);
  color: var(--c-white);
  padding: 44px 0 72px;
  overflow: hidden;
  border-radius: 0 0 40px 40px;
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -70px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(57, 255, 20, 0.22) 0%, rgba(57, 255, 20, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  left: -6%;
  bottom: 0;
  width: 112%;
  height: 5px;
  background: linear-gradient(90deg, var(--c-highlight) 0%, var(--c-accent) 50%, var(--c-purple) 100%);
  border-radius: 100px 100px 0 0;
}

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

.page-news .news-hero .breadcrumbs {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 28px;
}

.page-news .news-hero .breadcrumbs a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.page-news .news-hero .breadcrumbs a:hover {
  color: var(--c-accent);
}

.page-news .news-hero .breadcrumbs__sep {
  color: rgba(255, 255, 255, 0.35);
}

.page-news .news-hero .breadcrumbs [aria-current="page"] {
  color: var(--c-accent);
}

.page-news .news-hero__grid {
  display: grid;
  gap: 28px;
}

.page-news .news-hero__copy .section-label,
.page-news .news-cta .section-label,
.page-news .news-hot .section-label {
  color: var(--c-accent);
}

.page-news .news-hero__copy h1 {
  font-family: var(--font-head);
  font-size: var(--fs-h1);
  line-height: 1.18;
  margin: 10px 0 12px;
}

.page-news .news-hero__lead {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 0 20px;
}

.page-news .news-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.page-news .news-hero-stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 10px 16px;
  text-align: center;
}

.page-news .news-hero-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--c-accent);
}

.page-news .news-hero-stat span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 2px;
}

.page-news .news-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-news .news-hero__panel {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.page-news .news-hero__panel-top {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
}

.page-news .news-hero__pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-accent);
  animation: news-pulse 2s infinite;
}

@keyframes news-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(57, 255, 20, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(57, 255, 20, 0);
  }
}

.page-news .news-hero__list {
  list-style: none;
  margin: 20px 0 24px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-news .news-hero__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
}

.page-news .news-hero__list li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(57, 255, 20, 0.18);
  color: var(--c-accent);
  font-weight: 700;
  font-size: 12px;
  flex: 0 0 28px;
}

.page-news .news-filter {
  position: sticky;
  top: var(--header-h);
  z-index: 8;
  background: rgba(244, 247, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 18px 0 10px;
}

.page-news .filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.page-news .filter-bar::-webkit-scrollbar {
  display: none;
}

.page-news .filter-btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

.page-news .news-layout {
  display: grid;
  gap: 28px;
}

.page-news .news-sidebar__sticky {
  position: sticky;
  top: calc(var(--header-h) + 58px);
}

.page-news .news-sidebar h2 {
  font-family: var(--font-head);
  font-size: var(--fs-h2);
  margin: 8px 0 4px;
  color: var(--c-primary);
}

.page-news .news-sidebar__hint {
  color: var(--c-muted);
  font-size: 13px;
  margin-bottom: 20px;
}

.page-news .news-index {
  display: grid;
  gap: 6px;
  border-top: 1px solid var(--news-line);
  padding-top: 16px;
}

.page-news .news-index__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  color: var(--c-primary);
  font-size: 14px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.page-news .news-index__link span {
  color: var(--c-muted);
  font-family: var(--font-head);
  font-size: 12px;
  min-width: 20px;
}

.page-news .news-index__link:hover {
  background: #E6EDFF;
  color: var(--c-primary);
  transform: translateX(4px);
}

.page-news .news-sidebar__note {
  margin-top: 24px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: var(--c-card);
  border: 1px solid rgba(11, 27, 63, 0.06);
}

.page-news .news-sidebar__note p {
  margin: 10px 0 0;
  font-size: 14px;
  color: var(--c-primary);
  line-height: 1.6;
}

.page-news .news-feed {
  display: grid;
  gap: 24px;
}

.page-news .news-feed__item {
  position: relative;
  background: var(--c-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 20px;
  display: grid;
  gap: 16px;
  border: 1px solid rgba(11, 27, 63, 0.06);
  transition: box-shadow var(--transition), transform var(--transition);
}

.page-news .news-feed__item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.page-news .news-feed__media {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--c-card);
}

.page-news .news-feed__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-news .news-feed__body {
  min-width: 0;
}

.page-news .news-feed__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.page-news .news-feed__date {
  font-size: 13px;
  color: var(--c-muted);
  margin-left: auto;
}

.page-news .news-feed__body h3 {
  font-family: var(--font-head);
  font-size: 20px;
  line-height: 1.4;
  color: var(--c-primary);
  margin: 0 0 8px;
}

.page-news .news-feed__body > p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--c-muted);
  margin: 0 0 10px;
}

.page-news .news-feed__detail {
  margin: 8px 0 12px;
  border-top: 1px dashed var(--news-line);
  padding-top: 10px;
}

.page-news .news-feed__detail summary {
  cursor: pointer;
  font-size: 13px;
  color: var(--c-highlight);
  font-weight: 600;
  list-style: none;
  display: inline-flex;
  align-items: center;
}

.page-news .news-feed__detail summary::-webkit-details-marker {
  display: none;
}

.page-news .news-feed__detail summary::before {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-right: 6px;
  border-radius: 50%;
  background: rgba(255, 106, 0, 0.12);
  color: var(--c-highlight);
  font-size: 14px;
  line-height: 1;
}

.page-news .news-feed__detail[open] summary::before {
  content: "-";
}

.page-news .news-feed__detail-body {
  padding: 12px 0 0 24px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--c-muted);
}

.page-news .news-feed__foot {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.page-news .news-feed__views {
  font-size: 12px;
  color: var(--c-muted);
  background: var(--c-card);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.page-news .news-feed__more {
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-primary);
  text-decoration: none;
  border-bottom: 2px solid var(--c-accent);
  padding-bottom: 2px;
  transition: color var(--transition);
}

.page-news .news-feed__more:hover {
  color: var(--c-highlight);
}

.page-news .news-feed__plain {
  display: none;
}

.page-news .news-hot {
  background-image:
    radial-gradient(circle at 15% 15%, rgba(57, 255, 20, 0.12), transparent 32%),
    radial-gradient(circle at 85% 80%, rgba(155, 89, 182, 0.18), transparent 30%),
    linear-gradient(140deg, var(--c-primary) 0%, var(--c-dark) 100%);
}

.page-news .news-hot .section-head__sub {
  color: rgba(255, 255, 255, 0.6);
}

.page-news .news-hot__grid {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

.page-news .news-hot__card {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
  overflow: hidden;
}

.page-news .news-hot__card::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(155, 89, 182, 0.28), transparent 70%);
  border-radius: 50%;
}

.page-news .news-hot__num {
  position: absolute;
  top: 14px;
  right: 20px;
  font-family: var(--font-head);
  font-size: 44px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.12);
}

.page-news .news-hot__card h3 {
  color: var(--c-white);
  font-family: var(--font-head);
  font-size: 18px;
  line-height: 1.45;
  margin: 14px 0 10px;
}

.page-news .news-hot__card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.page-news .news-hot__card > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--c-accent);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.page-news .news-hot__card > a::after {
  content: "→";
  transition: transform var(--transition);
}

.page-news .news-hot__card > a:hover::after {
  transform: translateX(4px);
}

.page-news .news-calendar__timeline {
  position: relative;
  margin-top: 32px;
  display: grid;
  gap: 20px;
  padding-left: 28px;
}

.page-news .news-calendar__timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--c-accent), var(--c-highlight));
  opacity: 0.4;
}

.page-news .news-calendar__item {
  position: relative;
  background: var(--c-white);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.page-news .news-calendar__dot {
  position: absolute;
  left: -28px;
  top: 24px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--c-accent);
  border: 3px solid var(--c-page);
  box-shadow: 0 0 0 2px var(--c-accent);
}

.page-news .news-calendar__dot--orange {
  background: var(--c-highlight);
  box-shadow: 0 0 0 2px var(--c-highlight);
}

.page-news .news-calendar__dot--purple {
  background: var(--c-purple);
  box-shadow: 0 0 0 2px var(--c-purple);
}

.page-news .news-calendar__week {
  display: block;
  font-family: var(--font-head);
  font-size: 13px;
  color: var(--c-highlight);
  margin-bottom: 4px;
}

.page-news .news-calendar__main h3 {
  color: var(--c-primary);
  font-size: 17px;
  margin: 0 0 6px;
}

.page-news .news-calendar__main p {
  color: var(--c-muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.page-news .news-calendar__badge {
  align-self: center;
  margin-left: auto;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--c-card);
  color: var(--c-primary);
  white-space: nowrap;
}

.page-news .news-calendar__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 28px;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--c-card), #F0F5FF);
  border-radius: var(--radius-md);
}

.page-news .news-calendar__foot p {
  margin: 0;
  font-size: 13px;
  color: var(--c-muted);
}

.page-news .news-cta {
  background: linear-gradient(125deg, var(--c-primary) 0%, #0E2050 70%);
  color: var(--c-white);
}

.page-news .news-cta__box {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 24px;
}

.page-news .news-cta__box h2 {
  font-size: clamp(24px, 4vw, 32px);
  font-family: var(--font-head);
  margin: 12px 0 10px;
}

.page-news .news-cta__box p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 24px;
}

.page-news .news-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

@media (max-width: 767px) {
  .page-news .news-hero__panel {
    transform: none;
  }

  .page-news .news-feed__media {
    height: 140px;
  }

  .page-news .news-feed__item--plain .news-feed__plain {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 70px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--c-primary), var(--c-purple));
    font-family: var(--font-head);
    font-size: 36px;
    color: rgba(255, 255, 255, 0.9);
  }

  .page-news .news-index {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .page-news .news-index::-webkit-scrollbar {
    display: none;
  }

  .page-news .news-index__link {
    flex: 0 0 auto;
    white-space: nowrap;
    background: var(--c-white);
    border: 1px solid rgba(11, 27, 63, 0.08);
  }
}

@media (min-width: 768px) {
  .page-news .news-hero {
    padding: 56px 0 88px;
  }

  .page-news .news-hero__grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
  }

  .page-news .news-filter .container {
    display: flex;
    justify-content: center;
  }

  .page-news .news-feed__item {
    grid-template-columns: var(--news-cover-w) 1fr;
    align-items: center;
    gap: 20px;
    padding: 24px;
  }

  .page-news .news-feed__media {
    width: var(--news-cover-w);
    height: var(--news-cover-h);
  }

  .page-news .news-feed__item--plain {
    grid-template-columns: var(--news-cover-w) 1fr;
  }

  .page-news .news-feed__item--plain .news-feed__plain {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--news-cover-w);
    height: var(--news-cover-h);
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--c-primary), var(--c-purple));
    font-family: var(--font-head);
    font-size: 56px;
    color: rgba(255, 255, 255, 0.9);
  }

  .page-news .news-hot__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-news .news-hot__card--lead {
    grid-column: 1 / -1;
  }
}

@media (min-width: 992px) {
  .page-news .news-layout {
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: start;
  }

  .page-news .news-hot__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-news .news-hot__card--lead {
    grid-column: auto;
  }

  .page-news .news-hot__card:nth-child(2) {
    margin-top: 32px;
  }

  .page-news .news-hot__card:nth-child(3) {
    margin-top: 16px;
  }

  .page-news .news-calendar__timeline {
    grid-template-columns: repeat(3, 1fr);
    padding-left: 0;
    gap: 24px;
  }

  .page-news .news-calendar__timeline::before {
    left: 33.3333%;
    right: 33.3333%;
    width: auto;
    top: 12px;
    height: 2px;
    background: linear-gradient(90deg, var(--c-accent), var(--c-highlight));
    opacity: 0.4;
  }

  .page-news .news-calendar__item {
    display: block;
    padding-top: 40px;
  }

  .page-news .news-calendar__dot {
    left: 12px;
    top: 8px;
  }

  .page-news .news-calendar__badge {
    display: inline-block;
    margin-left: 0;
    margin-top: 12px;
  }
}
