.page-news {
  --rail-w: 280px;
  background: var(--c-light);
  color: var(--c-text);
}

.page-news [hidden] {
  display: none !important;
}

.page-news .news-hero {
  background: var(--c-primary);
  color: var(--c-white);
  padding: 48px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 54%;
  height: 100%;
  background: var(--c-accent);
  clip-path: polygon(32% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.16;
  pointer-events: none;
}

.page-news .news-hero::after {
  content: "OBSERVE 04";
  position: absolute;
  bottom: -14px;
  right: 10px;
  font-family: var(--font-head);
  font-size: 96px;
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(192, 192, 192, 0.28);
  line-height: 1;
  pointer-events: none;
}

.page-news .news-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.page-news .news-hero__main {
  flex: 1 1 auto;
  min-width: 0;
}

.page-news .news-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(40px, 8vw, 68px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0.01em;
  margin: 18px 0 18px;
}

.page-news .news-hero__accent {
  color: var(--c-accent);
}

.page-news .news-hero__desc {
  max-width: 640px;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 24px;
}

.page-news .news-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-news .news-hero__meta .tag {
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.88);
}

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

.page-news .news-hero__stat {
  border-left: 2px solid var(--c-silver);
  padding-left: 12px;
}

.page-news .news-hero__stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 30px;
  line-height: 1.1;
  color: var(--c-accent);
}

.page-news .news-hero__stat span {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.68);
  text-transform: uppercase;
}

.page-news .news-hero__aside {
  border-top: 1px solid rgba(192, 192, 192, 0.26);
  padding-top: 18px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 6px 16px;
  align-items: start;
}

.page-news .news-hero__aside > span {
  grid-row: span 4;
  font-family: var(--font-head);
  font-size: 54px;
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1px var(--c-silver);
}

.page-news .news-hero__aside p {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.page-news .breadcrumb {
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
  padding: 12px 0;
  font-size: 13px;
}

.page-news .breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-news .breadcrumb__link {
  color: var(--c-accent);
  text-decoration: none;
}

.page-news .breadcrumb__link::after {
  content: "/";
  margin-left: 8px;
  color: var(--c-text-2);
}

.page-news .breadcrumb__current {
  color: var(--c-text);
  font-weight: 600;
}

.page-news .section-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.page-news .section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: var(--c-primary);
}

.page-news .section-head__eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-accent);
  border-left: 3px solid var(--c-accent);
  padding-left: 8px;
}

.page-news .section-head__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-text-2);
  margin: 0;
}

.page-news .news-board {
  padding: 56px 0 64px;
}

.page-news .news-board__layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.page-news .news-board__rail {
  position: relative;
  background: var(--c-primary);
  color: var(--c-white);
  padding: 24px 22px;
  overflow: hidden;
  border-radius: 6px;
}

.page-news .news-board__rail-bg {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 120px;
  height: auto;
  opacity: 0.16;
  pointer-events: none;
}

.page-news .news-board__rail-head {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}

.page-news .news-board__rail-head h3 {
  font-family: var(--font-head);
  font-size: 24px;
  margin: 8px 0 6px;
}

.page-news .news-board__rail-head p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.page-news .news-board__tags {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.page-news .news-board__tags .tag {
  display: inline-block;
  padding: 6px 12px;
  font-size: 13px;
  text-decoration: none;
  border-radius: 999px;
  transition: transform var(--ease), box-shadow var(--ease);
}

.page-news .news-board__tags .tag--outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.9);
}

.page-news .news-board__tags .tag--accent {
  background: var(--c-accent);
  border: 1px solid var(--c-accent);
  color: #fff;
}

.page-news .news-board__tags .tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 107, 26, 0.38);
}

.page-news .news-board__rail-note {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 14px;
}

.page-news .news-board__rail-link {
  position: relative;
  z-index: 1;
  margin: 0;
}

.page-news .news-board__rail-link .link-more {
  color: var(--c-accent);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.page-news .news-board__feed {
  min-width: 0;
  flex: 1 1 auto;
}

.page-news .news-feed {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-news .news-item {
  position: relative;
  background: #fff;
  border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-primary);
  border-radius: 4px;
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
  scroll-margin-top: 96px;
}

.page-news .news-item:hover {
  border-left-color: var(--c-accent);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.page-news .news-item__side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 56px;
}

.page-news .news-item__index {
  font-family: var(--font-head);
  font-size: 28px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--c-silver);
}

