.page-news {
  --hero-min-height: 600px;
  --article-max: 660px;
  --cut-size: 24px;
  background: var(--color-deep-space);
  color: var(--color-ice);
  overflow: hidden;
}

.page-news a:focus-visible {
  outline: 2px solid var(--color-green);
  outline-offset: 3px;
}

.page-news .container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ===== Hero ===== */
.page-news__hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: var(--hero-min-height);
  padding: 84px 0 56px;
  overflow: hidden;
}

.page-news__hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.page-news__hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.18) brightness(0.82);
}

.page-news__hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(11, 15, 28, 0.96) 5%, rgba(11, 15, 28, 0.85) 42%, rgba(16, 24, 48, 0.68) 72%, rgba(16, 24, 48, 0.3) 100%);
}

.page-news__hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.025) 0, rgba(255, 255, 255, 0.025) 1px, transparent 1px, transparent 9px);
  z-index: 1;
}

.page-news__hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.page-news .breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 28px;
}

.page-news .breadcrumbs a {
  color: var(--color-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-news .breadcrumbs a:hover {
  color: var(--color-green);
}

.page-news__crumb-sep {
  color: var(--color-orange);
  font-size: 10px;
}

.page-news__crumb-current {
  color: var(--color-ice);
  font-weight: 600;
}

.page-news__hero-grid {
  display: grid;
  gap: 32px;
}

.page-news__hero-title h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 10px 0 16px;
  transform: skewX(-5deg);
  transform-origin: left center;
  color: var(--color-ice);
}

.page-news__hero-lead {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(242, 244, 248, 0.82);
  margin: 0;
}

.page-news__hero-feature {
  position: relative;
  background: rgba(16, 24, 48, 0.92);
  border: 1px solid var(--color-steel);
  border-left: 4px solid var(--color-orange);
  padding: 26px 26px 28px;
  clip-path: polygon(0 0, calc(100% - var(--cut-size)) 0, 100% var(--cut-size), 100% 100%, 0 100%);
  max-width: 520px;
  margin-left: auto;
  transition: background 0.25s ease;
}

.page-news__hero-feature:hover {
  background: rgba(16, 24, 48, 0.98);
}

.page-news__hero-feature h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.35;
  font-weight: 800;
  margin: 12px 0 10px;
  color: var(--color-ice);
}

.page-news__hero-feature p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(242, 244, 248, 0.78);
  margin: 0 0 18px;
}

.page-news__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-news__hero-actions .btn {
  min-width: 140px;
  justify-content: center;
}

/* ===== Feed ===== */
.page-news__feed {
  position: relative;
  padding: 72px 0 80px;
  background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.018) 0, rgba(255, 255, 255, 0.018) 1px, transparent 1px, transparent 8px);
}

.page-news__feed-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 44px;
}

.page-news__feed-heading {
  flex: 1;
}

.page-news__feed-heading .section-title {
  margin: 6px 0 8px;
}

.page-news__feed-icon {
  flex: 0 0 88px;
  margin: 4px 0 0;
}

.page-news__feed-icon img {
  display: block;
  width: 100%;
  height: auto;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.4));
}

.page-news__feed-list {
  display: block;
}

.page-news__article {
  position: relative;
  background: var(--color-midnight);
  padding: 28px 28px 32px;
  margin-bottom: 28px;
  max-width: 100%;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
  transition: background 0.25s ease, transform 0.25s ease, filter 0.25s ease;
}

.page-news__article::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--color-orange);
  transform: scaleY(0);
  transform-origin: center bottom;
  transition: transform 0.25s ease;
}

.page-news__article:hover {
  background: #18233F;
  transform: translateY(-3px);
  filter: drop-shadow(0 14px 28px rgba(198, 255, 0, 0.1));
}

.page-news__article:hover::after {
  transform: scaleY(1);
}

.page-news__article--a {
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 0 100%);
}

.page-news__article--b {
  clip-path: polygon(26px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
}

.page-news__article--c {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.page-news__article--d {
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
}

.page-news__article--e {
  clip-path: polygon(20px 0, 100% 0, 100% 100%, 0 100%, 0 20px);
}

.page-news__article--f {
  clip-path: polygon(0 0, 100% 0, calc(100% - 24px) 100%, 0 100%);
}

.page-news__article-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-green);
  color: #0B0F1C;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 6px 10px;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.page-news__article-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--color-orange);
  display: inline-block;
}

.page-news__article-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.3;
  font-weight: 800;
  color: var(--color-ice);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.page-news__article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 12px;
}

.page-news__article-meta::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--color-orange);
  display: inline-block;
}

.page-news__article-excerpt {
  font-size: 15px;
  line-height: 1.72;
  color: rgba(242, 244, 248, 0.8);
  margin: 0;
}

/* ===== Special ===== */
.page-news__special {
  position: relative;
  padding: 72px 0 80px;
  background: linear-gradient(180deg, var(--color-midnight) 0%, #0C1323 100%);
  overflow: hidden;
}

.page-news__special::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 200px;
  height: 200px;
  background: var(--color-green-glow);
  filter: blur(60px);
  border-radius: 50%;
  pointer-events: none;
}

