/* 新闻资讯 page-specific styles can live here. Shared inner-page layout is in common.css. */
/* 新闻资讯 page-specific styles can live here. Shared inner-page layout is in common.css. */

.news-page .inner-anchor-nav {
  position: relative;
  top: auto;
  z-index: 1;
  border-bottom: 1px solid rgba(11, 31, 51, 0.08);
  box-shadow: none;
}

.news-page .inner-anchor-nav__links {
  --inner-anchor-indicator-width: var(--inner-anchor-line-width);
  --inner-anchor-indicator-opacity: 1;
}

.news-page .inner-anchor-nav__links::after {
  display: block;
}

.news-page__anchor {
  display: block;
  height: 1px;
  margin-top: -1px;
  overflow: hidden;
  scroll-margin-top: 60px;
}

.news-page .inner-anchor-nav__links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: var(--inner-anchor-height);
  color: rgba(31, 41, 51, 0.86);
  font-size: var(--inner-anchor-font-size);
  font-weight: 500;
  white-space: nowrap;
  transition:
    color var(--duration-fast) var(--ease-standard),
    font-size var(--duration-normal) var(--ease-standard);
}

.news-page .inner-anchor-nav__links a:hover,
.news-page .inner-anchor-nav__links a:focus-visible,
.news-page .inner-anchor-nav__links a.is-active {
  color: var(--color-primary);
}

.news-page .inner-content {
  background: #ffffff;
}

.news-list {
  display: block;
  grid-template-rows: none;
  gap: 0;
  height: auto;
  background: #ffffff;
  padding: clamp(30px, 3.6vw, 50px) 0 clamp(50px, 4.6vw, 70px);
  transform: none;
  transition: none;
}

.news-list__inner {
  box-sizing: border-box;
  display: grid;
  gap: clamp(28px, 3.4vw, 48px);
  width: calc(100% - (var(--page-gutter) * 2));
  max-width: none;
  margin: 0 auto;
  padding-right: var(--inner-page-align-offset, 0px);
  padding-left: var(--inner-page-align-offset, 0px);
}

.news-feature-slider {
  min-width: 0;
  overflow: hidden;
}

.news-feature-viewport {
  position: relative;
  isolation: isolate;
  min-width: 0;
  overflow: hidden;
  clip-path: inset(0 round 8px);
  border-radius: 8px;
  background: #f2f7fb;
}

.news-feature-track {
  --news-feature-index: 0;
  display: flex;
  width: 100%;
  overflow: visible;
  border-radius: 0;
  transform: translate3d(calc(var(--news-feature-index) * -100%), 0, 0);
  transition: transform 780ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.news-feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
  flex: 0 0 100%;
  min-width: 0;
  min-height: clamp(280px, 21vw, 390px);
  overflow: hidden;
  border-radius: 0;
  background: #f2f7fb;
}

.news-feature-card__media {
  display: block;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: #dfeaf3;
}

.news-feature-card__media picture,
.news-feature-card__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.news-feature-card__media img {
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.news-feature-card:hover .news-feature-card__media img,
.news-feature-card:focus-within .news-feature-card__media img {
  transform: scale(1.04);
}

.news-feature-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(24px, 2.8vw, 42px) clamp(28px, 3.4vw, 52px);
  background: #f2f7fb;
  color: #273443;
}

.news-card__category {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 4px;
  background: #eaf2fb;
  color: var(--color-primary);
  font-size: clamp(12px, 0.82vw, 14px);
  font-weight: 700;
  line-height: 1.2;
}

.news-feature-card h2 {
  margin: clamp(16px, 1.7vw, 24px) 0 0;
  color: #1b2532;
  font-size: clamp(19px, 1.28vw, 25px);
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: 0;
}

.news-feature-card h2 a,
.news-card h2 a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-standard);
}

.news-feature-card h2 a:hover,
.news-feature-card h2 a:focus-visible,
.news-card h2 a:hover,
.news-card h2 a:focus-visible {
  color: var(--color-primary);
}

