.page-news {
  --news-bg: #E8ECF0;
  --news-surface: #FFFFFF;
  --news-ink: #0B1B2B;
  --news-blue: #0A2540;
  --news-blue-soft: #123A5F;
  --news-orange: #FF5A1F;
  --news-orange-light: #FF8A65;
  --news-white: #F5F7FA;
  --news-green: #00C48C;
  --news-radius: 4px;
  background-color: var(--news-bg);
  color: var(--news-ink);
  font-family: var(--bp-font-body);
  overflow: clip;
}

.page-news a {
  transition: color 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-news .news-hero {
  position: relative;
  overflow: hidden;
  padding: 40px 0 56px;
  background-color: var(--news-blue);
  animation: page-news-hero-in 0.5s ease-out both;
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 247, 250, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 247, 250, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  z-index: 0;
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  right: -15%;
  bottom: -28%;
  width: 55%;
  height: 160%;
  background: linear-gradient(135deg, rgba(18, 58, 95, 0.35) 0%, rgba(255, 90, 31, 0.2) 100%);
  transform: rotate(12deg);
  transform-origin: top right;
  pointer-events: none;
  display: none;
  z-index: 1;
}

@media (min-width: 1024px) {
  .page-news .news-hero {
    padding: 72px 0 96px;
  }
  .page-news .news-hero::after {
    display: block;
  }
}

@keyframes page-news-hero-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-news .news-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 1024px) {
  .page-news .news-hero-inner {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
  }
}

.page-news .news-hero .bp-breadcrumb-list {
  justify-content: flex-start;
  margin-bottom: 18px;
}

.page-news .news-hero .bp-breadcrumb-item {
  color: rgba(245, 247, 250, 0.72);
  font-size: 13px;
}

.page-news .news-hero .bp-breadcrumb-item a {
  color: rgba(245, 247, 250, 0.72);
  text-decoration: none;
}

.page-news .news-hero .bp-breadcrumb-item a:hover {
  color: var(--news-orange-light);
}

.page-news .news-hero .bp-breadcrumb-item[aria-current="page"] {
  color: var(--news-orange);
}

.page-news .news-hero h1 {
  font-family: var(--bp-font-head);
  font-size: clamp(26px, 5vw, 42px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.25;
  color: var(--news-white);
  margin: 0;
  max-width: 15em;
}

.page-news .news-hero-desc {
  margin-top: 16px;
  max-width: 42em;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(245, 247, 250, 0.78);
}

.page-news .news-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.page-news .news-hero-tags .bp-tag {
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.page-news .news-hero-tags .bp-tag:hover {
  background-color: var(--news-orange);
  color: var(--news-white);
  border-color: var(--news-orange);
}

.page-news .hero-coord {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-left: 1px solid rgba(245, 247, 250, 0.25);
  padding-left: 14px;
}

.page-news .coord-label {
  font-family: var(--bp-font-data);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(245, 247, 250, 0.55);
}

.page-news .coord-value {
  font-family: var(--bp-font-data);
  font-size: 14px;
  color: var(--news-white);
}

.page-news .hero-version {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 12px;
  margin-top: 24px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-right: 3px solid var(--news-orange);
}

.page-news .hero-version-label {
  flex: 0 0 100%;
  font-family: var(--bp-font-data);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: rgba(245, 247, 250, 0.55);
}

.page-news .hero-version-num {
  font-family: var(--bp-font-data);
  font-size: 28px;
  color: var(--news-white);
  letter-spacing: 0.04em;
  line-height: 1;
}

.page-news .hero-version-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  font-size: 13px;
  color: rgba(245, 247, 250, 0.8);
}

.page-news .hero-metrics {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.page-news .hero-metric {
  flex: 1;
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid var(--news-orange);
}

.page-news .hero-metric-num {
  display: block;
  font-family: var(--bp-font-data);
  font-size: 24px;
  font-weight: 700;
  color: var(--news-white);
  line-height: 1.3;
}

.page-news .hero-metric-label {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: rgba(245, 247, 250, 0.6);
}

.page-news .news-index-section {
  padding: 48px 0 64px;
  background: var(--news-bg);
}

.page-news .news-section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.page-news .news-section-head .bp-section-kicker {
  font-family: var(--bp-font-data);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--news-orange);
}

.page-news .news-section-head .bp-section-title {
  font-family: var(--bp-font-head);
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 700;
  color: var(--news-blue);
  margin: 0;
  letter-spacing: 0.02em;
}

.page-news .news-section-head .bp-section-desc {
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(11, 27, 43, 0.65);
  max-width: 44em;
}

.page-news .news-section-head--dark .bp-section-title {
  color: var(--news-white);
}

.page-news .news-section-head--dark .bp-section-desc {
  color: rgba(245, 247, 250, 0.72);
}

.page-news .news-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 32px;
}

@media (min-width: 1024px) {
  .page-news .news-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 48px;
    align-items: start;
  }
}

.page-news .news-rail {
  order: -1;
}

