.news-center-page {
  --news-blue: #0068c9;
  --news-blue-dark: #005caf;
  --news-navy: #0b2948;
  --news-ink: #14243a;
  --news-muted: #5c7085;
  --news-line: #d7e3ed;
  --news-soft: #f2f8fd;
  color: var(--news-ink);
  background: #fff;
}

.news-center-page *,
.news-center-page *::before,
.news-center-page *::after {
  box-sizing: border-box;
}

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

.news-center-page img {
  display: block;
  max-width: 100%;
}

.news-center-page .news-shell {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
}

.news-center-page .news-section-heading > div > p,
.news-center-page .news-recommend__header p,
.news-center-page .news-update-overview > p {
  margin: 0 0 9px;
  color: var(--news-blue);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .08em;
}

.news-center-page .news-hero__lead {
  margin: 0 0 6px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.news-center-page .news-card__arrow svg,
.news-center-page .news-recommend__link svg {
  width: 17px;
  height: 17px;
  transition: transform .2s ease;
}

.news-center-page .news-card__arrow:hover svg,
.news-center-page .news-recommend__link:hover svg {
  transform: translateX(3px);
}

.news-center-page .news-category-bar {
  position: relative;
  z-index: 3;
  border-bottom: 1px solid var(--news-line);
  background: #fff;
  box-shadow: 0 8px 22px rgba(19, 61, 99, .05);
}

.news-center-page .news-category-bar__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 32px;
  min-height: 82px;
  align-items: center;
}

.news-center-page .news-category-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.news-center-page .news-category-nav::-webkit-scrollbar {
  display: none;
}

.news-center-page .news-category-nav a {
  display: inline-flex;
  min-height: 38px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border-radius: 4px;
  color: #41556b;
  font-size: 14px;
  font-weight: 700;
  transition: color .2s ease, background-color .2s ease;
}

.news-center-page .news-category-nav a:hover,
.news-center-page .news-category-nav a:focus-visible {
  color: var(--news-blue);
  background: #eef7ff;
}

.news-center-page .news-category-nav a.is-active {
  color: #fff;
  background: var(--news-blue);
}

.news-center-page .news-category-count {
  display: inline-grid;
  min-width: 24px;
  min-height: 20px;
  padding: 0 6px;
  place-items: center;
  color: #6d8196;
  border-radius: 10px;
  background: #edf3f8;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.news-center-page .news-category-nav a.is-active .news-category-count {
  color: var(--news-blue);
  background: #fff;
}

.news-center-page .news-category-search {
  position: relative;
}

.news-center-page .news-category-search input[type="search"] {
  width: 100%;
  height: 42px;
  padding: 0 48px 0 16px;
  color: var(--news-ink);
  border: 1px solid #cedce8;
  border-radius: 5px;
  outline: 0;
  background: #f9fcff;
  appearance: none;
}

.news-center-page .news-category-search input[type="search"]::placeholder {
  color: #8b9aab;
}

.news-center-page .news-category-search input[type="search"]:focus {
  border-color: var(--news-blue);
  box-shadow: 0 0 0 3px rgba(8, 117, 220, .12);
}

.news-center-page .news-category-search button {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  width: 44px;
  height: 42px;
  padding: 0;
  place-items: center;
  color: var(--news-blue);
  border: 0;
  background: transparent;
  cursor: pointer;
}

.news-center-page .news-category-search button svg {
  width: 18px;
  height: 18px;
}

.news-center-page .news-desk {
  padding: 56px 0 72px;
  background: #f7fafc;
}