.news-feature-card time {
  margin-top: clamp(14px, 1.5vw, 22px);
  color: #8a8f96;
  font-size: clamp(13px, 0.82vw, 15px);
  font-weight: 400;
}

.news-feature-card p:not(.news-card__category) {
  max-width: 560px;
  margin: clamp(14px, 1.6vw, 22px) 0 0;
  color: #8a8f96;
  font-size: clamp(13px, 0.86vw, 15px);
  line-height: 1.72;
}

.news-card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: clamp(18px, 2.2vw, 32px);
  color: #2d3744;
  font-size: clamp(13px, 0.86vw, 15px);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-standard);
}

.news-card__more .iconify {
  width: 16px;
  height: 16px;
  transition: transform var(--duration-fast) var(--ease-standard);
}

.news-card__more:hover,
.news-card__more:focus-visible {
  color: var(--color-primary);
}

.news-card__more:hover .iconify,
.news-card__more:focus-visible .iconify {
  transform: translateX(3px);
}

.news-list__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  padding-bottom: 2px;
}

.news-list__dots button {
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  width: 11px;
  height: 11px;
  padding: 0;
  border: 1px solid rgba(35, 49, 68, 0.35);
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
  font-size: 0;
  line-height: 0;
  transform: rotate(45deg);
  transition:
    border-color var(--duration-fast) var(--ease-standard),
    background var(--duration-fast) var(--ease-standard),
    transform var(--duration-fast) var(--ease-standard);
}

.news-list__dots button:hover,
.news-list__dots button:focus-visible {
  border-color: var(--color-primary);
}

.news-list__dots button.is-active {
  border-color: var(--color-primary);
  background: var(--color-primary);
  transform: rotate(45deg) scale(1.04);
}

.news-grid-section {
  scroll-margin-top: calc(68px + var(--inner-anchor-height) + 24px);
}

.news-grid-section + .news-grid-section {
  margin-top: clamp(44px, 5vw, 72px);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(22px, 3.2vw, 52px);
  row-gap: clamp(32px, 3.8vw, 54px);
}

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

.news-card__media {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  background: #dfeaf3;
}

.news-card__media picture,
.news-card__media img {
  display: block;
  width: 100%;
}

.news-card__media img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.news-card:hover .news-card__media img,
.news-card:focus-within .news-card__media img {
  transform: scale(1.045);
}

.news-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
}

.news-card__meta time {
  color: #9a9da2;
  font-size: clamp(13px, 0.82vw, 15px);
  font-weight: 400;
  white-space: nowrap;
}

.news-card h2 {
  margin: 16px 0 0;
  color: #202832;
  font-size: clamp(15px, 0.94vw, 18px);
  font-weight: 700;
  line-height: 1.52;
  letter-spacing: 0;
}

.news-list__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: clamp(8px, 1.2vw, 18px);
}

.news-list__pagination a,
.news-list__pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  border: 1px solid rgba(23, 57, 102, 0.14);
  border-radius: 6px;
  background: #fff;
  color: #42536a;
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
}

.news-list__pagination a:hover,
.news-list__pagination a.is-active {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}

.news-list__pagination .iconify {
  width: 19px;
  height: 19px;
}

/* News detail template */

.news-detail-page {
  --news-detail-header-height: 76px;
  --news-detail-header-compact-height: 68px;
  background: #ffffff;
  scroll-behavior: smooth;
}