.page-news .news-rail-sticky {
  position: relative;
  top: 0;
  border-left: 1px solid var(--news-blue-soft);
  padding-left: 18px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--news-blue-soft) transparent;
}

.page-news .rail-caption {
  flex: 0 0 auto;
  font-family: var(--bp-font-data);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--news-blue-soft);
  display: block;
  padding: 10px 0;
  border-bottom: 2px solid var(--news-orange);
  white-space: nowrap;
}

.page-news .rail-node {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--news-surface);
  border: 1px solid var(--news-bg);
  color: var(--news-ink);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.4;
  border-radius: var(--news-radius);
  transition: border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}

.page-news .rail-node:hover,
.page-news .rail-node.is-active {
  border-color: var(--news-orange);
  color: var(--news-orange);
  box-shadow: 0 4px 14px rgba(11, 27, 43, 0.08);
}

.page-news .rail-num {
  font-family: var(--bp-font-data);
  font-size: 12px;
  font-weight: 700;
  color: var(--news-orange);
}

@media (min-width: 1024px) {
  .page-news .news-rail {
    order: 0;
    align-self: start;
  }
  .page-news .news-rail-sticky {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    border-left: none;
    border-right: 3px solid var(--news-blue-soft);
    padding-left: 0;
    padding-right: 18px;
    overflow: visible;
    position: sticky;
    top: 110px;
  }
  .page-news .rail-node {
    justify-content: flex-start;
    white-space: normal;
  }
}

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

.page-news .news-catbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--news-bg);
  margin-bottom: 24px;
  background: var(--news-surface);
  padding: 12px 14px;
  border: 1px solid var(--news-bg);
  border-radius: var(--news-radius);
}

.page-news .catbar-label {
  font-family: var(--bp-font-data);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(11, 27, 43, 0.5);
  margin-right: 4px;
}

.page-news .catbar-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--news-bg);
  border: 1px solid rgba(11, 27, 43, 0.1);
  font-size: 12px;
  font-weight: 500;
  color: var(--news-ink);
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.page-news .catbar-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--news-orange);
  flex: 0 0 auto;
}

.page-news .catbar-chip:hover {
  border-color: var(--news-orange);
  color: var(--news-orange);
  transform: translateY(-2px);
}

.page-news .news-card {
  background: var(--news-surface);
  border: 1px solid rgba(11, 27, 43, 0.08);
  border-radius: var(--news-radius);
  box-shadow: 0 4px 20px rgba(11, 27, 43, 0.08);
  overflow: hidden;
  scroll-margin-top: 100px;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .page-news .news-card {
    flex-direction: row;
    align-items: stretch;
  }
  .page-news .news-card:nth-child(even) {
    flex-direction: row-reverse;
  }
  .page-news .news-card-media {
    flex: 0 0 300px;
    width: 300px;
    height: auto;
    min-height: 260px;
  }
}

.page-news .news-card-media {
  width: 100%;
  aspect-ratio: 5 / 3;
  overflow: hidden;
  background: var(--news-blue-soft);
  display: block;
  position: relative;
}

@media (min-width: 768px) {
  .page-news .news-card-media {
    aspect-ratio: auto;
  }
}

.page-news .news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-news .news-card:hover .news-card-media img {
  transform: scale(1.03);
}

.page-news .news-card-body {
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  min-width: 0;
}

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

.page-news .news-cat-line {
  width: 26px;
  height: 3px;
  display: inline-block;
  border-radius: 2px;
  flex: 0 0 auto;
}

.page-news .news-cat-line--orange {
  background: var(--news-orange);
}

.page-news .news-cat-line--green {
  background: var(--news-green);
}

.page-news .news-cat-line--blue {
  background: var(--news-blue-soft);
}

.page-news .news-cat-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--news-blue-soft);
}

.page-news .news-card-no {
  margin-left: auto;
  font-family: var(--bp-font-data);
  font-size: 14px;
  color: rgba(11, 27, 43, 0.35);
}

.page-news .news-card-title {
  font-family: var(--bp-font-head);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--news-blue);
  margin: 16px 0 0;
  letter-spacing: 0.01em;
}

.page-news .news-card-quote {
  margin: 12px 0 0;
  padding-left: 12px;
  border-left: 3px solid var(--news-orange);
  font-size: 14px;
  line-height: 1.8;
  color: rgba(11, 27, 43, 0.75);
}

.page-news .news-expand {
  border-top: 1px solid var(--news-bg);
  margin-top: 18px;
  padding-top: 12px;
}

.page-news .news-expand summary {
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  color: var(--news-blue-soft);
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  user-select: none;
}

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

.page-news .news-expand summary:focus-visible {
  outline: 2px solid var(--news-orange);
  outline-offset: 2px;
}

.page-news .news-expand summary::before {
  content: "+";
  font-family: var(--bp-font-data);
  color: var(--news-orange);
  font-size: 16px;
  line-height: 1;
}

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

.page-news .news-expand p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--news-ink);
}

.page-news .news-card-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-news .news-version-section {
  padding: 56px 0 64px;
  background: var(--news-blue);
  position: relative;
  overflow: hidden;
}

