:root {
  --news-green: #04a467;
  --news-deep: #062b24;
  --news-ink: #14201d;
  --news-muted: #66736f;
  --news-line: #e6ece9;
  --news-soft: #f2f8f5;
  --news-radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.news-page {
  position: static;
  width: auto;
  min-width: 0;
  min-height: 100vh;
  margin: 0;
  padding: 76px 0 0;
  overflow-x: hidden;
  color: var(--news-ink);
  background: #fff;
  font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

.news-shell {
  width: min(1520px, calc(100% - 64px));
  margin: 0 auto;
}

.news-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: 76px;
  background: rgba(4, 20, 17, 0.96);
  box-shadow: 0 8px 28px rgba(0, 25, 18, 0.12);
  backdrop-filter: blur(16px);
}

.news-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.news-logo {
  display: inline-flex;
  align-items: center;
  min-width: 150px;
}

.news-logo img {
  display: block;
  width: auto;
  height: 38px;
}

.news-nav {
  display: flex;
  align-items: center;
  gap: 42px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-nav a {
  position: relative;
  display: block;
  padding: 28px 0 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 24px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.news-nav a:hover,
.news-nav a.is-active {
  color: #fff;
}

.news-nav a.is-active::after {
  position: absolute;
  right: 0;
  bottom: 16px;
  left: 0;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, #49d36c, #20b7a7);
  content: "";
}

.news-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(115deg, #3cb54e, #19b0a7);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-header__cta:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(25, 176, 167, 0.28);
}

.news-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  background: transparent;
  font-size: 20px;
  line-height: 1;
}

.news-hero {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 76% 10%, rgba(83, 219, 147, 0.26), transparent 32%),
    linear-gradient(125deg, #063129 0%, #075f48 52%, #04a467 100%);
}

.news-hero::before,
.news-hero::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  content: "";
}

.news-hero::before {
  top: -240px;
  right: -60px;
  width: 620px;
  height: 620px;
}

.news-hero::after {
  right: 210px;
  bottom: -250px;
  width: 430px;
  height: 430px;
}

.news-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 390px;
  padding-top: 28px;
  padding-bottom: 28px;
}

.news-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.news-kicker::before {
  width: 30px;
  height: 2px;
  background: #70e799;
  content: "";
}

.news-hero h1 {
  max-width: 760px;
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.news-hero p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.9;
}

.news-hero__mark {
  position: relative;
  width: 250px;
  height: 250px;
  flex: 0 0 auto;
  margin-right: 6%;
}

.news-hero__mark span {
  position: absolute;
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.11);
  transform: rotate(-18deg);
}

.news-hero__mark span:nth-child(1) {
  top: 0;
  right: 0;
  width: 128px;
  height: 128px;
}

.news-hero__mark span:nth-child(2) {
  right: 92px;
  bottom: 5px;
  width: 158px;
  height: 72px;
  background: linear-gradient(100deg, rgba(102, 232, 148, 0.8), rgba(34, 190, 170, 0.7));
}

.news-hero__mark span:nth-child(3) {
  right: -12px;
  bottom: 25px;
  width: 72px;
  height: 72px;
  border: 16px solid rgba(255, 255, 255, 0.28);
  background: transparent;
}

.news-main {
  padding: 86px 0 110px;
}

.news-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 36px;
}

.news-section-head h2 {
  margin: 0 0 10px;
  color: var(--news-ink);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.35;
}

.news-section-head p {
  margin: 0;
  color: var(--news-muted);
  font-size: 15px;
  line-height: 1.8;
}

.news-section-head__tag {
  flex: 0 0 auto;
  color: var(--news-green);
  font-size: 14px;
  font-weight: 600;
}

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

.news-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--news-line);
  border-radius: var(--news-radius);
  background: #fff;
  box-shadow: 0 12px 40px rgba(12, 51, 40, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.news-card:hover {
  border-color: rgba(4, 164, 103, 0.24);
  transform: translateY(-6px);
  box-shadow: 0 22px 52px rgba(12, 51, 40, 0.12);
}

.news-card__cover {
  display: block;
  height: 230px;
  overflow: hidden;
  background: var(--news-soft);
}

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

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

.news-card__body {
  padding: 27px 28px 30px;
}

.news-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  color: #87918e;
  font-size: 13px;
}