.news-detail-page .site-header,
.news-detail-page .site-header.header-transparent,
.news-detail-page .site-header.header-light {
  --nav-active-height: var(--news-detail-header-height);
  color: #07182c;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: none;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.news-detail-page.inner-page-scrolled .site-header,
.news-detail-page .site-header.header-compact {
  --nav-active-height: var(--news-detail-header-compact-height);
}

.news-detail-page .site-header::after {
  background: rgba(15, 50, 86, 0.08);
  opacity: 1;
}

.news-detail-page .site-logo__img--light {
  opacity: 0;
}

.news-detail-page .site-logo__img--dark {
  opacity: 1;
}

.news-detail-page .case-detail-main {
  padding-top: var(--news-detail-header-height);
  background: #ffffff;
}

.news-detail-page .case-detail__inner {
  width: min(1640px, calc(100% - 88px));
  margin: 0 auto;
}

.news-detail-page .case-detail-topbar {
  position: sticky;
  top: var(--news-detail-header-height);
  z-index: 18;
  background: linear-gradient(90deg, #f8fcff 0%, #e4f2ff 100%);
  box-shadow: none;
  transition:
    top 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    backdrop-filter 0.2s ease;
}

.news-detail-page.inner-page-scrolled .case-detail-topbar {
  top: var(--news-detail-header-compact-height);
  box-shadow: none;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.news-detail-page .case-detail-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 64px;
  transition:
    gap 0.2s ease,
    min-height 0.2s ease;
}

.news-detail-page.inner-page-scrolled .case-detail-topbar__inner {
  gap: 20px;
  min-height: 56px;
}

.news-detail-page .case-detail-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: #8a95a3;
  font-size: 14px;
  line-height: 1.8;
}

.news-detail-page .case-detail-breadcrumb a {
  color: #6d7885;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-standard);
}

.news-detail-page .case-detail-breadcrumb a:hover,
.news-detail-page .case-detail-breadcrumb a:focus-visible {
  color: var(--color-primary);
}

.news-detail-page .case-detail-breadcrumb span:last-child {
  overflow: hidden;
  color: #8a95a3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-detail-page .case-detail-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 34px;
  padding: 0 15px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background var(--duration-fast) var(--ease-standard),
    transform var(--duration-fast) var(--ease-standard);
}

.news-detail-page .case-detail-back:hover,
.news-detail-page .case-detail-back:focus-visible {
  background: #155c97;
  transform: translateY(-1px);
}

.news-detail-page .case-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(300px, 23vw, 390px);
  gap: clamp(46px, 5vw, 82px);
  align-items: start;
  padding: clamp(56px, 5.2vw, 92px) 0 clamp(68px, 6vw, 104px);
}

.news-detail-page .case-detail-article {
  min-width: 0;
}

.news-detail-page .case-detail-head {
  padding-bottom: clamp(16px, 1.8vw, 24px);
  border-bottom: 1px solid rgba(21, 46, 74, 0.1);
}

.news-detail-page .case-detail-kicker {
  margin: 0 0 14px;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.news-detail-page .case-detail-head h1 {
  max-width: 980px;
  margin: 0;
  color: #111923;
  font-size: clamp(28px, 2.35vw, 42px);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0;
}

.news-detail-page .case-detail-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: clamp(14px, 1.5vw, 20px);
  color: #4d5968;
  font-size: 14px;
  line-height: 1.6;
}

.news-detail-page .case-detail-meta time {
  font-size: 13px;
  font-weight: 400;
}

.news-detail-page .case-detail-share {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #6b7684;
  font-size: 14px;
}

.news-detail-page .case-detail-share__button {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(31, 112, 178, 0.14);
  border-radius: 50%;
  background: #ffffff;
  color: var(--color-primary);
  text-decoration: none;
  cursor: pointer;
  transition:
    color var(--duration-fast) var(--ease-standard),
    border-color var(--duration-fast) var(--ease-standard),
    box-shadow var(--duration-fast) var(--ease-standard),
    transform var(--duration-fast) var(--ease-standard);
}

.news-detail-page .case-detail-share__button .iconify {
  width: 19px;
  height: 19px;
}

.news-detail-page .case-detail-share__button:hover,
.news-detail-page .case-detail-share__button:focus-visible {
  border-color: rgba(31, 112, 178, 0.4);
  box-shadow: 0 10px 22px rgba(31, 112, 178, 0.12);
  transform: translateY(-1px);
}