.page-news .news-item__thumb {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.page-news .news-item__body {
  flex: 1 1 auto;
  min-width: 0;
}

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

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

.page-news .news-item__title {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 6px;
  color: var(--c-primary);
}

.page-news .news-item__body > p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-text-2);
  margin: 0;
}

.page-news .news-series {
  background: var(--c-dark);
  color: #fff;
  padding: 56px 0 64px;
}

.page-news .news-series .section-head h2 {
  color: #fff;
}

.page-news .news-series .section-head__desc {
  color: rgba(255, 255, 255, 0.62);
}

.page-news .news-series__grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-news .series-card {
  background: rgba(11, 29, 58, 0.72);
  border: 1px solid rgba(192, 192, 192, 0.2);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.page-news .series-card:hover {
  border-color: rgba(255, 107, 26, 0.65);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

.page-news .series-card__cover {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--c-primary);
}

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

.page-news .series-card__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 20, 41, 0.62) 0%, rgba(8, 20, 41, 0.12) 52%, transparent 100%);
}

.page-news .series-card__num {
  position: absolute;
  z-index: 1;
  top: 12px;
  right: 14px;
  font-family: var(--font-head);
  font-size: 44px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.72);
}

.page-news .series-card__body {
  padding: 18px 20px 20px;
  flex: 1 1 auto;
}

.page-news .series-card__body h3 {
  font-family: var(--font-head);
  font-size: 22px;
  margin: 12px 0 8px;
}

.page-news .series-card__body p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.64);
  margin: 0 0 14px;
}

.page-news .series-card__body .link-more {
  color: var(--c-accent);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.page-news .news-export {
  padding: 56px 0 64px;
}

.page-news .news-export__panel {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.page-news .news-export__panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, var(--c-accent), var(--c-silver));
}

.page-news .news-export__main {
  flex: 1 1 auto;
  min-width: 0;
}

.page-news .news-export__main h2 {
  font-family: var(--font-head);
  font-size: 30px;
  margin: 8px 0 12px;
  color: var(--c-primary);
}

.page-news .news-export__main p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--c-text-2);
  margin: 0 0 20px;
}

.page-news .news-export__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-news .news-export__aside {
  display: flex;
  align-items: center;
  gap: 18px;
}

.page-news .news-export__aside img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.page-news .news-export__stat-value {
  display: block;
  font-family: var(--font-head);
  font-size: 40px;
  line-height: 1.1;
  color: var(--c-accent);
}

.page-news .news-export__stat-label {
  font-size: 13px;
  color: var(--c-text-2);
}

.page-news .news-export__note {
  margin-top: 18px;
  padding: 14px 16px;
  background: rgba(255, 107, 26, 0.08);
  border-left: 3px solid var(--c-accent);
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-text);
}

.page-news .news-export__trust {
  margin-top: 18px;
  font-size: 12px;
  color: var(--c-text-2);
  text-align: center;
}

@media (min-width: 900px) {
  .page-news .news-hero {
    padding: 64px 0 96px;
  }

  .page-news .news-hero__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 48px;
  }

  .page-news .news-hero__aside {
    min-width: 220px;
    border-top: 0;
    border-left: 1px solid rgba(192, 192, 192, 0.26);
    padding-top: 0;
    padding-left: 30px;
  }

  .page-news .news-board {
    padding: 72px 0 80px;
  }

  .page-news .section-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 36px;
  }

  .page-news .section-head__desc {
    max-width: 420px;
    text-align: right;
    margin: 0;
  }

  .page-news .news-board__layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 36px;
  }

  .page-news .news-board__rail {
    flex: 0 0 var(--rail-w);
    position: sticky;
    top: 96px;
    padding: 30px 26px;
  }

  .page-news .news-board__feed {
    flex: 1 1 auto;
  }

  .page-news .news-item {
    padding: 22px 24px;
    gap: 20px;
  }

  .page-news .news-item__side {
    min-width: 80px;
    gap: 14px;
  }

  .page-news .news-item__index {
    font-size: 36px;
  }

  .page-news .news-item__thumb {
    width: 80px;
    height: 80px;
  }

  .page-news .news-item__title {
    font-size: 19px;
  }

  .page-news .news-series {
    padding: 72px 0 80px;
  }

  .page-news .news-series__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .page-news .news-export {
    padding: 72px 0 80px;
  }

  .page-news .news-export__panel {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 44px 48px;
  }

  .page-news .news-export__main {
    max-width: 640px;
  }

  .page-news .news-export__aside {
    flex-direction: column;
    text-align: center;
  }
}
