.page-news {
  --news-mag-gap: 32px;
  --news-sidebar-w: 360px;
  --news-card-radius: 18px;
  background:
    linear-gradient(rgba(0, 255, 135, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 135, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  color: var(--text-mid);
  padding-bottom: 72px;
}

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

.page-news .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
}

.page-news .breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
  color: var(--text-low);
  font-family: var(--font-mono);
}

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

.page-news .breadcrumb a:hover,
.page-news .breadcrumb a:focus-visible {
  color: var(--accent-green);
  outline: none;
}

.page-news .breadcrumb span[aria-current="page"] {
  color: var(--accent-green);
  font-weight: 500;
}

.page-news .news-hero {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 56px 20px 56px;
  display: grid;
  gap: 40px;
  position: relative;
}

.page-news .news-hero::before {
  content: "JOURNAL";
  position: absolute;
  right: -12px;
  top: 0;
  font-family: var(--font-mono);
  font-size: 96px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.035);
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

.page-news .news-hero__content,
.page-news .news-hero__meta {
  position: relative;
  z-index: 1;
}

.page-news .news-hero__index-label,
.page-news .news-subscribe__index-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--accent-green);
  text-transform: uppercase;
}

.page-news .news-hero__title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-high);
  margin: 18px 0 16px;
  max-width: 760px;
}

.page-news .news-hero__lead {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-mid);
  max-width: 660px;
  margin: 0;
}

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

.page-news .news-hero-stat {
  background: var(--secondary-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.page-news .news-hero-stat:hover {
  border-color: rgba(0, 255, 135, 0.35);
  transform: translateY(-2px);
}

.page-news .news-hero-stat__num {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-green);
  line-height: 1.1;
}

.page-news .news-hero-stat__label {
  font-size: 12px;
  color: var(--text-mid);
}

.page-news .news-magazine {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 20px 72px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}

.page-news .news-section-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 26px;
  border-left: 3px solid var(--accent-green);
  padding-left: 14px;
}

.page-news .news-section-head h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  color: var(--text-high);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-news .news-section-head__no {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 106, 0, 0.45);
  border-radius: var(--radius-pill);
  flex-shrink: 0;
}

.page-news .news-section-head__desc {
  margin: 0;
  font-size: 13px;
  color: var(--text-mid);
}

.page-news .news-articles {
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 0;
}

.page-news .news-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--secondary-bg);
  border: 1px solid var(--border);
  border-radius: var(--news-card-radius);
  overflow: hidden;
  transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.28s ease, border-color 0.28s ease;
}

.page-news .news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
  border-color: rgba(0, 255, 135, 0.28);
}

.page-news .news-card__thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  background: var(--card-bg);
  border-bottom: 1px solid var(--border);
  transition: opacity 0.25s ease;
}

.page-news .news-card:hover .news-card__thumb {
  opacity: 0.92;
}

.page-news .news-card__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  flex: 1;
}

.page-news .news-card__index {
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: var(--font-mono);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  color: rgba(0, 255, 135, 0.13);
  pointer-events: none;
}

.page-news .news-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-right: 40px;
}

.page-news .news-card__tag {
  background: rgba(0, 255, 135, 0.12);
  color: var(--accent-green);
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.page-news .news-card:hover .news-card__tag {
  background: rgba(0, 255, 135, 0.22);
}

.page-news .news-card__time {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-low);
  letter-spacing: 0.03em;
}

.page-news .news-card__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.42;
  color: var(--text-high);
  margin: 0;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.page-news .news-card:hover .news-card__title {
  color: var(--accent-green);
}

.page-news .news-card__excerpt {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-mid);
  margin: 0;
}

.page-news .news-card__link {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent-green);
  text-decoration: none;
  margin-top: auto;
  padding-top: 8px;
  align-self: flex-start;
  position: relative;
  transition: opacity 0.2s ease;
}

.page-news .news-card__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 1px;
  background: var(--accent-green);
  transition: width 0.25s ease;
}

.page-news .news-card__link:hover,
.page-news .news-card__link:focus-visible {
  opacity: 0.75;
  outline: none;
}

.page-news .news-card__link:hover::after,
.page-news .news-card__link:focus-visible::after {
  width: 100%;
}

.page-news .news-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.page-news .topic-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.28s ease, border-color 0.28s ease;
}

