/* News pages: unified editorial system */

.news-page {
  background: #f4f8fe;
  color: #0f2351;
}

.news-page .navbar {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(198, 214, 238, 0.55);
  box-shadow: 0 8px 28px rgba(15, 35, 81, 0.06);
  backdrop-filter: blur(18px);
}

.news-page-hero {
  position: relative;
  overflow: hidden;
  margin-top: 72px;
  padding: 94px 0 62px;
  background:
    radial-gradient(circle at 84% 20%, rgba(43, 170, 212, 0.12), transparent 22%),
    radial-gradient(circle at 15% 18%, rgba(21, 88, 214, 0.08), transparent 26%),
    linear-gradient(135deg, #f8fbff 0%, #eef6ff 100%);
  border-bottom: 1px solid #dce8f6;
}

.news-hero-dot-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(63, 103, 166, 0.22) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.6;
}

.news-hero-orb {
  display: none;
}

.news-hero-content,
.news-main > .container {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 56px;
  padding-right: 56px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: #5f76a2;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: #4e6695;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: #1558d6;
}

.breadcrumb .bc-sep {
  color: #9db0d0;
}

.breadcrumb span:last-child {
  max-width: 360px;
  overflow: hidden;
  color: #173067;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-hero-title {
  margin: 0;
  color: #0f1a3e;
  font-family: 'Noto Serif SC', 'Noto Sans SC', serif;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.38;
  letter-spacing: -0.01em;
}

.news-list-subtitle {
  max-width: 620px;
  margin: 16px auto 0;
  color: #5b6f99;
  font-size: 16px;
  line-height: 1.8;
}

.news-list-page .news-hero-content {
  text-align: center;
}

.news-list-page .breadcrumb {
  justify-content: center;
}

.news-main {
  min-height: 60vh;
  padding: 42px 0 92px;
}

/* News list */

.news-list-main {
  padding-top: 36px;
}

.news-filter-bar {
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 30px;
  padding: 7px;
  gap: 6px;
  border: 1px solid #d8e5f8;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 28px rgba(15, 35, 81, 0.07);
  backdrop-filter: blur(16px);
  flex-wrap: wrap;
}

.news-filter-btn {
  min-height: 36px;
  padding: 7px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: #536b98;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.news-filter-btn:hover {
  background: rgba(21, 88, 214, 0.07);
  color: #1558d6;
}

.news-filter-btn.active {
  background: linear-gradient(135deg, #1558d6, #2b7fff);
  color: #fff;
  box-shadow: 0 8px 18px rgba(21, 88, 214, 0.18);
}

.news-list-grid {
  display: grid;
  max-width: 1120px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.news-card,
.news-list-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid #dce7f6;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 35, 81, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.news-list-card:hover {
  transform: translateY(-3px);
  border-color: rgba(21, 88, 214, 0.22);
  box-shadow: 0 16px 36px rgba(15, 35, 81, 0.1);
}

.news-card-img {
  position: relative;
  height: 168px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.66), transparent 34%),
    linear-gradient(135deg, #eaf4ff 0%, #7890b8 48%, #15346c 100%);
}

.news-card-img::before,
.news-detail-visual::before {
  content: '';
  position: absolute;
  inset: 15px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 15px;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
}

