.page-news {
  background: var(--paper-white);
  color: var(--ink-gray);
  font-family: var(--font-body);
}

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

.page-news .breadcrumb__link {
  color: rgba(244, 247, 251, 0.72);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.page-news .breadcrumb__link:hover {
  color: var(--orange-glow);
}

.page-news .breadcrumb__sep,
.page-news .breadcrumb__current {
  font-size: 14px;
}

.page-news .breadcrumb__sep {
  color: var(--silver-line);
}

.page-news .breadcrumb__current {
  color: var(--orange-glow);
}

.page-news .news-head {
  background:
    radial-gradient(900px 340px at 15% -10%, rgba(45, 107, 255, 0.22), transparent 60%),
    radial-gradient(700px 300px at 96% 0%, rgba(255, 92, 53, 0.18), transparent 55%),
    var(--deep-blue);
  padding: 130px 0 60px;
  border-bottom: 1px solid rgba(184, 194, 204, 0.25);
}

.page-news .news-head__container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 20px;
}

.page-news .news-head__idx {
  color: var(--orange-glow);
  font-size: 14px;
  letter-spacing: 0.06em;
}

.page-news .news-head__title {
  margin: 10px 0 14px;
  font-family: var(--font-title);
  font-size: clamp(40px, 8vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.page-news .news-head__dot {
  color: var(--accent-orange);
}

.page-news .news-head__desc {
  color: rgba(244, 247, 251, 0.78);
  font-size: 16px;
  line-height: 1.7;
  max-width: 560px;
}

.page-news .news-head__meta {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(184, 194, 204, 0.22);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
}

.page-news .news-head__stat {
  color: var(--silver-line);
  font-size: 14px;
}

.page-news .news-head .status-chip {
  color: rgba(244, 247, 251, 0.85);
  background: rgba(45, 198, 140, 0.12);
  border: 1px solid rgba(45, 198, 140, 0.32);
}

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

.page-news .section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--ink-gray);
}

.page-news .label-dot {
  width: 18px;
  height: 2px;
  background: var(--accent-orange);
  display: inline-block;
}

.page-news .section-title {
  margin-top: 14px;
  margin-bottom: 8px;
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--deep-blue);
}

.page-news .section-title__idx {
  color: var(--accent-orange);
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 500;
  margin-left: 8px;
}

.page-news .section-desc {
  color: var(--ink-gray);
  font-size: 16px;
  line-height: 1.6;
  max-width: 520px;
}

.page-news .section-head--light .section-label {
  color: var(--silver-line);
}

.page-news .section-title--light {
  color: #ffffff;
}

.page-news .section-desc--light {
  color: rgba(244, 247, 251, 0.72);
}

.page-news .news-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  line-height: 1.4;
  border: 1px solid transparent;
}

.page-news .news-tag--blue {
  background: rgba(45, 107, 255, 0.08);
  color: var(--bright-blue);
  border-color: rgba(45, 107, 255, 0.28);
}

.page-news .news-tag--orange {
  background: rgba(255, 92, 53, 0.08);
  color: var(--accent-orange);
  border-color: rgba(255, 92, 53, 0.28);
}

.page-news .news-tag--green {
  background: rgba(45, 198, 140, 0.1);
  color: #179a68;
  border-color: rgba(45, 198, 140, 0.32);
}

.page-news .news-tag--amber {
  background: rgba(255, 176, 32, 0.1);
  color: #c48100;
  border-color: rgba(255, 176, 32, 0.32);
}

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

.page-news .feature-story {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(184, 194, 204, 0.5);
  border-radius: var(--radius-print);
  box-shadow: 0 16px 40px rgba(10, 27, 58, 0.08);
  position: relative;
  scroll-margin-top: 118px;
}

.page-news .feature-story::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-orange) 0 120px, var(--silver-line) 120px 100%);
  z-index: 2;
}

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

.page-news .feature-story__body {
  padding: 28px 24px 32px;
  position: relative;
}

.page-news .feature-story__body::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 18px;
  height: 18px;
  border-right: 1px solid rgba(184, 194, 204, 0.55);
  border-bottom: 1px solid rgba(184, 194, 204, 0.55);
  pointer-events: none;
}

.page-news .feature-story__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.page-news .feature-story__meta-text {
  font-size: 14px;
  color: var(--ink-gray);
}

.page-news .feature-story__title {
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--deep-blue);
}

.page-news .feature-story__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-news .feature-story__title a:hover {
  color: var(--accent-orange);
}

.page-news .feature-story__desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-gray);
  margin-bottom: 24px;
}

.page-news .feature-story__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px dashed rgba(184, 194, 204, 0.6);
}

.page-news .feature-story__anchor {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--bright-blue);
}

.page-news .feature-story__link {
  color: var(--accent-orange);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.page-news .feature-story__link:hover {
  text-decoration: underline;
}

.page-news .news-journal {
  background:
    radial-gradient(800px 300px at 88% 0%, rgba(45, 107, 255, 0.12), transparent 55%),
    var(--deep-blue);
  padding: 72px 0;
  margin-top: 80px;
  position: relative;
}

.page-news .news-journal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-orange) 0, var(--accent-orange) 96px, rgba(184, 194, 204, 0.4) 96px 100%);
}

.page-news .timeline-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  margin-top: 40px;
}

.page-news .timeline-period {
  color: var(--orange-glow);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.page-news .timeline-period__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-orange);
  border: 2px solid rgba(255, 92, 53, 0.25);
}