.news-center-page .news-desk__layout {
  display: block;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.news-center-page .news-desk__feed {
  min-width: 0;
  padding: 0;
  border: 0;
}

.news-center-page .news-section-heading {
  margin-bottom: 28px;
}

.news-center-page .news-section-heading--between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.news-center-page .news-section-heading--between > div {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 14px;
}

.news-center-page .news-section-heading--between > div > p {
  margin: 0;
  white-space: nowrap;
}

.news-center-page .news-section-heading--between > div > p::after {
  margin-left: 14px;
  color: #9badbd;
  content: "/";
}

.news-center-page .news-section-heading h2 {
  margin: 0;
  color: var(--news-navy);
  font-size: clamp(24px, 1.8vw, 28px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.news-center-page .news-list-count {
  flex: 0 0 auto;
  padding-bottom: 4px;
  color: var(--news-muted);
  font-size: 13px;
  font-weight: 700;
}

.news-center-page .news-article-list {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  border: 0;
}

.news-center-page .news-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--news-line);
  border-radius: 5px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.news-center-page .news-card:hover,
.news-center-page .news-card:focus-within {
  border-color: #b9d7ee;
  box-shadow: 0 10px 28px rgba(18, 62, 101, .08);
  transform: translateY(-2px);
}

.news-center-page .news-card__media {
  display: block;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #dce8f2;
}

.news-center-page .news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease;
}

.news-center-page .news-card:hover .news-card__media img {
  transform: scale(1.025);
}

.news-center-page .news-card__body {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 154px;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: flex-start;
  padding: 18px 54px 20px 20px;
}

.news-center-page .news-article-meta {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #65778a;
  font-size: 12px;
  line-height: 1.2;
}

.news-center-page .news-article-meta span {
  padding: 0;
  color: var(--news-blue);
  border-radius: 0;
  background: transparent;
  font-weight: 800;
}

.news-center-page .news-card h3 {
  margin: 0;
  color: var(--news-navy);
  font-weight: 800;
  letter-spacing: -.01em;
}

.news-center-page .news-card h3 {
  display: -webkit-box;
  overflow: hidden;
  font-size: 17px;
  line-height: 1.42;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-center-page .news-card h3 a:hover,
.news-center-page .news-card h3 a:focus-visible {
  color: var(--news-blue);
}

.news-center-page .news-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 9px 0 0;
  color: var(--news-muted);
  font-size: 13px;
  line-height: 1.62;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-center-page .news-card__arrow {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--news-blue);
  border: 1px solid #d9e9f7;
  border-radius: 50%;
  background: #f5faff;
}

.news-center-page .news-card--lead {
  grid-column: span 8;
}

.news-center-page .news-card--lead .news-card__media {
  aspect-ratio: 16 / 5;
}

.news-center-page .news-card--support {
  grid-column: span 4;
}

.news-center-page .news-card--standard {
  grid-column: span 4;
}

.news-center-page .news-card--lead .news-card__body {
  min-height: 166px;
  padding: 20px 58px 22px 22px;
}

.news-center-page .news-card--lead h3 {
  font-size: clamp(20px, 1.55vw, 24px);
  line-height: 1.36;
}

.news-center-page .news-card--lead p {
  max-width: 760px;
  font-size: 14px;
  -webkit-line-clamp: 2;
}

.news-center-page .news-card--support .news-card__body,
.news-center-page .news-card--standard .news-card__body {
  min-height: 154px;
}

.news-center-page .news-list-empty {
  padding: 48px 24px;
  text-align: center;
  border: 1px dashed #b9ccdc;
  border-radius: 5px;
  background: #fff;
}

.news-center-page .news-list-empty h3 {
  margin: 0 0 10px;
  color: var(--news-navy);
  font-size: 20px;
}

.news-center-page .news-list-empty p {
  margin: 0 0 16px;
  color: var(--news-muted);
}

.news-center-page .news-list-empty .news-text-link {
  color: var(--news-blue);
  font-weight: 800;
}

.news-center-page .news-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.news-center-page .news-pagination .page-numbers,
.news-center-page .news-pagination__edge {
  display: inline-grid;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  place-items: center;
  color: #466077;
  border: 1px solid #cddce8;
  border-radius: 4px;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
}

.news-center-page .news-pagination .current {
  color: #fff;
  border-color: var(--news-blue);
  background: var(--news-blue);
}

.news-center-page .news-pagination a:hover,
.news-center-page .news-pagination a:focus-visible {
  color: var(--news-blue);
  border-color: var(--news-blue);
}

.news-center-page .news-pagination .is-disabled {
  color: #a4b1bd;
  background: #f4f7f9;
}

.news-center-page .news-desk__sidebar {
  position: static;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: calc(28px + var(--news-desk-heading-offset)) 24px 28px;
  background: var(--news-soft);
}

.news-center-page .news-recommend {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.news-center-page .news-recommend__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  padding: 0;
  border: 0;
}

.news-center-page .news-recommend__header p {
  margin-bottom: 9px;
}

.news-center-page .news-recommend__header h2 {
  margin: 0;
  color: var(--news-navy);
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 800;
  line-height: 1.2;
}

.news-center-page .news-recommend__header > span {
  color: var(--news-blue);
  font-size: 11px;
  font-weight: 800;
}

.news-center-page .news-recommend__featured {
  overflow: hidden;
  border: 1px solid var(--news-line);
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
  background: #fff;
}

.news-center-page .news-recommend__media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #dce8f2;
}