.news-card-img img,
.news-detail-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-visual-placeholder,
.news-card-img-placeholder {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.news-visual-placeholder span,
.news-card-img-placeholder span {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.news-visual-placeholder small,
.news-card-img-placeholder small {
  padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.news-card-body {
  display: flex;
  min-height: 250px;
  padding: 22px 24px 24px;
  flex: 1;
  flex-direction: column;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.news-category,
.hero-category-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(43, 170, 212, 0.1);
  color: #05799a;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.news-date,
.hero-date-tag {
  color: #637aa7;
  font-family: 'Inter', 'Noto Sans SC', sans-serif;
  font-size: 13px;
}

.news-title {
  margin: 0 0 10px;
  color: #102347;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.58;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-summary {
  margin: 0;
  color: #5d719c;
  font-size: 14px;
  line-height: 1.78;
  flex: 1;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.news-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  color: #1558d6;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.news-link:hover {
  gap: 10px;
}

.news-list-empty {
  max-width: 1120px;
  margin: 0 auto;
  padding: 54px 24px;
  border: 1px dashed #cbdaf0;
  border-radius: 18px;
  background: #fff;
  color: #6b7eaa;
  text-align: center;
}

/* News detail */

body:not(.news-list-page) .news-page-hero {
  padding: 88px 0 58px;
}

.news-detail-hero-layout {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 64px;
}

.news-detail-copy {
  position: relative;
  min-width: 0;
  padding-left: 28px;
}

.news-detail-copy::before {
  content: '';
  position: absolute;
  left: 0;
  top: 42px;
  width: 4px;
  height: 116px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2BAAD4, #1558d6);
}

body:not(.news-list-page) .news-hero-title {
  max-width: 780px;
  font-size: clamp(28px, 2.3vw, 36px);
  line-height: 1.52;
}

.news-hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.news-detail-visual {
  position: relative;
  height: 210px;
  overflow: hidden;
  border: 1px solid #d4e2f5;
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.66), transparent 34%),
    linear-gradient(135deg, #eaf4ff 0%, #7890b8 48%, #15346c 100%);
  box-shadow: 0 16px 38px rgba(15, 35, 81, 0.1);
}

body:not(.news-list-page) .news-main {
  background: #fff;
  padding-top: 58px;
}

.news-article {
  max-width: 880px;
  margin: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.article-cover,
.article-lead {
  display: none !important;
}

.article-body {
  max-width: 880px;
  padding: 0;
  color: #2e3442;
  font-size: 16px;
  line-height: 2.05;
}

.article-body p {
  margin: 0 0 24px;
}

.article-body strong,
.article-body b {
  color: #17213a;
  font-weight: 800;
}

.article-body h2,
.article-body h3,
.article-body h4 {
  margin: 34px 0 14px;
  color: #0f1a3e;
  font-family: 'Noto Serif SC', 'Noto Sans SC', serif;
  line-height: 1.5;
}

.article-body h2 { font-size: 26px; }
.article-body h3 { font-size: 21px; }
.article-body h4 { font-size: 18px; }

.article-body ul,
.article-body ol {
  margin: 0 0 24px;
  padding-left: 24px;
}

.article-body li {
  margin: 8px 0;
}

.article-body figure {
  margin: 30px 0;
}

.article-body figure img {
  display: block;
  width: 100%;
  border-radius: 16px;
}

.article-body figcaption {
  margin-top: 10px;
  color: #6b7eaa;
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
}

.article-body blockquote,
.article-body .news-quote {
  margin: 30px 0;
  padding: 20px 22px;
  border-left: 4px solid #2b7fff;
  border-radius: 0 16px 16px 0;
  background: #f4f8ff;
  color: #173067;
}

.article-body hr,
.article-body .news-divider {
  margin: 34px 0;
  border: none;
  border-top: 1px solid #dce7f8;
}

.article-footer {
  max-width: 880px;
  margin-top: 48px;
  padding: 28px 0 0;
  border-top: 1px solid #e3ecfa;
  background: transparent;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border: 1px solid #d8e6f8;
  border-radius: 999px;
  background: #f4f8ff;
  color: #1558d6;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.back-btn:hover {
  gap: 12px;
}

.related-news {
  max-width: 880px;
  margin: 62px 0 0;
}

.related-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: #0f2351;
  font-size: 18px;
  font-weight: 800;
}

.related-title::before {
  content: '';
  width: 5px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2BAAD4, #1558d6);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.related-card {
  overflow: hidden;
  border: 1px solid #dce7f6;
  border-radius: 16px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15, 35, 81, 0.08);
}

.related-card-img {
  position: relative;
  display: flex;
  height: 116px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.66), transparent 34%),
    linear-gradient(135deg, #eaf4ff 0%, #7890b8 48%, #15346c 100%);
}

.related-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card-placeholder {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.related-card-body {
  padding: 15px 16px 17px;
}

.related-card-title {
  display: -webkit-box;
  overflow: hidden;
  margin: 8px 0;
  color: #102347;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* States */

.news-loading,
.news-not-found {
  display: flex;
  min-height: 260px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  color: #637aa7;
  text-align: center;
}

.loading-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid #dfe8f6;
  border-top-color: #1558d6;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.nf-icon {
  font-size: 48px;
}

.news-not-found h2 {
  margin: 0;
  color: #0f2351;
  font-size: 24px;
}

.news-not-found p {
  margin: 0 0 12px;
}

@media (max-width: 1020px) {
  .news-detail-hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .news-detail-visual {
    max-width: 460px;
  }

  .news-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .news-page-hero {
    margin-top: 72px;
    padding: 68px 0 38px;
  }

  .news-hero-content,
  .news-main > .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .news-detail-copy {
    padding-left: 0;
  }

  .news-detail-copy::before {
    display: none;
  }

  .news-hero-title,
  body:not(.news-list-page) .news-hero-title {
    font-size: 25px;
    line-height: 1.45;
  }

  .news-detail-visual,
  .news-card-img {
    height: 168px;
  }

  .news-card-body {
    min-height: auto;
    padding: 20px;
  }

  .news-filter-bar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    border-radius: 20px;
    overflow-x: visible;
  }

  .news-filter-btn {
    width: 100%;
    min-width: 0;
    padding-left: 14px;
    padding-right: 14px;
  }

  .news-list-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .article-body {
    font-size: 15px;
    line-height: 1.9;
  }

  body:not(.news-list-page) .news-main {
    padding-top: 34px;
  }

  .article-body p {
    margin-bottom: 18px;
  }

  .related-news {
    margin-top: 42px;
  }
}

@media (max-width: 480px) {
  .news-list-subtitle {
    font-size: 14px;
  }

  .news-filter-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .breadcrumb {
    font-size: 12px;
  }

  .breadcrumb span:last-child {
    max-width: 220px;
  }

  .news-detail-visual,
  .news-card-img {
    height: 150px;
  }

  .news-title {
    font-size: 15px;
  }

  .news-summary {
    font-size: 13px;
  }
}

/* Phone-first editorial refinement */
@media (max-width: 768px) {
  .news-page-hero {
    margin-top: 64px;
    padding: 42px 0 28px;
  }

  .news-hero-content,
  .news-main > .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .news-list-page .breadcrumb {
    margin-bottom: 12px;
  }

  .news-hero-title,
  body:not(.news-list-page) .news-hero-title {
    font-size: clamp(25px, 7.4vw, 31px);
    line-height: 1.3;
  }

  .news-list-subtitle {
    max-width: 310px;
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.65;
  }

  .news-main {
    padding: 26px 0 58px;
  }

  .news-list-main {
    padding-top: 22px;
  }

  .news-filter-bar {
    margin-bottom: 20px;
    padding: 5px;
    gap: 5px;
    border-radius: 18px;
  }

  .news-filter-btn {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 12px;
  }

  .news-list-grid {
    gap: 16px;
  }

  .news-list-card,
  .news-card {
    border-radius: 18px;
    box-shadow: 0 10px 26px rgba(15, 35, 81, 0.07);
  }

  .news-card-img,
  .news-detail-visual {
    height: 142px;
  }

  .news-card-img::before,
  .news-detail-visual::before {
    inset: 12px;
    border-radius: 13px;
    background-size: 26px 26px;
  }

  .news-card-body {
    padding: 17px;
  }

  .news-meta {
    gap: 8px;
    margin-bottom: 10px;
  }

  .news-category,
  .hero-category-tag {
    font-size: 11px;
    padding: 3px 8px;
  }

  .news-date,
  .hero-date-tag {
    font-size: 12px;
  }

  .news-title {
    font-size: 15px;
    line-height: 1.5;
  }

  .news-summary {
    font-size: 13px;
    line-height: 1.65;
  }

  .news-link {
    margin-top: 12px;
    font-size: 13px;
  }

  body:not(.news-list-page) .news-page-hero {
    padding: 38px 0 30px;
  }

  .news-detail-hero-layout {
    gap: 18px;
  }

  .news-hero-meta {
    margin-top: 14px;
  }

  body:not(.news-list-page) .news-main {
    padding-top: 24px;
  }

  .article-card {
    border-radius: 18px;
  }

  .article-body {
    font-size: 14px;
    line-height: 1.88;
  }
}

@media (max-width: 480px) {
  .news-hero-content,
  .news-main > .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .breadcrumb span:last-child {
    max-width: 190px;
  }

  .news-card-img,
  .news-detail-visual {
    height: 132px;
  }
}

/* ─── News pages aligned with the homepage-style secondary system ─────────── */
.news-page .navbar {
  background:
    linear-gradient(180deg, rgba(13, 42, 98, 0.96), rgba(13, 42, 98, 0.78));
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: none;
}

.news-page .navbar .nav-link {
  color: rgba(236, 246, 255, 0.90);
}

.news-page .navbar .nav-link:hover,
.news-page .navbar .nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.12);
}

