.page-news {
  --news-gold: #D4A017;
  --news-deep: #0B1E36;
  --news-green: #1F8A5B;
  --news-light-green: #E8F5EE;
  --news-warm: #F4F6F8;
  --news-mint: #DCECDF;
  --news-blue: #E4EFF7;
  --news-gold-bg: #FBF3DC;
  background: var(--news-warm);
  color: var(--color-ink, #1B2A23);
  overflow-x: hidden;
}

.page-news .news-hero {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(135deg, #0B1E36 0%, #0E5C3F 58%, #1F8A5B 120%);
  overflow: hidden;
  isolation: isolate;
  padding-top: 72px;
}

.page-news .news-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  opacity: 0.35;
  z-index: -2;
}

.page-news .news-hero-fade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(11, 30, 54, 0.30) 0%, rgba(11, 30, 54, 0.55) 55%, rgba(11, 30, 54, 0.92) 100%);
}

.page-news .news-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding-top: 56px;
  padding-bottom: 52px;
}

.page-news .news-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-family: var(--font-heading, "Noto Sans SC", sans-serif);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #F0C75A;
  text-transform: uppercase;
}

.page-news .news-hero-kicker::before {
  content: "";
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, #D4A017, #F0C75A);
  border-radius: 999px;
}

.page-news .news-hero h1 {
  margin: 0;
  font-family: var(--font-heading, "Noto Sans SC", sans-serif);
  font-size: clamp(30px, 6vw, 56px);
  font-weight: 900;
  line-height: 1.15;
  color: #FFFFFF;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 24px rgba(11, 30, 54, 0.3);
}

.page-news .news-hero-lead {
  max-width: 720px;
  margin: 0;
  font-family: var(--font-body, "Noto Sans SC", sans-serif);
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

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

.page-news .news-hero-actions .btn {
  border-radius: 999px;
  padding: 12px 28px;
  font-weight: 600;
  text-decoration: none;
  transition: transform var(--transition-fast, 0.2s ease), box-shadow var(--transition-fast, 0.2s ease);
}

.page-news .news-hero-actions .btn-primary {
  background: linear-gradient(135deg, #D4A017 0%, #F0C75A 100%);
  color: #0B1E36;
  border: none;
}

.page-news .news-hero-actions .btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.page-news .news-hero-actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(11, 30, 54, 0.25);
}

.page-news .news-toolbar {
  background: #FFFFFF;
  border-bottom: 1px solid rgba(11, 30, 54, 0.06);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 30;
}

.page-news .news-toolbar-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-news .news-cats {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 2px 0;
}

.page-news .news-cats::-webkit-scrollbar {
  display: none;
}

.page-news .news-cat {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 999px;
  font-family: var(--font-body, "Noto Sans SC", sans-serif);
  font-size: 14px;
  font-weight: 500;
  color: #1B2A23;
  background: #F4F6F8;
  border: 1px solid rgba(11, 30, 54, 0.08);
  text-decoration: none;
  transition: background var(--transition-fast, 0.2s ease), color var(--transition-fast, 0.2s ease), border-color var(--transition-fast, 0.2s ease);
}

.page-news .news-cat:hover {
  background: #E8F5EE;
  border-color: rgba(31, 138, 91, 0.35);
}

.page-news .news-cat.is-active {
  background: #0E5C3F;
  color: #FFFFFF;
  border-color: #0E5C3F;
}

.page-news .news-search {
  position: relative;
  display: flex;
  align-items: center;
}

.page-news .news-search-mark {
  position: absolute;
  left: 14px;
  font-size: 18px;
  color: #0E5C3F;
  font-weight: 700;
}

.page-news .news-search input {
  width: 100%;
  padding: 10px 16px 10px 40px;
  border-radius: 999px;
  border: 1px solid rgba(11, 30, 54, 0.12);
  background: #F4F6F8;
  font-family: var(--font-body, "Noto Sans SC", sans-serif);
  font-size: 14px;
  color: #1B2A23;
  outline: none;
  transition: border-color var(--transition-fast, 0.2s ease), box-shadow var(--transition-fast, 0.2s ease);
}

.page-news .news-search input:focus {
  border-color: #1F8A5B;
  box-shadow: 0 0 0 3px rgba(31, 138, 91, 0.15);
}

.page-news .news-layout {
  display: block;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 20px;
  padding-top: 44px;
  padding-bottom: 60px;
}

.page-news .news-main {
  min-width: 0;
}

.page-news .news-articles {
  scroll-margin-top: 120px;
}

.page-news .news-articles-head {
  margin-bottom: 32px;
  padding-left: 4px;
}

.page-news .news-eyebrow {
  margin: 0 0 6px;
  font-family: var(--font-mono, "SF Mono", Consolas, monospace);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #1F8A5B;
}

.page-news .news-articles-head h2 {
  margin: 0 0 8px;
  font-family: var(--font-heading, "Noto Sans SC", sans-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.2;
  color: #0B1E36;
}

.page-news .news-articles-note {
  max-width: 640px;
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #5A6B64;
}

.page-news .news-cat-block {
  margin-bottom: 44px;
  scroll-margin-top: 112px;
}

.page-news .news-cat-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(31, 138, 91, 0.15);
}

.page-news .news-cat-head h3 {
  margin: 0;
  font-family: var(--font-heading, "Noto Sans SC", sans-serif);
  font-size: 22px;
  font-weight: 800;
  color: #0B1E36;
  position: relative;
  padding-left: 14px;
}

.page-news .news-cat-head h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, #1F8A5B, #D4A017);
}