.page-news .news-version-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 247, 250, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 247, 250, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.page-news .version-list {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.page-news .version-item {
  position: relative;
  display: flex;
  gap: 18px;
}

.page-news .version-marker {
  flex: 0 0 28px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  position: relative;
}

.page-news .version-marker::after {
  content: "";
  position: absolute;
  top: 30px;
  bottom: -24px;
  left: 50%;
  width: 2px;
  background: rgba(245, 247, 250, 0.18);
  transform: translateX(-1px);
}

.page-news .version-item:last-child .version-marker::after {
  display: none;
}

.page-news .version-card {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--news-orange);
  border-radius: var(--news-radius);
  padding: 18px 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-news .version-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-2px);
}

.page-news .version-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.page-news .version-name {
  font-family: var(--bp-font-head);
  font-size: 18px;
  color: var(--news-white);
  margin: 0;
}

.page-news .version-desc {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(245, 247, 250, 0.78);
}

.page-news .version-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.page-news .version-points li {
  font-size: 12px;
  color: var(--news-orange-light);
  background: rgba(255, 90, 31, 0.14);
  padding: 5px 10px;
  border-radius: 999px;
  font-family: var(--bp-font-data);
  white-space: nowrap;
}

.page-news .news-data-section {
  padding: 56px 0 64px;
  background: var(--news-surface);
}

.page-news .data-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 36px;
}

@media (min-width: 960px) {
  .page-news .data-feature-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    align-items: stretch;
  }
}

.page-news .data-feature-main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 480px) {
  .page-news .data-feature-main {
    grid-template-columns: 1fr;
  }
}

.page-news .data-feature-card {
  background: var(--news-surface);
  border: 1px solid var(--news-bg);
  border-radius: var(--news-radius);
  padding: 24px 18px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.page-news .data-feature-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--news-orange);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.page-news .data-feature-card:hover {
  box-shadow: 0 8px 24px rgba(11, 27, 43, 0.1);
  transform: translateY(-2px);
}

.page-news .data-feature-card:hover::before {
  opacity: 1;
}

.page-news .data-feature-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(11, 27, 43, 0.6);
  display: block;
}

.page-news .data-feature-value {
  display: block;
  font-family: var(--bp-font-data);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  font-weight: 700;
  color: var(--news-blue);
  margin-top: 8px;
}

.page-news .data-feature-value span {
  font-size: 15px;
  font-weight: 400;
  color: var(--news-orange);
  margin-left: 4px;
}

.page-news .data-feature-text {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: rgba(11, 27, 43, 0.6);
}

.page-news .data-feature-aside {
  background: var(--news-blue);
  color: var(--news-white);
  border-radius: var(--news-radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}

.page-news .data-feature-aside::before {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(255, 138, 101, 0.4);
  border-radius: 50%;
}

.page-news .data-feature-aside::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 4px;
  width: 80px;
  background: var(--news-orange);
}

.page-news .data-aside-title {
  font-family: var(--bp-font-head);
  font-size: 18px;
  margin: 0 0 18px;
  position: relative;
  letter-spacing: 0.02em;
}

.page-news .data-field-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.page-news .data-field-list li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(245, 247, 250, 0.12);
}

.page-news .data-field-list li:last-child {
  border-bottom: 0;
}

.page-news .field-name {
  font-family: var(--bp-font-data);
  font-size: 13px;
  font-weight: 700;
  color: var(--news-orange);
}

.page-news .field-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(245, 247, 250, 0.78);
}

.page-news .news-benefit-section {
  padding: 56px 0 72px;
  background: var(--news-blue);
  position: relative;
}

.page-news .benefit-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 36px;
}

@media (min-width: 900px) {
  .page-news .benefit-panel {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    align-items: stretch;
  }
}

.page-news .benefit-main {
  background: var(--news-surface);
  color: var(--news-ink);
  border-radius: var(--news-radius);
  padding: 28px 24px;
  border-left: 4px solid var(--news-orange);
}

.page-news .benefit-title {
  font-family: var(--bp-font-head);
  font-size: 19px;
  font-weight: 700;
  color: var(--news-blue);
  margin: 0 0 14px;
}

.page-news .benefit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.page-news .benefit-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--news-ink);
}

.page-news .benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--news-orange);
  border-radius: 2px;
}

.page-news .benefit-footnote {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--news-bg);
  font-size: 13px;
  line-height: 1.8;
  color: rgba(11, 27, 43, 0.7);
}

.page-news .benefit-aside {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--news-radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-news .benefit-aside-kicker {
  font-family: var(--bp-font-data);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(245, 247, 250, 0.55);
}

.page-news .benefit-aside-value {
  font-family: var(--bp-font-data);
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 700;
  color: var(--news-orange);
  line-height: 1.15;
  margin-top: 6px;
}

.page-news .benefit-aside-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 247, 250, 0.8);
  margin-top: 4px;
}

.page-news .benefit-aside-mail {
  margin-top: 16px;
  font-size: 12px;
  font-family: var(--bp-font-data);
  color: var(--news-orange-light);
  word-break: break-all;
}