.news-center-page .news-recommend__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease;
}

.news-center-page .news-recommend__featured:hover .news-recommend__media img {
  transform: scale(1.025);
}

.news-center-page .news-recommend__body {
  padding: 16px 18px 18px;
}

.news-center-page .news-recommend__featured h3 {
  display: -webkit-box;
  overflow: hidden;
  font-size: 17px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-center-page .news-recommend__body > small {
  display: block;
  margin-top: 10px;
  color: var(--news-muted);
  font-size: 12px;
}

.news-center-page .news-recommend__empty {
  padding: 32px 20px;
  color: var(--news-muted);
  text-align: center;
  border-bottom: 1px solid var(--news-line);
}

.news-center-page .news-recommend__links {
  display: grid;
  padding: 4px 18px 10px;
  border: 1px solid var(--news-line);
  border-radius: 0 0 5px 5px;
  background: #fff;
}

.news-center-page .news-recommend__link {
  display: grid;
  min-width: 0;
  grid-template-columns: 30px minmax(0, 1fr) 18px;
  gap: 8px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #e7eef4;
}

.news-center-page .news-recommend__link:last-child {
  border-bottom: 0;
}

.news-center-page .news-recommend__link b {
  color: var(--news-blue);
  font-size: 14px;
}

.news-center-page .news-recommend__link span {
  display: -webkit-box;
  overflow: hidden;
  color: var(--news-navy);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-center-page .news-recommend__link svg {
  color: var(--news-blue);
}

.news-center-page .news-recommend__link:hover span,
.news-center-page .news-recommend__link:focus-visible span {
  color: var(--news-blue);
}

.news-center-page .news-update-overview {
  padding: 18px 20px;
  border: 1px solid #c9e0f4;
  border-radius: 5px;
  background: #eaf5fd;
}

.news-center-page .news-update-overview > p {
  margin-bottom: 10px;
}

.news-center-page .news-update-overview > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.news-center-page .news-update-overview span,
.news-center-page .news-update-overview strong {
  color: var(--news-navy);
  font-size: 17px;
  font-weight: 800;
}

.news-center-page .news-update-overview strong {
  color: var(--news-blue);
}

.news-center-page .news-update-overview small {
  display: block;
  margin-top: 7px;
  color: var(--news-muted);
  font-size: 11px;
  line-height: 1.5;
}

.news-center-page a:focus-visible,
.news-center-page button:focus-visible,
.news-center-page input:focus-visible {
  outline: 3px solid rgba(8, 117, 220, .32);
  outline-offset: 3px;
}

@media (max-width: 1200px) {
  .news-center-page .news-shell {
    width: min(1440px, calc(100% - 40px));
  }

  .news-center-page .news-category-bar__inner {
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 22px;
  }

  .news-center-page .news-article-list {
    gap: 20px;
  }
}

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

  .news-center-page .news-card--lead {
    grid-column: 1 / -1;
  }

  .news-center-page .news-card--support,
  .news-center-page .news-card--standard {
    grid-column: span 1;
  }

  .news-center-page .news-card--lead .news-card__body {
    min-height: 150px;
  }
}

@media (max-width: 900px) {
  .news-center-page .news-category-bar__inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px 0;
  }

  .news-center-page .news-category-search {
    width: min(100%, 440px);
  }

  .news-center-page .news-desk {
    padding: 44px 0 56px;
  }

  .news-center-page .news-desk__feed {
    padding: 0;
    border: 0;
  }
}