.news-page .navbar .logo-img {
  filter: brightness(0) invert(1) drop-shadow(0 10px 24px rgba(0, 0, 0, 0.20));
}

.news-page .navbar .nav-search-trigger {
  color: #fff;
}

.news-page .lang-switcher {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.13);
}

.news-page .lang-switch-btn {
  color: rgba(232, 240, 255, 0.70);
}

.news-page .lang-switch-btn.active {
  color: #fff;
  background: linear-gradient(135deg, #1558D6, #2F83FF);
  box-shadow: 0 10px 22px rgba(0, 31, 84, 0.22);
}

.news-page-hero {
  min-height: 520px;
  display: flex;
  align-items: center;
  margin-top: 0;
  padding: 126px 0 74px;
  border-bottom: 0;
  background:
    radial-gradient(circle at 82% 38%, rgba(43, 170, 212, 0.16), transparent 25%),
    radial-gradient(circle at 16% 16%, rgba(37, 99, 235, 0.20), transparent 32%),
    linear-gradient(145deg, #0A2559 0%, #123B82 48%, #0B2863 100%);
}

.news-hero-dot-grid {
  background-image: radial-gradient(rgba(125, 211, 252, 0.20) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.42;
}

.news-hero-content,
.news-main > .container {
  max-width: 1240px;
  padding-left: 48px;
  padding-right: 48px;
}

.news-list-page .news-hero-content,
.news-list-page .breadcrumb {
  text-align: left;
  justify-content: flex-start;
}

.breadcrumb {
  color: rgba(230, 242, 255, 0.66);
}

.breadcrumb a {
  color: rgba(230, 242, 255, 0.74);
}

.breadcrumb span:last-child,
.breadcrumb .bc-sep {
  color: rgba(255, 255, 255, 0.88);
}

.news-hero-title,
body:not(.news-list-page) .news-hero-title {
  max-width: 760px;
  color: #fff;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.news-list-subtitle {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(226, 239, 255, 0.76);
  font-size: 17px;
}

.news-detail-hero-layout {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 52px;
}

.news-detail-copy {
  padding-left: 0;
}

.news-detail-copy::before {
  display: none;
}

.news-detail-visual {
  height: 236px;
  border-color: rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.36), transparent 34%),
    linear-gradient(135deg, rgba(234, 244, 255, 0.16) 0%, rgba(21, 88, 214, 0.35) 48%, rgba(8, 31, 75, 0.72) 100%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.news-main {
  background:
    radial-gradient(circle at 14% 0%, rgba(21, 88, 214, 0.07), transparent 24%),
    linear-gradient(180deg, #F3F8FF 0%, #FFFFFF 55%);
}

.news-list-main {
  padding-top: 0;
}

.news-filter-bar {
  position: relative;
  z-index: 2;
  margin: -28px auto 42px;
  border-color: rgba(185, 204, 235, 0.70);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(30, 68, 126, 0.10);
}

.news-list-grid {
  max-width: 1180px;
  gap: 24px;
}

.news-card,
.news-list-card {
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(30, 68, 126, 0.08);
}

.news-card-img {
  height: 188px;
}

.news-card-body {
  min-height: 246px;
}

body:not(.news-list-page) .news-main {
  background:
    linear-gradient(180deg, #F3F8FF 0%, #FFFFFF 42%);
  padding-top: 64px;
}

.news-article,
.article-footer,
.related-news {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.article-body {
  color: #25375E;
  font-size: 17px;
  line-height: 2.02;
}

@media (max-width: 1020px) {
  .news-detail-hero-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .news-page-hero {
    min-height: auto;
    padding: 116px 0 64px;
  }

  .news-hero-content,
  .news-main > .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .news-hero-title,
  body:not(.news-list-page) .news-hero-title {
    font-size: clamp(32px, 10vw, 42px);
  }

  .news-filter-bar {
    margin-top: -20px;
  }
}

/* ─── Compact news rhythm correction ──────────────────────────────────────── */
.news-page .lang-switcher {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.18);
}

.news-page .lang-switch-btn {
  color: rgba(232, 240, 255, 0.86);
}

.news-page-hero {
  min-height: 460px;
  padding: 108px 0 56px;
}

.news-hero-content,
.news-main > .container {
  max-width: 1180px;
  padding-left: 44px;
  padding-right: 44px;
}

.news-list-page .news-hero-content {
  max-width: 760px;
  text-align: center;
}

.news-list-page .breadcrumb {
  justify-content: center;
}

.news-hero-title,
body:not(.news-list-page) .news-hero-title {
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: 1.2;
}

.news-list-subtitle {
  margin: 16px auto 0;
  font-size: 16px;
}

.news-filter-bar {
  margin-top: -24px;
  margin-bottom: 36px;
}

.news-card-img {
  height: 176px;
}

.news-card-body {
  min-height: 232px;
  padding: 21px 22px 23px;
}

.news-list-grid {
  max-width: 1080px;
  gap: 22px;
}

@media (max-width: 768px) {
  .news-page-hero {
    padding: 112px 0 56px;
  }
}

/* ─── Final news alignment with secondary pages and homepage width ───────── */
.news-hero-content,
.news-main > .container {
  width: 100%;
  max-width: 1600px;
  padding-left: 60px;
  padding-right: 60px;
  box-sizing: border-box;
}

.news-list-page .news-hero-content {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.news-list-page .breadcrumb {
  justify-content: flex-start;
}

.news-list-subtitle {
  max-width: 680px;
  margin: 16px 0 0;
}

.news-filter-bar {
  margin-left: 0;
  margin-right: auto;
}

.news-list-grid {
  max-width: 1280px;
  margin-left: 0;
  margin-right: auto;
}

@media (min-width: 1360px) {
  .news-list-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1200px) {
  .news-hero-content,
  .news-main > .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 768px) {
  .news-hero-content,
  .news-main > .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* ─── 2026 repair: make news pages use the same rail as hub pages ────────── */
.news-main {
  --page-edge: max(72px, calc((100vw - 1600px) / 2 + 72px));
}

.news-page-hero {
  min-height: 520px;
  padding: 148px 0 96px;
  background:
    radial-gradient(circle at 72% 44%, rgba(43, 170, 212, .18), transparent 28%),
    linear-gradient(180deg, #0A2559 0%, #1040A0 100%);
}

.news-page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 106px;
  background: linear-gradient(180deg, rgba(14, 61, 134, 0), rgba(244, 248, 255, 1));
  pointer-events: none;
}

.news-hero-content,
.news-main > .container {
  width: 100%;
  max-width: none;
  padding-left: var(--page-edge);
  padding-right: var(--page-edge);
}

.news-list-page .news-hero-content,
.news-list-page .breadcrumb,
.news-detail-copy,
.news-detail-copy .breadcrumb {
  text-align: left;
  justify-content: flex-start;
}

.news-hero-title,
body:not(.news-list-page) .news-hero-title {
  max-width: 820px;
  font-size: clamp(42px, 4vw, 64px);
  letter-spacing: -.055em;
  word-break: keep-all;
}

.news-list-subtitle {
  max-width: 720px;
  margin: 18px 0 0;
}

.news-list-main {
  padding: 0 0 96px;
}

.news-filter-bar {
  width: fit-content;
  max-width: 100%;
  margin: -30px 0 44px;
}

.news-list-grid {
  max-width: 1280px;
  margin: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body:not(.news-list-page) .news-main {
  padding: 78px 0 112px;
}

.news-detail-hero-layout {
  max-width: 1380px;
  margin: 0;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
}

.news-detail-visual {
  border-radius: 30px;
}

.news-article,
.article-footer,
.related-news {
  max-width: 980px;
  margin-left: 0;
  margin-right: auto;
}

.news-article {
  border: 1px solid rgba(185, 204, 235, .78);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 26px 80px rgba(35, 68, 118, .10);
}

.article-body,
.article-lead {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1180px) {
  .news-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .news-main {
    --page-edge: 22px;
  }

  .news-page-hero {
    min-height: auto;
    padding: 116px 0 68px;
  }

  .news-list-grid,
  .news-detail-hero-layout {
    grid-template-columns: 1fr;
  }
}

/* ─── 2026 final news rail: same width and left rhythm as all subpages ───── */
.news-page {
  --page-edge: max(58px, calc((100vw - 1600px) / 2 + 58px));
}

.news-page-hero {
  min-height: 460px;
  padding: 126px 0 76px;
}

.news-hero-content,
.news-main > .container {
  max-width: none !important;
  margin: 0 !important;
  padding-left: var(--page-edge) !important;
  padding-right: var(--page-edge) !important;
  text-align: left !important;
}

.news-list-page .breadcrumb,
.news-detail-copy .breadcrumb {
  justify-content: flex-start !important;
}

.news-hero-title,
.news-list-subtitle {
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: left !important;
}

.news-list-main {
  padding-top: 0;
}

.news-filter-bar {
  margin-left: 0 !important;
  margin-right: auto !important;
}

.news-list-grid {
  max-width: 1320px;
  margin-left: 0 !important;
  margin-right: auto !important;
}

body:not(.news-list-page) .news-detail-hero-layout {
  max-width: 1360px;
  margin-left: 0 !important;
  margin-right: auto !important;
}

@media (max-width: 780px) {
  .news-page {
    --page-edge: 22px;
  }

  .news-page-hero {
    min-height: auto;
    padding: 112px 0 62px;
  }

  .news-hero-title {
    font-size: clamp(38px, 12vw, 58px);
  }
}

/* ─── 2026 coherence pass: news pages share the same homepage rail ───────── */
.news-page {
  --page-edge: max(72px, calc((100vw - 1560px) / 2 + 72px));
}

.news-page-hero {
  min-height: 420px !important;
  padding: 122px 0 72px !important;
  background:
    radial-gradient(circle at 74% 42%, rgba(43, 170, 212, .12), transparent 28%),
    linear-gradient(135deg, #0A2559 0%, #1558D6 52%, #071B45 100%) !important;
}

.news-hero-content,
.news-main > .container {
  max-width: none !important;
  padding-left: var(--page-edge) !important;
  padding-right: var(--page-edge) !important;
  text-align: left !important;
}

.news-hero-title,
body:not(.news-list-page) .news-hero-title {
  max-width: 860px;
  font-size: clamp(52px, 5vw, 90px) !important;
  line-height: 1.12 !important;
  letter-spacing: -.06em;
  word-break: keep-all;
}

.news-list-subtitle {
  max-width: 720px;
  font-size: clamp(17px, 1.05vw, 21px) !important;
  line-height: 1.9;
}

.news-list-main {
  padding: 0 0 112px !important;
  background:
    linear-gradient(180deg, #F4F8FF 0%, #FFFFFF 68%);
}

.news-filter-bar {
  margin: -30px 0 48px !important;
  box-shadow: 0 18px 48px rgba(35, 68, 118, .10);
}

.news-list-grid {
  max-width: 1380px !important;
  gap: 28px;
}

.news-card,
.news-list-card {
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(35, 68, 118, .09);
}

.news-card-img {
  min-height: 230px;
}

body:not(.news-list-page) .news-detail-hero-layout {
  max-width: 1380px !important;
  grid-template-columns: minmax(0, .88fr) minmax(360px, .48fr);
  align-items: center;
}

.news-detail-visual {
  min-height: 280px;
  max-height: 360px;
}

body:not(.news-list-page) .news-main {
  background:
    linear-gradient(180deg, #F4F8FF 0%, #FFFFFF 64%);
}

@media (max-width: 980px) {
  .news-list-grid,
  body:not(.news-list-page) .news-detail-hero-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .news-page {
    --page-edge: 22px;
  }

  .news-page-hero {
    min-height: auto !important;
    padding: 112px 0 68px !important;
  }

  .news-hero-title,
  body:not(.news-list-page) .news-hero-title {
    font-size: clamp(38px, 12vw, 58px) !important;
  }

  .news-filter-bar {
    width: 100%;
    overflow-x: auto;
  }
}

/* ─── 2026 final alignment: news pages use the same content rail as home ─── */
.news-page {
  --page-rail: min(1560px, calc(100vw - 144px));
}

.news-page .nav-container {
  max-width: var(--page-rail) !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.news-hero-content,
.news-main > .container {
  width: var(--page-rail) !important;
  max-width: var(--page-rail) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.news-page-hero {
  min-height: clamp(420px, 40vw, 560px) !important;
  display: flex;
  align-items: center;
}

.news-list-page .news-hero-content {
  align-items: flex-start !important;
}

.news-filter-bar,
.news-list-grid,
body:not(.news-list-page) .news-detail-hero-layout,
.news-detail-body {
  margin-left: 0 !important;
  margin-right: auto !important;
}

body:not(.news-list-page) .news-detail-hero-layout {
  width: 100% !important;
}

@media (max-width: 1180px) {
  .news-page {
    --page-rail: calc(100vw - 56px);
  }
}

@media (max-width: 780px) {
  .news-page {
    --page-rail: calc(100vw - 40px);
  }
}

/* ─── 2026 Yimou redesign: align news list with the site-wide template ───── */
.news-list-page {
  --news-cream: #F4F8FF;
  --news-cream-soft: #F8FBFF;
  --news-ink: #0F2351;
  --news-ink-soft: #425B87;
  --news-teal-deep: #0A2559;
  --news-teal: #1040A0;
  --news-gold: #2BAAD4;
  --news-gold-soft: #78D6E8;
  --news-line: rgba(15, 35, 81, 0.12);
  --news-line-light: rgba(244, 248, 255, 0.16);
  --page-rail: var(--yimou-page-rail) !important;
  background: var(--news-cream) !important;
}

.news-list-page .news-main {
  position: relative !important;
  padding: 0 0 128px !important;
  background:
    radial-gradient(ellipse at 16% 0%, rgba(27, 112, 190, 0.16), transparent 34%),
    linear-gradient(180deg, var(--news-cream) 0%, #EAF4FF 100%) !important;
}

.news-list-page .news-main::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background-image:
    linear-gradient(rgba(15, 35, 81, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 35, 81, 0.035) 1px, transparent 1px) !important;
  background-size: 80px 80px !important;
  pointer-events: none !important;
}

.news-list-page .news-main > .container {
  position: relative !important;
  z-index: 1 !important;
  width: var(--yimou-page-rail) !important;
  max-width: var(--yimou-page-rail) !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.news-list-page .news-filter-bar {
  width: auto !important;
  max-width: max-content !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: -30px 0 72px !important;
  padding: 10px !important;
  border: 1px solid rgba(43, 170, 212, 0.32) !important;
  border-radius: 999px !important;
  background: rgba(244, 248, 255, 0.92) !important;
  box-shadow: 0 24px 70px rgba(10, 37, 89, 0.16) !important;
  backdrop-filter: blur(18px) !important;
}

.news-list-page .news-filter-btn {
  min-width: 0 !important;
  padding: 12px 22px !important;
  border: 1px solid transparent !important;
  border-radius: 999px !important;
  background: transparent !important;
  color: rgba(15, 35, 81, 0.66) !important;
  font-family: "Noto Sans SC", -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  box-shadow: none !important;
}

.news-list-page .news-filter-btn:hover {
  color: var(--news-teal-deep) !important;
  border-color: rgba(43, 170, 212, 0.34) !important;
  background: rgba(43, 170, 212, 0.08) !important;
}

.news-list-page .news-filter-btn.active {
  color: var(--news-teal-deep) !important;
  border-color: rgba(43, 170, 212, 0.72) !important;
  background: linear-gradient(135deg, #78D6E8, #2BAAD4) !important;
  box-shadow: 0 12px 28px rgba(43, 170, 212, 0.24) !important;
}

.news-list-page .news-list-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 32px !important;
  width: 100% !important;
  max-width: none !important;
}

.news-list-page .news-card,
.news-list-page .news-list-card {
  position: relative !important;
  min-height: 100% !important;
  overflow: hidden !important;
  border: 1px solid rgba(43, 170, 212, 0.24) !important;
  border-radius: 0 !important;
  background: rgba(244, 248, 255, 0.72) !important;
  box-shadow: none !important;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease !important;
}

.news-list-page .news-card::after,
.news-list-page .news-list-card::after {
  content: "" !important;
  position: absolute !important;
  left: 24px !important;
  right: 24px !important;
  bottom: 0 !important;
  height: 1px !important;
  background: linear-gradient(90deg, transparent, rgba(43, 170, 212, 0.72), transparent) !important;
  transform: scaleX(0) !important;
  transition: transform 0.35s ease !important;
}

.news-list-page .news-card:hover,
.news-list-page .news-list-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(43, 170, 212, 0.52) !important;
  background: rgba(251, 246, 234, 0.92) !important;
}

.news-list-page .news-card:hover::after,
.news-list-page .news-list-card:hover::after {
  transform: scaleX(1) !important;
}

.news-list-page .news-card-img {
  height: 260px !important;
  min-height: 260px !important;
  overflow: hidden !important;
  background: var(--news-teal-deep) !important;
  border-radius: 0 !important;
}

.news-list-page .news-card-img::before {
  z-index: 2 !important;
  background:
    linear-gradient(rgba(244, 248, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 248, 255, 0.07) 1px, transparent 1px) !important;
  background-size: 64px 64px !important;
  opacity: 0.45 !important;
}

.news-list-page .news-card-img::after {
  content: "" !important;
  position: absolute !important;
  right: -120px !important;
  top: -120px !important;
  width: 360px !important;
  height: 360px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(120, 214, 232, 0.28) !important;
  box-shadow:
    0 0 0 56px rgba(43, 170, 212, 0.06),
    0 0 0 112px rgba(120, 214, 232, 0.035) !important;
  opacity: 0.9 !important;
}

.news-list-page .news-card-img img {
  filter: saturate(0.82) contrast(0.95) brightness(0.82) !important;
  transition: transform 0.8s ease, filter 0.8s ease !important;
}

.news-list-page .news-card:hover .news-card-img img {
  transform: scale(1.04) !important;
  filter: saturate(0.95) contrast(1) brightness(0.9) !important;
}

.news-list-page .news-visual-placeholder,
.news-list-page .news-card-img-placeholder {
  min-height: 100% !important;
  background:
    radial-gradient(circle at 18% 24%, rgba(120, 214, 232, 0.18), transparent 28%),
    radial-gradient(circle at 82% 72%, rgba(27, 112, 190, 0.46), transparent 40%),
    linear-gradient(135deg, #0A2559 0%, #1040A0 54%, #071922 100%) !important;
  color: var(--news-cream) !important;
}

.news-list-page .news-visual-placeholder span,
.news-list-page .news-card-img-placeholder span {
  position: relative !important;
  z-index: 3 !important;
  color: var(--news-cream) !important;
  font-family: "Noto Serif SC", "Songti SC", serif !important;
  font-size: clamp(28px, 2.2vw, 40px) !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
}

.news-list-page .news-visual-placeholder small,
.news-list-page .news-card-img-placeholder small {
  position: relative !important;
  z-index: 3 !important;
  margin-top: 18px !important;
  padding: 8px 18px !important;
  border: 1px solid rgba(120, 214, 232, 0.38) !important;
  border-radius: 999px !important;
  color: rgba(120, 214, 232, 0.86) !important;
  font-family: "IBM Plex Mono", monospace !important;
  font-size: 11px !important;
  letter-spacing: 0.22em !important;
}

.news-list-page .news-card-body {
  min-height: 330px !important;
  padding: 32px 34px 34px !important;
  background: transparent !important;
}

.news-list-page .news-meta {
  gap: 14px !important;
  margin-bottom: 22px !important;
}

.news-list-page .news-category {
  padding: 6px 12px !important;
  border: 1px solid rgba(43, 170, 212, 0.22) !important;
  border-radius: 999px !important;
  background: rgba(43, 170, 212, 0.11) !important;
  color: #0B8FA8 !important;
  font-size: 12px !important;
  letter-spacing: 0.08em !important;
}

.news-list-page .news-date {
  color: rgba(66, 91, 135, 0.62) !important;
  font-family: "IBM Plex Mono", monospace !important;
  font-size: 13px !important;
  letter-spacing: 0.04em !important;
}

.news-list-page .news-title {
  min-height: 0 !important;
  margin-bottom: 18px !important;
  color: var(--news-ink) !important;
  font-family: "Noto Serif SC", "Songti SC", serif !important;
  font-size: clamp(21px, 1.45vw, 28px) !important;
  font-weight: 600 !important;
  line-height: 1.48 !important;
  letter-spacing: 0.02em !important;
}

.news-list-page .news-summary {
  min-height: 0 !important;
  margin-bottom: 34px !important;
  color: rgba(66, 91, 135, 0.78) !important;
  font-family: "Noto Sans SC", -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 16px !important;
  line-height: 1.9 !important;
}

.news-list-page .news-link {
  margin-top: auto !important;
  padding-bottom: 10px !important;
  border-bottom: 1px solid rgba(43, 170, 212, 0.64) !important;
  color: var(--news-teal-deep) !important;
  font-family: "Noto Sans SC", -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
}

.news-list-page .news-link:hover {
  color: #0B8FA8 !important;
}

@media (max-width: 1180px) {
  .news-list-page .news-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 780px) {
  .news-list-page .news-main {
    padding-bottom: 88px !important;
  }

  .news-list-page .news-filter-bar {
    display: flex !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    margin-bottom: 48px !important;
  }

  .news-list-page .news-list-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .news-list-page .news-card-img {
    height: 220px !important;
    min-height: 220px !important;
  }

  .news-list-page .news-card-body {
    min-height: auto !important;
    padding: 26px 24px 28px !important;
  }
}

/* ─── 2026 final site rail parity for news list and detail pages ─────────── */
.news-page,
.news-list-page {
  --page-rail: var(--site-rail) !important;
  --yimou-page-rail: var(--site-rail) !important;
  --yimou-page-gutter: var(--site-gutter) !important;
}

.news-page .nav-container,
.news-page .footer > .container,
.news-hero-content,
.news-main > .container,
.news-list-page .news-hero-content,
.news-list-page .news-main > .container {
  width: var(--site-rail) !important;
  max-width: var(--site-rail) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.news-page .footer {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.news-page .footer::before {
  left: var(--site-gutter) !important;
  right: var(--site-gutter) !important;
}

.news-page .footer-grid {
  grid-template-columns: minmax(360px, 1.65fr) repeat(3, minmax(180px, .8fr)) !important;
  column-gap: clamp(48px, 5vw, 92px) !important;
}

@media (max-width: 1100px) {
  .news-page .footer-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 780px) {
  .news-page .footer-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Keep news pages aligned with the current light navbar treatment. */
.news-page .navbar {
  background: rgba(244, 248, 255, .92) !important;
  border-bottom-color: rgba(15, 35, 81, .10) !important;
}

.news-page .navbar .logo-img {
  filter: none !important;
}

.news-page .navbar .nav-link,
.news-page .navbar .nav-link:visited,
.news-page .navbar .nav-search-trigger {
  color: var(--ym-ink, #0F2351) !important;
}

.news-page .navbar .nav-link:hover,
.news-page .navbar .nav-link.active {
  color: var(--ym-teal-deep, #0A2559) !important;
  background: rgba(16, 64, 160, .08) !important;
  border-color: rgba(16, 64, 160, .14) !important;
}

.news-page .lang-switcher {
  background: rgba(16, 64, 160, .08) !important;
  border-color: rgba(16, 64, 160, .16) !important;
}

.news-page .lang-switch-btn {
  color: rgba(15, 35, 81, .72) !important;
}

.news-page .lang-switch-btn.active,
.news-page .lang-switch-btn.is-active {
  background: var(--ym-gold, #2BAAD4) !important;
  color: var(--ym-teal-deep, #0A2559) !important;
}

/* 2026 news detail redesign: quieter tertiary page entry and readable article scale. */
body.news-page:not(.news-list-page) .news-page-hero {
  min-height: 420px !important;
  margin-top: 92px !important;
  padding: 74px 0 64px !important;
  background:
    linear-gradient(135deg, #0A2559 0%, #1040A0 55%, #F4F8FF 100%) !important;
}

body.news-page:not(.news-list-page) .news-page-hero::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background-image:
    linear-gradient(rgba(244, 248, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 248, 255, 0.055) 1px, transparent 1px) !important;
  background-size: 72px 72px !important;
  pointer-events: none !important;
}

body.news-page:not(.news-list-page) .news-detail-hero-layout {
  position: relative !important;
  z-index: 1 !important;
  width: 100% !important;
  max-width: none !important;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.48fr) !important;
  gap: 72px !important;
  align-items: center !important;
}

body.news-page:not(.news-list-page) .news-detail-copy {
  padding-left: 0 !important;
}

body.news-page:not(.news-list-page) .news-detail-copy::before {
  display: none !important;
}

body.news-page:not(.news-list-page) .news-detail-copy .breadcrumb,
body.news-page:not(.news-list-page) .news-detail-copy .breadcrumb a {
  color: rgba(244, 248, 255, 0.82) !important;
  font-weight: 700 !important;
}

body.news-page:not(.news-list-page) .breadcrumb span:last-child {
  max-width: 460px !important;
  color: rgba(244, 248, 255, 0.72) !important;
}

body.news-page:not(.news-list-page) .news-hero-title {
  max-width: 900px !important;
  color: #FFFFFF !important;
  font-family: "Noto Serif SC", "Songti SC", serif !important;
  font-size: 56px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
  word-break: keep-all !important;
}

body.news-page:not(.news-list-page) .news-hero-meta {
  margin-top: 24px !important;
}

body.news-page:not(.news-list-page) .hero-category-tag {
  background: rgba(43, 170, 212, 0.18) !important;
  border: 1px solid rgba(120, 214, 232, 0.32) !important;
  color: #78D6E8 !important;
}

body.news-page:not(.news-list-page) .hero-date-tag {
  color: rgba(244, 248, 255, 0.66) !important;
  font-weight: 600 !important;
}

body.news-page:not(.news-list-page) .news-detail-visual {
  height: 300px !important;
  min-height: 300px !important;
  max-height: 300px !important;
  border-color: rgba(244, 248, 255, 0.24) !important;
  border-radius: 22px !important;
  background:
    linear-gradient(135deg, rgba(244, 248, 255, 0.22), rgba(43, 170, 212, 0.08)),
    linear-gradient(135deg, #0A2559 0%, #1040A0 100%) !important;
  box-shadow: 0 24px 70px rgba(2, 9, 45, 0.22) !important;
}

body.news-page:not(.news-list-page) .news-main {
  padding-top: 64px !important;
  background: linear-gradient(180deg, #F4F8FF 0%, #FFFFFF 54%) !important;
}

body.news-page:not(.news-list-page) .news-article,
body.news-page:not(.news-list-page) .article-body,
body.news-page:not(.news-list-page) .article-footer,
body.news-page:not(.news-list-page) .related-news {
  max-width: 900px !important;
}

body.news-page:not(.news-list-page) .article-body {
  color: #28395E !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.95 !important;
}

body.news-page:not(.news-list-page) .article-body p,
body.news-page:not(.news-list-page) .article-body li {
  color: #28395E !important;
  font-weight: 400 !important;
}

body.news-page:not(.news-list-page) .article-body strong,
body.news-page:not(.news-list-page) .article-body b {
  color: #0F2351 !important;
  font-weight: 700 !important;
}

body.news-page:not(.news-list-page) .article-body h2 {
  font-size: 23px !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
}

body.news-page:not(.news-list-page) .article-body h3 {
  font-size: 20px !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
}

@media (max-width: 1400px) {
  body.news-page:not(.news-list-page) .news-hero-title {
    font-size: 48px !important;
  }

  body.news-page:not(.news-list-page) .news-detail-hero-layout {
    gap: 52px !important;
  }
}

@media (max-width: 980px) {
  body.news-page:not(.news-list-page) .news-detail-hero-layout {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  body.news-page:not(.news-list-page) .news-detail-visual {
    height: 240px !important;
    min-height: 240px !important;
    max-height: 240px !important;
  }
}

@media (max-width: 700px) {
  body.news-page:not(.news-list-page) .news-page-hero {
    margin-top: 72px !important;
    padding: 56px 0 48px !important;
  }

  body.news-page:not(.news-list-page) .news-hero-title {
    font-size: 34px !important;
    line-height: 1.26 !important;
  }

  body.news-page:not(.news-list-page) .article-body {
    font-size: 14px !important;
  }
}

/* 2026 final news article reading layout: calmer hero, centered editorial body. */
body.news-page:not(.news-list-page) {
  background: #f4f8ff !important;
}

body.news-page:not(.news-list-page) .news-page-hero {
  min-height: 390px !important;
  margin-top: 92px !important;
  padding: 72px 0 70px !important;
  background:
    radial-gradient(circle at 78% 18%, rgba(120, 214, 232, 0.16), transparent 26%),
    linear-gradient(135deg, #0A2559 0%, #1040A0 62%, #7C97C5 100%) !important;
}

body.news-page:not(.news-list-page) .news-detail-hero-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px) !important;
  gap: clamp(36px, 5vw, 72px) !important;
  align-items: center !important;
  width: min(100%, 1440px) !important;
  margin: 0 auto !important;
}

body.news-page:not(.news-list-page) .news-hero-title {
  max-width: 860px !important;
  font-size: clamp(38px, 4.1vw, 54px) !important;
  line-height: 1.22 !important;
}

body.news-page:not(.news-list-page) .news-detail-visual {
  height: clamp(220px, 19vw, 280px) !important;
  min-height: 0 !important;
  border-radius: 20px !important;
}

body.news-page:not(.news-list-page) .news-main {
  padding: 72px 0 108px !important;
  background:
    linear-gradient(180deg, #f4f8ff 0%, #fff 78%) !important;
}

body.news-page:not(.news-list-page) .news-main > .container {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

body.news-page:not(.news-list-page) .news-article {
  --news-article-pad: clamp(30px, 5vw, 72px);
  width: min(100%, 940px) !important;
  max-width: 940px !important;
  margin: 0 auto !important;
  padding: clamp(34px, 4vw, 64px) var(--news-article-pad) 0 !important;
  border: 1px solid rgba(185, 204, 235, 0.72) !important;
  border-radius: 24px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 253, 255, 0.96)) !important;
  box-shadow: 0 28px 86px rgba(15, 35, 81, 0.10) !important;
  overflow: hidden !important;
}

body.news-page:not(.news-list-page) .article-lead {
  display: block !important;
  max-width: 760px !important;
  margin: 0 auto 34px !important;
  padding: 0 0 24px !important;
  border-bottom: 1px solid rgba(199, 215, 237, 0.8) !important;
  color: #46618D !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1.9 !important;
}

body.news-page:not(.news-list-page) .article-lead:empty {
  display: none !important;
}

body.news-page:not(.news-list-page) .article-body {
  max-width: 760px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  color: #20355E !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 2.08 !important;
}

body.news-page:not(.news-list-page) .article-body p {
  margin: 0 0 28px !important;
}

body.news-page:not(.news-list-page) .article-body p:first-child {
  text-indent: 0 !important;
}

body.news-page:not(.news-list-page) .article-body strong,
body.news-page:not(.news-list-page) .article-body b {
  color: #0F2351 !important;
  font-weight: 800 !important;
}

body.news-page:not(.news-list-page) .article-footer {
  width: auto !important;
  max-width: none !important;
  margin: 48px calc(0px - var(--news-article-pad)) 0 !important;
  padding: 22px var(--news-article-pad) 28px !important;
  border-top: 1px solid rgba(199, 215, 237, 0.82) !important;
  background: rgba(244, 248, 255, 0.78) !important;
}

body.news-page:not(.news-list-page) .back-btn {
  padding: 10px 16px !important;
  border-color: rgba(43, 170, 212, 0.28) !important;
  background: #fff !important;
  color: #1040A0 !important;
  font-weight: 800 !important;
}

body.news-page:not(.news-list-page) .related-news {
  width: min(100%, 940px) !important;
  max-width: 940px !important;
  margin: 64px auto 0 !important;
}

@media (max-width: 980px) {
  body.news-page:not(.news-list-page) .news-detail-hero-layout {
    grid-template-columns: 1fr !important;
  }

  body.news-page:not(.news-list-page) .news-detail-visual {
    max-width: 520px !important;
  }
}

@media (max-width: 700px) {
  body.news-page:not(.news-list-page) .news-page-hero {
    margin-top: 72px !important;
    padding: 46px 0 48px !important;
  }

  body.news-page:not(.news-list-page) .news-article {
    border-radius: 18px !important;
  }

  body.news-page:not(.news-list-page) .article-body {
    font-size: 15px !important;
    line-height: 1.96 !important;
  }
}

/* Desktop readability pass: keep small labels and article text at an 18px floor. */
@media (min-width: 901px) {
  .news-page .news-detail-visual small,
  .news-page .hero-category-tag,
  .news-page .hero-date-tag {
    font-size: 18px !important;
  }

  .news-page .breadcrumb,
  .news-page .breadcrumb a,
  .news-page .breadcrumb span,
  .news-page .news-page-kicker,
  .news-page .news-page-subtitle,
  .news-page .news-card-meta,
  .news-page .news-card-category,
  .news-page .news-card-excerpt,
  .news-page .news-link,
  .news-page .related-card,
  .news-page .related-card p,
  body.news-page:not(.news-list-page) .article-lead,
  body.news-page:not(.news-list-page) .article-body,
  body.news-page:not(.news-list-page) .article-body p,
  body.news-page:not(.news-list-page) .back-btn {
    font-size: 18px !important;
  }
}

/* Balanced correction for news labels and article copy. */
@media (min-width: 901px) {
  .news-page .breadcrumb,
  .news-page .breadcrumb a,
  .news-page .breadcrumb span {
    font-size: 14px !important;
  }

  .news-page .news-detail-visual small {
    font-size: 11px !important;
  }

  .news-page .hero-category-tag,
  .news-page .hero-date-tag,
  .news-page .news-card-meta,
  .news-page .news-card-category,
  .news-page .news-link,
  body.news-page:not(.news-list-page) .back-btn {
    font-size: 14px !important;
  }

  .news-page .news-page-subtitle,
  .news-page .news-card-excerpt,
  .news-page .related-card p,
  body.news-page:not(.news-list-page) .article-lead,
  body.news-page:not(.news-list-page) .article-body,
  body.news-page:not(.news-list-page) .article-body p {
    font-size: 16px !important;
  }
}

/* CMS-controlled news cover crop. */
.news-card-img img,
.news-detail-visual img,
.related-card-img img {
  object-position: var(--news-img-x, 50%) var(--news-img-y, 50%) !important;
  transform: scale(var(--news-img-scale, 1)) !important;
  transform-origin: var(--news-img-x, 50%) var(--news-img-y, 50%) !important;
}

.news-list-page .news-card:hover .news-card-img img {
  transform: scale(var(--news-img-hover-scale, 1.04)) !important;
}

.related-card:hover .related-card-img img {
  transform: scale(var(--news-img-hover-scale, 1.035)) !important;
}

/* Final compact footer spacing for news pages. */
.news-page .footer,
.news-list-page .footer {
  padding-top: clamp(42px, 4vw, 48px) !important;
  padding-bottom: 22px !important;
}

.news-page .footer-grid,
.news-list-page .footer-grid {
  margin-bottom: clamp(24px, 2.6vw, 30px) !important;
}

.news-page .footer-bottom,
.news-list-page .footer-bottom {
  padding-top: 16px !important;
}

.news-page .footer-logo-img,
.news-list-page .footer-logo-img {
  margin-bottom: 14px !important;
}

.news-page .footer-links h5,
.news-list-page .footer-links h5 {
  margin-bottom: 12px !important;
  padding-bottom: 8px !important;
}

@media (max-width: 700px) {
  .news-page .footer,
  .news-list-page .footer {
    padding-top: 42px !important;
    padding-bottom: 24px !important;
  }

  .news-page .footer-grid,
  .news-list-page .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 26px !important;
    margin-bottom: 28px !important;
  }

  .news-page .footer-brand,
  .news-list-page .footer-brand {
    grid-column: 1 / -1 !important;
  }

  .news-page .footer-bottom,
  .news-list-page .footer-bottom {
    padding-top: 14px !important;
  }
}

/* Keep news-page language switcher aligned with homepage cyan accent. */
.news-page .navbar .lang-switcher,
.news-list-page .navbar .lang-switcher {
  background: linear-gradient(135deg, rgba(216, 243, 250, .92), rgba(234, 244, 255, .78)) !important;
  border: 1px solid rgba(43, 170, 212, .46) !important;
  box-shadow: 0 10px 28px rgba(10, 37, 89, .10), inset 0 0 0 1px rgba(255, 255, 255, .56) !important;
}

.news-page .navbar .lang-switch-btn,
.news-list-page .navbar .lang-switch-btn {
  color: rgba(15, 35, 81, .82) !important;
}

.news-page .navbar .lang-switch-btn.active,
.news-page .navbar .lang-switch-btn.is-active,
.news-list-page .navbar .lang-switch-btn.active,
.news-list-page .navbar .lang-switch-btn.is-active {
  background: linear-gradient(135deg, #2BAAD4, #1B9EC8) !important;
  color: #061942 !important;
  box-shadow: 0 8px 20px rgba(43, 170, 212, .34) !important;
}

@media (max-width: 768px) {
  .news-page .navbar .lang-switcher,
  .news-list-page .navbar .lang-switcher {
    background: linear-gradient(135deg, rgba(43, 170, 212, .22), rgba(244, 248, 255, .12)) !important;
    border-color: rgba(120, 214, 232, .52) !important;
  }

  .news-page .navbar .lang-switch-btn,
  .news-list-page .navbar .lang-switch-btn {
    color: rgba(244, 248, 255, .88) !important;
  }
}