.page-news .topic-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 106, 0, 0.32);
}

.page-news .topic-card__img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
  opacity: 0.62;
  border-bottom: 1px solid var(--border);
  transition: opacity 0.25s ease, transform 0.35s ease;
}

.page-news .topic-card:hover .topic-card__img {
  opacity: 0.85;
  transform: scale(1.01);
}

.page-news .topic-card__body {
  padding: 18px 20px 20px;
}

.page-news .topic-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-high);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.page-news .topic-card__desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-mid);
  margin: 0 0 14px;
}

.page-news .topic-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
}

.page-news .topic-card__list li {
  border-bottom: 1px solid var(--border);
}

.page-news .topic-card__list li:last-child {
  border-bottom: 0;
}

.page-news .topic-card__list a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-mid);
  text-decoration: none;
  padding: 10px 0;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.page-news .topic-card__list a::before {
  content: "›";
  color: var(--accent-orange);
  font-family: var(--font-mono);
  font-weight: 700;
  flex-shrink: 0;
}

.page-news .topic-card__list a:hover,
.page-news .topic-card__list a:focus-visible {
  color: var(--accent-green);
  padding-left: 4px;
  outline: none;
}

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

.page-news .news-subscribe__inner {
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 255, 135, 0.12), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(255, 106, 0, 0.1), transparent 50%),
    var(--secondary-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}

.page-news .news-subscribe__body {
  padding: 32px 24px;
}

.page-news .news-subscribe__index-label {
  font-size: 11px;
}

.page-news .news-subscribe__title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-high);
  letter-spacing: -0.02em;
  margin: 12px 0 14px;
}

.page-news .news-subscribe__desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-mid);
  margin: 0 0 18px;
  max-width: 620px;
}

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

.page-news .news-subscribe__points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-high);
}

.page-news .news-subscribe__points li::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 255, 135, 0.14);
  border: 1px solid rgba(0, 255, 135, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-green);
  content: "✓";
  flex-shrink: 0;
}

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

.page-news .news-subscribe__actions .button {
  border-radius: var(--radius-pill);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.page-news .news-subscribe__actions .button--primary {
  background: var(--accent-green);
  color: #06120C;
  border: 1px solid var(--accent-green);
}

.page-news .news-subscribe__actions .button--primary:hover,
.page-news .news-subscribe__actions .button--primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 255, 135, 0.2);
  outline: none;
}

.page-news .news-subscribe__actions .button--outline {
  background: transparent;
  color: var(--text-high);
  border: 1px solid var(--border);
}

.page-news .news-subscribe__actions .button--outline:hover,
.page-news .news-subscribe__actions .button--outline:focus-visible {
  border-color: var(--accent-green);
  color: var(--accent-green);
  transform: translateY(-2px);
  outline: none;
}

.page-news .news-subscribe__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-top: 1px solid var(--border);
}

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

.page-news .news-dataflow img {
  width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: block;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .page-news .news-hero {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
    gap: 32px;
    padding: 64px 40px 56px;
  }

  .page-news .news-hero__meta {
    justify-content: flex-end;
  }

  .page-news .news-card {
    flex-direction: row;
  }

  .page-news .news-card__thumb {
    width: 220px;
    height: 100%;
    min-height: 210px;
    border-bottom: 0;
    border-right: 1px solid var(--border);
    flex-shrink: 0;
  }

  .page-news .news-card__body {
    padding: 18px 22px 20px;
  }

  .page-news .news-subscribe__inner {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: stretch;
  }

  .page-news .news-subscribe__body {
    padding: 44px 32px;
  }

  .page-news .news-subscribe__img {
    height: 100%;
    min-height: 280px;
    border-top: 0;
    border-left: 1px solid var(--border);
  }
}

@media (min-width: 1024px) {
  .page-news .news-magazine {
    grid-template-columns: 1fr var(--news-sidebar-w);
    gap: var(--news-mag-gap);
    padding: 0 40px 72px;
  }

  .page-news .news-hero {
    padding-left: 40px;
    padding-right: 40px;
  }

  .page-news .news-subscribe {
    padding: 0 40px;
  }

  .page-news .news-dataflow {
    padding: 0 40px;
  }

  .page-news .news-section-head {
    margin-bottom: 30px;
  }

  .page-news .news-hero::before {
    font-size: 140px;
    right: -20px;
  }
}