.news-detail-page .case-detail-share__qr {
  --case-detail-qr-size: 112px;
  --case-detail-qr-padding: 10px;
  position: absolute;
  right: 50%;
  bottom: calc(100% + 12px);
  display: grid;
  place-items: center;
  box-sizing: content-box;
  width: var(--case-detail-qr-size);
  height: var(--case-detail-qr-size);
  padding: var(--case-detail-qr-padding);
  border: 1px solid rgba(31, 112, 178, 0.12);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(11, 31, 51, 0.18);
  font-size: 0;
  line-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translate(50%, 8px);
  transition:
    opacity var(--duration-fast) var(--ease-standard),
    transform var(--duration-fast) var(--ease-standard);
}

.news-detail-page .case-detail-share__qr canvas,
.news-detail-page .case-detail-share__qr img,
.news-detail-page .case-detail-share__qr svg {
  display: block;
  width: var(--case-detail-qr-size) !important;
  height: var(--case-detail-qr-size) !important;
}

.news-detail-page .case-detail-share__button:hover .case-detail-share__qr,
.news-detail-page .case-detail-share__button:focus-visible .case-detail-share__qr {
  opacity: 1;
  transform: translate(50%, 0);
}

.news-detail-page .case-detail-body {
  max-width: 980px;
  padding-top: clamp(30px, 3.4vw, 48px);
  color: #344457;
  font-size: clamp(14px, 0.84vw, 15px);
  line-height: 1.82;
}

.news-detail-page .case-detail-body p {
  margin: 0;
}

.news-detail-page .case-detail-body p + p {
  margin-top: 16px;
}

.news-detail-page .case-detail-lead {
  color: #253445;
  font-size: clamp(14px, 0.9vw, 16px);
  font-weight: 400;
  line-height: 1.9;
  text-indent: 2em;
}

.news-detail-page .case-detail-body h2 {
  margin: clamp(28px, 3vw, 42px) 0 12px;
  color: #172231;
  font-size: clamp(18px, 1.16vw, 22px);
  font-weight: 600;
  line-height: 1.35;
}

.news-detail-page .case-detail-body h2 + p {
  margin-top: 0;
}

.news-detail-page .case-detail-figure {
  margin: clamp(28px, 3vw, 44px) 0;
  overflow: hidden;
  border-radius: 6px;
  background: #edf3f8;
}

.news-detail-page .case-detail-figure picture,
.news-detail-page .case-detail-figure img {
  display: block;
  width: 100%;
}

.news-detail-page .case-detail-figure img {
  height: auto;
  object-fit: cover;
}

.news-detail-page .case-detail-figure--wide img {
  aspect-ratio: 16 / 8.8;
  object-fit: cover;
}

.news-detail-page .case-detail-pager {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(42px, 4.8vw, 68px);
  padding-top: 22px;
  border-top: 1px solid rgba(21, 46, 74, 0.1);
}

.news-detail-page .case-detail-pager__item {
  display: grid;
  gap: 8px;
  min-height: 100px;
  padding: 18px 20px;
  border-radius: 8px;
  background: #f5f7fa;
  color: #1d2c3d;
  text-decoration: none;
  transition:
    background var(--duration-fast) var(--ease-standard),
    box-shadow var(--duration-fast) var(--ease-standard),
    transform var(--duration-fast) var(--ease-standard);
}

.news-detail-page .case-detail-pager__item:hover,
.news-detail-page .case-detail-pager__item:focus-visible {
  background: #eef6fc;
  box-shadow: 0 18px 42px rgba(11, 31, 51, 0.1);
  transform: translateY(-2px);
}

.news-detail-page .case-detail-pager__item span {
  color: #7a8795;
  font-size: 14px;
}

.news-detail-page .case-detail-pager__item strong {
  color: #162333;
  font-size: clamp(15px, 0.92vw, 16px);
  font-weight: 500;
  line-height: 1.55;
}

.news-detail-page .case-detail-aside {
  position: sticky;
  top: 156px;
  align-self: start;
  min-width: 0;
  padding-left: clamp(24px, 3vw, 48px);
}

.news-detail-page .case-detail-aside__sticky {
  position: static;
  display: grid;
  gap: 25px;
  padding: clamp(22px, 2.2vw, 32px);
  border-radius: 8px;
  background: #f2f7fb;
}