.page-news .news-cat-meta {
  font-family: var(--font-mono, "SF Mono", Consolas, monospace);
  font-size: 13px;
  color: #7A8C84;
  white-space: nowrap;
}

.page-news .news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-news .news-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border-radius: 24px;
  border: 1px solid rgba(11, 30, 54, 0.06);
  box-shadow: 0 4px 20px rgba(11, 30, 54, 0.05);
  overflow: hidden;
  transition: transform var(--transition-base, 0.3s cubic-bezier(0.22, 1, 0.36, 1)), box-shadow var(--transition-base, 0.3s cubic-bezier(0.22, 1, 0.36, 1));
}

.page-news .news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(11, 30, 54, 0.12);
}

.page-news .news-card--photo {
  min-height: 0;
}

.page-news .news-card-cover {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.page-news .news-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.page-news .news-card:hover .news-card-cover img {
  transform: scale(1.04);
}

.page-news .news-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(11, 30, 54, 0.82);
  color: #F0C75A;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.page-news .news-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 22px 20px;
}

.page-news .news-card-tag-inline {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  background: #E8F5EE;
  color: #0E5C3F;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
}

.page-news .news-card-title {
  margin: 0 0 10px;
  font-family: var(--font-heading, "Noto Sans SC", sans-serif);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
  color: #0B1E36;
}

.page-news .news-card-desc {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.7;
  color: #4E5D55;
  flex: 1;
}

.page-news .news-card-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed rgba(11, 30, 54, 0.12);
}

.page-news .news-card-time {
  font-family: var(--font-mono, "SF Mono", Consolas, monospace);
  font-size: 12px;
  color: #2E6E9E;
}

.page-news .news-card-source {
  font-size: 12px;
  color: #8A9B93;
}

.page-news .news-card--plain {
  justify-content: flex-end;
  min-height: 340px;
  overflow: hidden;
}

.page-news .news-card--green {
  background: linear-gradient(145deg, #E8F5EE 0%, #D2EBDD 100%);
  border-top: 4px solid #1F8A5B;
}

.page-news .news-card--deep {
  background: linear-gradient(145deg, #0B1E36 0%, #12314F 100%);
  border-top: 4px solid #2E6E9E;
}

.page-news .news-card--deep .news-card-title,
.page-news .news-card--deep .news-card-desc {
  color: #FFFFFF;
}

.page-news .news-card--deep .news-card-meta {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.page-news .news-card--deep .news-card-time {
  color: #8FB9D8;
}

.page-news .news-card--deep .news-card-source {
  color: rgba(255, 255, 255, 0.55);
}

.page-news .news-card--gold {
  background: linear-gradient(145deg, #FBF3DC 0%, #F6E7B8 100%);
  border-top: 4px solid #D4A017;
}

.page-news .news-card--blue {
  background: linear-gradient(145deg, #E4EFF7 0%, #CDE2EF 100%);
  border-top: 4px solid #2E6E9E;
}

.page-news .news-card--mint {
  background: linear-gradient(145deg, #DCE8DE 0%, #C5DACA 100%);
  border-top: 4px solid #0E5C3F;
}

.page-news .news-card-ornament {
  position: absolute;
  top: 14px;
  right: 20px;
  font-family: var(--font-mono, "SF Mono", Consolas, monospace);
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: rgba(11, 30, 54, 0.10);
  pointer-events: none;
  user-select: none;
}

.page-news .news-card--deep .news-card-ornament {
  color: rgba(255, 255, 255, 0.14);
}

.page-news .news-card--gold .news-card-ornament {
  color: rgba(212, 160, 23, 0.22);
}

.page-news .news-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding-top: 28px;
  border-top: 1px solid rgba(11, 30, 54, 0.08);
}

.page-news .news-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: #FFFFFF;
  border: 1px solid rgba(11, 30, 54, 0.12);
  font-family: var(--font-body, "Noto Sans SC", sans-serif);
  font-size: 14px;
  font-weight: 600;
  color: #1B2A23;
  text-decoration: none;
  transition: background var(--transition-fast, 0.2s ease), border-color var(--transition-fast, 0.2s ease), color var(--transition-fast, 0.2s ease);
}

.page-news .news-page-btn:hover {
  border-color: #1F8A5B;
  color: #0E5C3F;
  background: #E8F5EE;
}

.page-news .news-page-btn.is-current {
  background: #0E5C3F;
  color: #FFFFFF;
  border-color: #0E5C3F;
}

.page-news .news-page-ellipsis {
  font-family: var(--font-mono, "SF Mono", Consolas, monospace);
  color: #8A9B93;
}

.page-news .news-sidebar {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-news .news-sidebar-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(11, 30, 54, 0.05);
  border: 1px solid rgba(11, 30, 54, 0.06);
}

.page-news .news-sidebar-title {
  margin: 0 0 18px;
  font-family: var(--font-heading, "Noto Sans SC", sans-serif);
  font-size: 20px;
  font-weight: 800;
  color: #0B1E36;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(31, 138, 91, 0.15);
}

.page-news .news-hot-card {
  position: relative;
}

.page-news .news-hot-img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 18px;
  display: block;
}

.page-news .news-hot-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: hot-rank;
}

.page-news .news-hot-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px dashed rgba(11, 30, 54, 0.10);
}

.page-news .news-hot-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.page-news .news-hot-rank {
  flex-shrink: 0;
  font-family: var(--font-mono, "SF Mono", Consolas, monospace);
  font-size: 22px;
  font-weight: 800;
  color: #D4A017;
  line-height: 1.4;
}

.page-news .news-hot-info {
  min-width: 0;
}

.page-news .news-hot-title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: #1B2A23;
}