@media (max-width: 760px) {
  .news-center-page .news-shell {
    width: min(100% - 32px, 1440px);
  }

  .news-center-page .news-hero__lead {
    font-size: 16px;
  }

  .news-center-page .news-category-nav {
    margin-right: -16px;
    padding-right: 16px;
  }

  .news-center-page .news-category-nav a {
    min-height: 36px;
    padding: 0 14px;
    font-size: 13px;
  }

  .news-center-page .news-section-heading h2 {
    font-size: 24px;
  }

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

  .news-center-page .news-card--lead,
  .news-center-page .news-card--support,
  .news-center-page .news-card--standard {
    grid-column: 1 / -1;
  }

  .news-center-page .news-card__body,
  .news-center-page .news-card--lead .news-card__body,
  .news-center-page .news-card--support .news-card__body,
  .news-center-page .news-card--standard .news-card__body {
    min-height: 0;
    padding: 17px 52px 19px 18px;
  }

  .news-center-page .news-card--lead h3,
  .news-center-page .news-card h3 {
    font-size: 17px;
  }

  .news-center-page .news-card--lead p,
  .news-center-page .news-card p {
    font-size: 13px;
  }
}

@media (max-width: 520px) {
  .news-center-page .news-shell {
    width: min(100% - 28px, 1440px);
  }

  .news-center-page .news-category-bar__inner {
    padding: 12px 0;
  }

  .news-center-page .news-category-search {
    width: 100%;
  }

  .news-center-page .news-desk {
    padding: 34px 0 44px;
  }

  .news-center-page .news-section-heading {
    margin-bottom: 16px;
  }

  .news-center-page .news-section-heading--between {
    align-items: center;
    gap: 14px;
  }

  .news-center-page .news-section-heading--between > div {
    gap: 9px;
  }

  .news-center-page .news-section-heading--between > div > p::after {
    margin-left: 9px;
  }

  .news-center-page .news-section-heading h2 {
    font-size: 21px;
  }

  .news-center-page .news-list-count {
    font-size: 12px;
  }

  .news-center-page .news-article-list {
    gap: 16px;
  }

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

  .news-center-page .news-card__media {
    min-height: 0;
  }

  .news-center-page .news-card__body,
  .news-center-page .news-card--lead .news-card__body,
  .news-center-page .news-card--support .news-card__body,
  .news-center-page .news-card--standard .news-card__body {
    padding: 15px 46px 17px 16px;
  }

  .news-center-page .news-article-meta {
    gap: 6px;
    margin-bottom: 7px;
    font-size: 10px;
  }

  .news-center-page .news-article-meta span {
    padding: 3px 6px;
  }

  .news-center-page .news-card h3 {
    font-size: 14px;
    line-height: 1.42;
  }

  .news-center-page .news-card p {
    margin-top: 6px;
    font-size: 11px;
    line-height: 1.55;
    -webkit-line-clamp: 2;
  }

  .news-center-page .news-card__arrow {
    top: auto;
    right: 12px;
    bottom: 12px;
    width: 28px;
    height: 28px;
  }

  .news-center-page .news-card__arrow svg {
    width: 15px;
    height: 15px;
  }

  .news-center-page .news-pagination {
    gap: 6px;
    margin-top: 20px;
  }

  .news-center-page .news-pagination .page-numbers,
  .news-center-page .news-pagination__edge {
    min-width: 34px;
    height: 36px;
    padding: 0 8px;
    font-size: 12px;
  }

  .news-center-page .news-desk__feed {
    padding: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .news-center-page *,
  .news-center-page *::before,
  .news-center-page *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