.news-card__category {
  color: var(--news-green);
  font-weight: 600;
}

.news-card h2,
.news-card h3 {
  margin: 0 0 13px;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.5;
}

.news-card h2 a,
.news-card h3 a {
  color: var(--news-ink);
  text-decoration: none;
}

.news-card h2 a:hover,
.news-card h3 a:hover {
  color: var(--news-green);
}

.news-card__desc {
  display: -webkit-box;
  min-height: 73px;
  margin: 0 0 22px;
  overflow: hidden;
  color: var(--news-muted);
  font-size: 14px;
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.news-card__more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--news-green);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.news-card__more::after {
  font-size: 18px;
  content: "\2192";
  transition: transform 0.2s ease;
}

.news-card:hover .news-card__more::after {
  transform: translateX(4px);
}

.news-pagination {
  display: flex;
  justify-content: center;
  margin-top: 52px;
}

.news-pagination a,
.news-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  margin: 0 5px;
  padding: 0 12px;
  border: 1px solid var(--news-line);
  border-radius: 10px;
  color: var(--news-muted);
  background: #fff;
  text-decoration: none;
}

.news-pagination a:hover,
.news-pagination .page-num-current,
.news-pagination .active {
  border-color: var(--news-green);
  color: #fff;
  background: var(--news-green);
}

.news-breadcrumb {
  padding: 23px 0;
  border-bottom: 1px solid var(--news-line);
  color: #89928f;
  background: #fff;
  font-size: 13px;
}

.news-breadcrumb a {
  color: #68736f;
  text-decoration: none;
}

.news-breadcrumb a:hover {
  color: var(--news-green);
}

.news-article-wrap {
  display: grid;
  grid-template-columns: minmax(0, 920px) 320px;
  justify-content: space-between;
  gap: 70px;
}

.news-article {
  min-width: 0;
}

.news-article__head {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--news-line);
}

.news-article__head h1 {
  margin: 0 0 22px;
  color: var(--news-ink);
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.news-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  color: #85908c;
  font-size: 13px;
}

.news-article__lead {
  margin: 0 0 36px;
  padding: 23px 26px;
  border-left: 4px solid var(--news-green);
  border-radius: 0 12px 12px 0;
  color: #43504c;
  background: var(--news-soft);
  font-size: 16px;
  line-height: 1.9;
}

.news-article__content {
  color: #34413d;
  font-size: 16px;
  line-height: 2;
}

.news-article__content h2 {
  margin: 44px 0 17px;
  color: var(--news-ink);
  font-size: 27px;
  font-weight: 600;
  line-height: 1.45;
}

.news-article__content h3 {
  margin: 34px 0 14px;
  color: var(--news-ink);
  font-size: 21px;
  font-weight: 600;
}

.news-article__content p {
  margin: 0 0 20px;
}

.news-article__content ul,
.news-article__content ol {
  margin: 0 0 24px;
  padding-left: 1.5em;
}

.news-article__content li {
  margin-bottom: 8px;
}

.news-article__content img {
  max-width: 100%;
  height: auto;
  margin: 20px auto 28px;
  border-radius: 16px;
}

.news-article__content a {
  color: var(--news-green);
}

.news-article__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 56px;
  padding-top: 30px;
  border-top: 1px solid var(--news-line);
}

.news-article__nav a {
  display: block;
  min-height: 90px;
  padding: 18px 20px;
  border: 1px solid var(--news-line);
  border-radius: 14px;
  color: var(--news-ink);
  background: #fff;
  font-size: 14px;
  line-height: 1.65;
  text-decoration: none;
}

.news-article__nav a:last-child {
  text-align: right;
}

.news-article__nav a:hover {
  border-color: rgba(4, 164, 103, 0.38);
  color: var(--news-green);
}

.news-article__nav small {
  display: block;
  margin-bottom: 7px;
  color: #98a19e;
  font-size: 12px;
}