.page-news .timeline-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.page-news .timeline-item {
  background: rgba(22, 53, 94, 0.55);
  border: 1px solid rgba(184, 194, 204, 0.2);
  border-radius: var(--radius-print);
  padding: 18px 20px 20px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.page-news .timeline-item:hover {
  border-color: rgba(255, 92, 53, 0.5);
  background: rgba(22, 53, 94, 0.9);
}

.page-news .timeline-item__topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.page-news .timeline-item__go {
  color: var(--silver-line);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-news .timeline-item:hover .timeline-item__go {
  color: var(--accent-orange);
}

.page-news .timeline-item__title {
  font-family: var(--font-title);
  font-size: 19px;
  line-height: 1.35;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-news .timeline-item__title a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-news .timeline-item__title a:hover {
  color: var(--orange-glow);
}

.page-news .timeline-item__desc {
  color: rgba(244, 247, 251, 0.68);
  font-size: 15px;
  line-height: 1.65;
}

.page-news .news-journal .news-tag {
  background: rgba(255, 255, 255, 0.08);
  color: var(--silver-line);
  border-color: rgba(255, 255, 255, 0.2);
}

.page-news .news-journal .news-tag--blue {
  background: rgba(45, 107, 255, 0.16);
  color: #a9c6ff;
  border-color: rgba(45, 107, 255, 0.38);
}

.page-news .news-journal .news-tag--orange {
  background: rgba(255, 92, 53, 0.14);
  color: var(--orange-glow);
  border-color: rgba(255, 92, 53, 0.38);
}

.page-news .news-journal .news-tag--green {
  background: rgba(45, 198, 140, 0.12);
  color: #77e8c6;
  border-color: rgba(45, 198, 140, 0.36);
}

.page-news .news-journal .news-tag--amber {
  background: rgba(255, 176, 32, 0.12);
  color: #ffd787;
  border-color: rgba(255, 176, 32, 0.36);
}

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

.page-news .filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.page-news .filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  background: #ffffff;
  color: var(--ink-gray);
  border: 1px solid var(--silver-line);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.page-news .filter-btn:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
}

.page-news .filter-btn.tag--active {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  background: rgba(255, 92, 53, 0.06);
}

.page-news .filter-btn__count {
  font-size: 12px;
  opacity: 0.75;
}

.page-news .journal-archive {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  scroll-margin-top: 120px;
}

.page-news .journal-card {
  background: #ffffff;
  border: 1px solid rgba(184, 194, 204, 0.45);
  border-radius: var(--radius-print);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  scroll-margin-top: 120px;
}

.page-news .journal-card:hover {
  box-shadow: 0 16px 36px rgba(10, 27, 58, 0.1);
  transform: translateY(-4px);
  border-color: rgba(255, 92, 53, 0.5);
}

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

.page-news .journal-card__body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.page-news .journal-card__meta {
  font-size: 13px;
  color: var(--silver-line);
}

.page-news .journal-card__title {
  font-family: var(--font-title);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
  color: var(--deep-blue);
}

.page-news .journal-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-news .journal-card__title a:hover {
  color: var(--accent-orange);
}

.page-news .journal-card__desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-gray);
  margin: 0;
}

.page-news .journal-card--plain {
  border-top-width: 3px;
  border-top-color: var(--silver-line);
}

.page-news .journal-card--plain .journal-card__body {
  padding-top: 26px;
}

.page-news .archive-end {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 34px;
  color: var(--silver-line);
  font-size: 13px;
}

.page-news .archive-end__line {
  height: 1px;
  background: var(--silver-line);
  flex: 1;
  max-width: 140px;
  opacity: 0.5;
}

.page-news .news-subscribe {
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 80px 20px 96px;
}

.page-news .subscribe-box {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(184, 194, 204, 0.5);
  border-radius: var(--radius-print);
  position: relative;
  box-shadow: 0 18px 40px rgba(10, 27, 58, 0.07);
}

.page-news .subscribe-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-orange) 0 140px, var(--silver-line) 140px 100%);
  z-index: 2;
}

.page-news .subscribe-box__main {
  padding: 36px 28px 32px;
}

.page-news .subscribe-box__kicker {
  color: var(--ink-gray);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-news .subscribe-box__title {
  margin: 16px 0 12px;
  font-size: 30px;
  font-family: var(--font-title);
  font-weight: 800;
  color: var(--deep-blue);
  line-height: 1.2;
}

.page-news .subscribe-box__desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-gray);
  max-width: 560px;
  margin-bottom: 26px;
}

.page-news .subscribe-box__desc a {
  color: var(--bright-blue);
  font-weight: 500;
}

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

.page-news .subscribe-box__side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  background: var(--deep-blue);
  color: var(--silver-line);
  padding: 24px 28px;
  font-size: 13px;
  letter-spacing: 0.08em;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .page-news .journal-archive {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .page-news .news-head__container {
    padding-inline: 40px;
  }

  .page-news .news-feature,
  .page-news .news-archive {
    padding-top: 96px;
  }

  .page-news .feature-story {
    grid-template-columns: 1.05fr 1fr;
  }

  .page-news .feature-story__body {
    padding: 40px 36px 44px;
  }

  .page-news .feature-story__title {
    font-size: 32px;
  }

  .page-news .timeline-columns {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }

  .page-news .subscribe-box {
    grid-template-columns: 2fr 0.9fr;
  }

  .page-news .subscribe-box__main {
    padding: 44px 48px 40px;
  }

  .page-news .subscribe-box__side {
    padding: 36px 32px;
  }
}

@media (min-width: 1180px) {
  .page-news .news-head {
    padding-top: 150px;
  }

  .page-news .section-title {
    font-size: 32px;
  }

  .page-news .news-journal {
    padding: 96px 0;
  }
}