.news-detail-page .case-detail-aside h2 {
  margin: 0 0 6px;
  color: #243040;
  font-size: clamp(17px, 1vw, 19px);
  font-weight: 400;
  line-height: 1.5;
}

.news-detail-page .case-detail-related {
  display: grid;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.news-detail-page .case-detail-related__image {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  background: #e5edf4;
}

.news-detail-page .case-detail-related__image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 640ms cubic-bezier(0.16, 1, 0.3, 1);
}

.news-detail-page .case-detail-related:hover img,
.news-detail-page .case-detail-related:focus-visible img {
  transform: scale(1.045);
}

.news-detail-page .case-detail-related__body {
  display: grid;
  gap: 8px;
}

.news-detail-page .case-detail-related__body em {
  color: #8a95a3;
  font-size: 13px;
  font-style: normal;
}

.news-detail-page .case-detail-related__body strong {
  color: #1c2735;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

@media (max-width: 1180px) {
  .news-list__inner {
    padding-right: 0;
    padding-left: 0;
  }

  .news-feature-card {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .news-feature-card__content {
    padding: 30px 34px;
  }

  .news-grid {
    column-gap: 30px;
    row-gap: 42px;
  }

  .news-detail-page .case-detail__inner {
    width: min(100% - 56px, 1120px);
  }

  .news-detail-page .case-detail-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 34px;
    padding-top: 52px;
    padding-bottom: 76px;
  }

  .news-detail-page .case-detail-aside {
    padding-left: 24px;
  }

  .news-detail-page .case-detail-head h1 {
    font-size: clamp(26px, 2.6vw, 34px);
  }

  .news-detail-page .case-detail-body {
    padding-top: 28px;
    line-height: 1.78;
  }
}

@media (max-width: 980px) {
  .news-feature-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .news-feature-card__media img {
    aspect-ratio: 16 / 9;
  }

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

  .news-detail-page .case-detail-topbar {
    top: var(--news-detail-header-height);
  }

  .news-detail-page .case-detail-topbar__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    min-height: 86px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .news-detail-page .case-detail-layout {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 42px;
    padding-bottom: 66px;
  }

  .news-detail-page .case-detail-aside {
    position: static;
    padding-left: 0;
    border-left: 0;
  }

  .news-detail-page .case-detail-aside__sticky {
    position: static;
    padding: 24px;
  }
}

@media (max-width: 760px) {
  .news-page .news-list {
    display: block !important;
    grid-template-rows: none !important;
    height: auto !important;
    min-height: 0 !important;
    gap: 0 !important;
    transform: none !important;
    transition: none !important;
    overflow: visible !important;
    padding: 55px 0 54px;
  }

  .news-list__inner {
    gap: 24px;
    width: calc(100% - 36px);
  }

  .news-page .inner-anchor-nav {
    --inner-anchor-font-size: 12px;
    --inner-anchor-line-width: 42px;
  }

  .news-page .inner-anchor-nav.is-stuck {
    --inner-anchor-font-size: 12px;
    --inner-anchor-line-width: 40px;
  }

  .news-page .inner-anchor-nav__links {
    gap: 18px;
  }

  .news-feature-card__content {
    padding: 24px 18px 26px;
  }

  .news-card__category {
    min-height: 24px;
    padding: 0 8px;
    font-size: 12px;
  }

  .news-feature-card h2 {
    margin-top: 12px;
    font-size: 17px;
    line-height: 1.38;
  }

  .news-feature-card time {
    margin-top: 10px;
    font-size: 12px;
  }

  .news-feature-card p:not(.news-card__category) {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.58;
  }

  .news-card__more {
    margin-top: 14px;
    font-size: 12px;
  }

  .news-list__dots {
    gap: 10px;
    margin-top: 18px;
  }

  .news-list__dots button {
    width: 9px;
    height: 9px;
    border-radius: 2px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .news-card__meta {
    gap: 10px;
    margin-top: 14px;
  }

  .news-card__meta time {
    font-size: 12px;
  }

  .news-card h2 {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.45;
  }

  .news-list__pagination {
    gap: 8px;
    margin-top: 24px;
  }

  .news-list__pagination a,
  .news-list__pagination span {
    min-width: 34px;
    height: 34px;
    font-size: 12px;
  }
}

@media (max-width: 640px) {
  .news-detail-page {
    --news-detail-header-height: 68px;
    --news-detail-header-compact-height: 68px;
  }

  .news-detail-page .case-detail__inner {
    width: min(100% - 32px, 620px);
  }

  .news-detail-page .case-detail-main {
    padding-top: var(--news-detail-header-height);
  }

  .news-detail-page .case-detail-topbar__inner {
    gap: 6px;
    min-height: 76px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .news-detail-page .case-detail-breadcrumb {
    gap: 6px;
    font-size: 12px;
    line-height: 1.55;
  }

  .news-detail-page .case-detail-back {
    min-width: 50px;
    min-height: 30px;
    padding: 0 12px;
    font-size: 12px;
  }

  .news-detail-page .case-detail-layout {
    gap: 28px;
    padding-top: 30px;
    padding-bottom: 52px;
  }

  .news-detail-page .case-detail-head {
    padding-bottom: 14px;
  }

  .news-detail-page .case-detail-kicker {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .news-detail-page .case-detail-head h1 {
    font-size: 23px;
    line-height: 1.32;
  }

  .news-detail-page .case-detail-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.55;
  }

  .news-detail-page .case-detail-meta time,
  .news-detail-page .case-detail-share {
    font-size: 12px;
  }

  .news-detail-page .case-detail-share {
    gap: 9px;
  }

  .news-detail-page .case-detail-share__button {
    width: 30px;
    height: 30px;
  }

  .news-detail-page .case-detail-share__button .iconify {
    width: 17px;
    height: 17px;
  }

  .news-detail-page .case-detail-body {
    padding-top: 22px;
    font-size: 12px;
    line-height: 1.72;
  }

  .news-detail-page .case-detail-body p + p {
    margin-top: 12px;
  }

  .news-detail-page .case-detail-lead {
    font-size: 12px;
    line-height: 1.72;
  }

  .news-detail-page .case-detail-body h2 {
    margin: 24px 0 10px;
    font-size: 18px;
    line-height: 1.36;
  }

  .news-detail-page .case-detail-figure {
    margin: 22px 0;
  }

  .news-detail-page .case-detail-pager {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 32px;
    padding-top: 18px;
  }

  .news-detail-page .case-detail-pager__item {
    min-height: 82px;
    padding: 14px 16px;
  }

  .news-detail-page .case-detail-pager__item span {
    font-size: 12px;
  }

  .news-detail-page .case-detail-pager__item strong {
    font-size: 13px;
    line-height: 1.48;
  }

  .news-detail-page .case-detail-aside__sticky {
    gap: 25px;
    padding: 18px;
  }

  .news-detail-page .case-detail-aside h2 {
    margin-bottom: 2px;
    font-size: 16px;
  }

  .news-detail-page .case-detail-related {
    gap: 10px;
  }

  .news-detail-page .case-detail-related__body {
    gap: 6px;
  }

  .news-detail-page .case-detail-related__body em {
    font-size: 12px;
  }

  .news-detail-page .case-detail-related__body strong {
    font-size: 13px;
    line-height: 1.48;
  }
}

@media (max-width: 480px) {
  .news-page .news-list {
    padding-top: 55px;
    padding-bottom: 48px;
  }

  .news-list__inner {
    width: calc(100% - 32px);
    gap: 22px;
  }

  .news-page .inner-anchor-nav__links {
    gap: 16px;
  }

  .news-feature-card__content {
    padding: 22px 16px 24px;
  }

  .news-grid {
    row-gap: 35px;
  }

  .news-card h2 {
    font-size: 14px;
  }

  .news-list__pagination {
    gap: 6px;
  }

  .news-list__pagination a,
  .news-list__pagination span {
    min-width: 32px;
    height: 32px;
  }
}