.news-sidebar {
  align-self: start;
}

.news-sidebar__box {
  margin-bottom: 24px;
  padding: 28px;
  border: 1px solid var(--news-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(12, 51, 40, 0.06);
}

.news-sidebar__box--green {
  color: #fff;
  border: 0;
  background: linear-gradient(145deg, #07533f, #04a467);
}

.news-sidebar__box h2 {
  margin: 0 0 17px;
  font-size: 20px;
  font-weight: 600;
}

.news-sidebar__box p {
  margin: 0 0 20px;
  color: inherit;
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.82;
}

.news-sidebar__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 44px;
  border-radius: 22px;
  color: var(--news-green);
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

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

.news-latest li + li {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--news-line);
}

.news-latest a {
  display: block;
  color: var(--news-ink);
  font-size: 14px;
  line-height: 1.65;
  text-decoration: none;
}

.news-latest a:hover {
  color: var(--news-green);
}

.news-latest time {
  display: block;
  margin-top: 6px;
  color: #98a19e;
  font-size: 12px;
}

.news-footer {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(120deg, #052c25, #075c47 60%, #078665);
}

.news-footer::after {
  position: absolute;
  top: -180px;
  right: -100px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.news-footer__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 66px 0 52px;
}

.news-footer__top h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 31px;
  font-weight: 600;
}

.news-footer__top p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.news-footer__bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
}

.news-footer__bottom a {
  color: inherit;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .news-nav {
    gap: 24px;
  }

  .news-header__cta {
    display: none;
  }

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

  .news-article-wrap {
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 40px;
  }

  .news-hero__mark {
    margin-right: 0;
  }
}

@media (max-width: 820px) {
  body.news-page {
    padding-top: 66px;
  }

  .news-shell {
    width: min(100% - 36px, 1520px);
  }

  .news-header {
    height: 66px;
  }

  .news-logo img {
    height: 32px;
  }

  .news-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .news-nav {
    position: absolute;
    top: 66px;
    right: 0;
    left: 0;
    display: none;
    padding: 12px 18px 18px;
    background: rgba(4, 20, 17, 0.98);
    box-shadow: 0 16px 30px rgba(0, 25, 18, 0.16);
  }

  .news-header.is-open .news-nav {
    display: block;
  }

  .news-nav a {
    padding: 12px 0;
  }

  .news-nav a.is-active::after {
    right: auto;
    bottom: 6px;
    width: 30px;
  }

  .news-hero,
  .news-hero__inner {
    min-height: 330px;
  }

  .news-hero__mark {
    display: none;
  }

  .news-main {
    padding: 62px 0 80px;
  }

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

  .news-article-wrap {
    grid-template-columns: 1fr;
  }

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

  .news-sidebar__box {
    margin: 0;
  }
}

@media (max-width: 560px) {
  .news-shell {
    width: min(100% - 28px, 1520px);
  }

  .news-hero,
  .news-hero__inner {
    min-height: 300px;
  }

  .news-hero h1 {
    font-size: 36px;
  }

  .news-hero p {
    font-size: 15px;
    line-height: 1.75;
  }

  .news-main {
    padding: 48px 0 65px;
  }

  .news-section-head {
    display: block;
  }

  .news-section-head h2 {
    font-size: 28px;
  }

  .news-section-head__tag {
    display: block;
    margin-top: 12px;
  }

  .news-card__cover {
    height: 210px;
  }

  .news-card__body {
    padding: 23px 22px 26px;
  }

  .news-article__head h1 {
    font-size: 31px;
  }

  .news-article__content {
    font-size: 15px;
    line-height: 1.9;
  }

  .news-article__nav,
  .news-sidebar {
    grid-template-columns: 1fr;
  }

  .news-article__nav a:last-child {
    text-align: left;
  }

  .news-footer__top,
  .news-footer__bottom {
    display: block;
  }

  .news-footer__top h2 {
    font-size: 26px;
  }

  .news-footer__top .news-header__cta {
    display: inline-flex;
    margin-top: 24px;
  }

  .news-footer__bottom span {
    display: block;
    margin-bottom: 8px;
  }
}