.page-news .news-hot-meta {
  font-family: var(--font-mono, "SF Mono", Consolas, monospace);
  font-size: 12px;
  color: #6A7F76;
}

.page-news .news-quick-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-news .news-quick-list li {
  margin-bottom: 4px;
}

.page-news .news-quick-list li::before {
  content: "→";
  margin-right: 10px;
  color: #D4A017;
  font-weight: 700;
}

.page-news .news-quick-list a {
  color: #0E5C3F;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  text-decoration: none;
  transition: color var(--transition-fast, 0.2s ease);
}

.page-news .news-quick-list a:hover {
  color: #D4A017;
}

.page-news .news-status-card {
  background: linear-gradient(145deg, #0B1E36 0%, #12314F 100%);
}

.page-news .news-status-card .news-sidebar-title {
  color: #FFFFFF;
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.page-news .news-status-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-news .news-status-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-news .news-status-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.page-news .news-status-list span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
}

.page-news .news-status-list strong {
  font-family: var(--font-heading, "Noto Sans SC", sans-serif);
  font-size: 13px;
  font-weight: 700;
  color: #F0C75A;
  text-align: right;
}

.page-news .news-subscribe {
  position: relative;
  padding: 72px 0;
  overflow: hidden;
  isolation: isolate;
  background: #0B1E36;
}

.page-news .news-subscribe-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  z-index: -2;
}

.page-news .news-subscribe-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, rgba(11, 30, 54, 0.88) 0%, rgba(11, 30, 54, 0.76) 48%, rgba(14, 92, 63, 0.78) 100%);
}

.page-news .news-subscribe-inner {
  max-width: 640px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-news .news-subscribe-kicker {
  margin: 0 0 8px;
  font-family: var(--font-mono, "SF Mono", Consolas, monospace);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #F0C75A;
}

.page-news .news-subscribe h2 {
  margin: 0 0 12px;
  font-family: var(--font-heading, "Noto Sans SC", sans-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: #FFFFFF;
}

.page-news .news-subscribe-desc {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.page-news .news-subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 520px;
  margin: 0 auto 16px;
}

.page-news .news-subscribe-form input {
  flex: 1;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  font-family: var(--font-body, "Noto Sans SC", sans-serif);
  font-size: 15px;
  outline: none;
  transition: background var(--transition-fast, 0.2s ease), border-color var(--transition-fast, 0.2s ease);
}

.page-news .news-subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.page-news .news-subscribe-form input:focus {
  border-color: #F0C75A;
  background: rgba(255, 255, 255, 0.18);
}

.page-news .news-subscribe-form .btn {
  padding: 14px 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, #D4A017 0%, #F0C75A 100%);
  color: #0B1E36;
  border: none;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: transform var(--transition-fast, 0.2s ease), box-shadow var(--transition-fast, 0.2s ease);
  white-space: nowrap;
}

.page-news .news-subscribe-form .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212, 160, 23, 0.35);
}

.page-news .news-subscribe-note {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

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

  .page-news .news-card--plain {
    min-height: 0;
  }

  .page-news .news-toolbar-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .page-news .news-search {
    width: 260px;
  }

  .page-news .news-subscribe-form {
    flex-direction: row;
    gap: 10px;
  }

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

  .page-news .news-layout {
    padding-top: 56px;
    padding-bottom: 72px;
    padding-inline: 24px;
  }
}

@media (min-width: 1024px) {
  .page-news .news-hero {
    min-height: 480px;
  }

  .page-news .news-hero-inner {
    padding-top: 64px;
    padding-bottom: 60px;
  }

  .page-news .news-toolbar-inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .page-news .news-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 40px;
    align-items: start;
  }

  .page-news .news-sidebar {
    margin-top: 0;
    position: sticky;
    top: 96px;
  }

  .page-news .news-main {
    padding-right: 8px;
  }

  .page-news .news-grid {
    gap: 28px;
  }
}

@media (min-width: 1280px) {
  .page-news .news-layout {
    gap: 56px;
    grid-template-columns: minmax(0, 1fr) 360px;
  }
}