.page-news__special-head {
  margin-bottom: 40px;
}

.page-news__special-intro {
  max-width: 640px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(242, 244, 248, 0.82);
  margin: 12px 0 0;
}

.page-news__special-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.page-news__special-main h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1.3;
  font-weight: 800;
  color: var(--color-ice);
  margin: 0 0 16px;
}

.page-news__special-main p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(242, 244, 248, 0.78);
  margin: 0 0 14px;
}

.page-news__special-list {
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.page-news__special-list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(242, 244, 248, 0.84);
}

.page-news__special-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  background: var(--color-green);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
}

.page-news__special-link {
  display: inline-flex;
}

.page-news__special-figure {
  margin: 0;
  position: relative;
}

.page-news__special-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 32px, 100% 100%, 0 100%);
  filter: saturate(0.9) contrast(1.05);
}

/* ===== Calendar ===== */
.page-news__calendar {
  padding: 76px 0 84px;
}

.page-news__calendar-grid {
  display: grid;
  gap: 40px;
}

.page-news__calendar-copy .section-title {
  margin: 6px 0 14px;
}

.page-news__calendar-copy p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(242, 244, 248, 0.8);
  margin: 0 0 20px;
}

.page-news__progress-meta {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
}

.page-news__stat-number {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--color-green);
  line-height: 1;
  letter-spacing: -0.02em;
}

.page-news__progress {
  height: 8px;
  max-width: 420px;
  margin: 0 0 10px;
  overflow: hidden;
}

.page-news__progress .progress__fill {
  background: linear-gradient(90deg, var(--color-green) 0%, var(--color-orange) 100%);
  border-radius: 0;
}

.page-news__progress-note {
  font-size: 13px;
  margin: 0;
}

.page-news__calendar-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-news__ring-chart {
  position: relative;
  width: 200px;
  height: 200px;
}

.page-news__ring-chart svg {
  display: block;
  width: 100%;
  height: 100%;
}

.page-news__ring-track {
  stroke: var(--color-steel);
}

.page-news__ring-fill {
  stroke: var(--color-green);
  transition: stroke-dashoffset 1.2s ease;
}

.page-news__ring-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  pointer-events: none;
}

.page-news__ring-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-green);
  line-height: 1;
}

.page-news__ring-unit {
  font-size: 13px;
  color: var(--color-muted);
}

.page-news__calendar-figure {
  margin: 48px 0 0;
}

.page-news__calendar-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
  filter: saturate(0.9);
}

/* ===== Subscribe ===== */
.page-news__subscribe {
  padding: 64px 0 96px;
}

.page-news__subscribe-panel {
  position: relative;
  background: var(--color-midnight);
  border: 1px solid var(--color-steel);
  border-top: 4px solid var(--color-green);
  padding: 40px 28px;
  clip-path: polygon(0 0, calc(100% - 36px) 0, 100% 36px, 100% 100%, 36px 100%, 0 calc(100% - 36px));
  overflow: hidden;
}

.page-news__subscribe-panel::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 120px;
  height: 120px;
  background: var(--color-orange-glow);
  filter: blur(20px);
  border-radius: 50%;
  pointer-events: none;
}

.page-news__subscribe-panel h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-ice);
  margin: 10px 0 12px;
}

.page-news__subscribe-panel p {
  max-width: 640px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(242, 244, 248, 0.78);
  margin: 0 0 24px;
}

.page-news__subscribe-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== Tablet ===== */
@media (min-width: 768px) {
  .page-news__hero-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
  }

  .page-news__feed-header {
    align-items: center;
  }

  .page-news__feed-icon {
    flex-basis: 200px;
  }

  .page-news__feed-list {
    display: grid;
    gap: 0;
    max-width: 860px;
  }

  .page-news__article {
    max-width: 620px;
  }

  .page-news__article:nth-child(odd) {
    justify-self: start;
    margin-right: auto;
  }

  .page-news__article:nth-child(even) {
    justify-self: end;
    margin-left: auto;
  }

  .page-news__special-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
  }

  .page-news__calendar-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 48px;
  }

  .page-news__subscribe-panel {
    padding: 48px 48px 52px;
  }
}

/* ===== Desktop ===== */
@media (min-width: 1024px) {
  .page-news__hero {
    min-height: 640px;
  }

  .page-news__hero-feature {
    padding: 32px 32px 34px;
  }

  .page-news__hero-feature h2 {
    font-size: 1.6rem;
  }

  .page-news__feed {
    padding: 88px 0 96px;
  }

  .page-news__article {
    margin-bottom: 36px;
  }

  .page-news__article:hover {
    transform: translateY(-3px) rotate(-0.3deg);
  }

  .page-news__special {
    padding: 96px 0 104px;
  }

  .page-news__calendar {
    padding: 96px 0 104px;
  }

  .page-news__subscribe-panel {
    padding: 56px 64px;
  }
}
