.page-news {
  --news-shadow: 0 2px 10px rgba(11, 27, 42, .06);
  background: var(--cream);
}

.page-news .news-hero {
  background: linear-gradient(118deg, var(--meadow) 0%, #155e3d 68%, var(--night) 130%);
  color: #f5f3e9;
  padding: 36px 0 56px;
  position: relative;
  overflow: hidden;
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  top: -14%;
  right: -8%;
  width: 30%;
  height: 150%;
  background: var(--crimson);
  transform: skewX(-16deg);
  opacity: .9;
  pointer-events: none;
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  right: 18%;
  bottom: -22%;
  width: 22%;
  height: 40%;
  background: var(--gold);
  transform: rotate(9deg) skewX(-18deg);
  opacity: .68;
  pointer-events: none;
}

.page-news .news-hero-container {
  position: relative;
  z-index: 1;
}

.page-news .news-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.page-news .news-hero-copy {
  position: relative;
  z-index: 1;
}

.page-news .news-hero-title {
  font-size: 42px;
  line-height: 1.08;
  margin: 8px 0 12px;
  color: #fff;
  letter-spacing: -.02em;
}

.page-news .news-hero-intro {
  font-size: 18px;
  font-weight: 700;
  color: #f5f3e9;
  margin: 0 0 12px;
}

.page-news .news-hero-desc {
  max-width: 560px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 243, 233, .82);
  margin: 0;
}

.page-news .breadcrumbs {
  margin-bottom: 28px;
}

.page-news .breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
}

.page-news .breadcrumb-item a {
  color: rgba(245, 243, 233, .85);
  text-decoration: none;
  transition: color .2s ease;
}

.page-news .breadcrumb-item a:hover {
  color: var(--highlight);
}

.page-news .breadcrumb-item[aria-current="page"] {
  color: #fff;
}

.page-news .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  margin-right: 8px;
  color: rgba(245, 243, 233, .5);
}

.page-news .news-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  position: relative;
  z-index: 1;
}

.page-news .news-stat {
  background: rgba(11, 27, 42, .5);
  border: 1px solid rgba(245, 243, 233, .28);
  padding: 14px 16px;
  backdrop-filter: blur(4px);
}

.page-news .news-stat-num {
  display: block;
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 900;
  font-size: 26px;
  line-height: 1;
  color: #fff;
}

.page-news .news-stat-label {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: .06em;
  color: rgba(245, 243, 233, .82);
}

.page-news .news-strip {
  background: var(--night);
  position: relative;
  z-index: 2;
}

.page-news .news-topic-tabs {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
  max-width: 100%;
}

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

.page-news .topic-tab {
  padding: 15px 18px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(245, 243, 233, .82);
  border-bottom: 3px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.page-news .topic-tab:hover {
  color: var(--highlight);
  border-bottom-color: var(--gold);
  background: rgba(212, 160, 23, .12);
}

.page-news .news-feed-section {
  padding: 52px 0 64px;
}

.page-news .news-layout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: start;
}

.page-news .news-sidebar-card {
  background: #fff;
  border: 1px solid var(--edge);
  box-shadow: var(--shadow-soft);
  padding: 24px 20px 22px;
  position: relative;
}

.page-news .news-sidebar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--meadow), var(--gold));
}

.page-news .news-sidebar-heading {
  margin: 6px 0 18px;
  font-size: 22px;
  color: var(--ink);
}

.page-news .news-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--edge);
}

.page-news .news-sidebar-nav a {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  padding: 8px 12px;
  border-left: 3px solid transparent;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.page-news .news-sidebar-nav a:hover {
  border-left-color: var(--crimson);
  background: rgba(215, 38, 61, .06);
  color: var(--crimson);
}

.page-news .sidebar-nav-num {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 900;
  font-size: 14px;
  color: var(--crimson);
}

.page-news .news-sidebar-links {
  margin-top: 20px;
}

.page-news .news-sidebar-links p {
  font-size: 13px;
  letter-spacing: .1em;
  color: #6b6b5d;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.page-news .news-sidebar-links a {
  display: block;
  font-size: 14px;
  color: var(--data-blue);
  text-decoration: none;
  padding: 6px 0;
  transition: color .2s ease, text-decoration .2s ease;
}

.page-news .news-sidebar-links a:hover {
  color: var(--crimson);
  text-decoration: underline;
}

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

.page-news .news-category {
  margin-bottom: 60px;
  scroll-margin-top: 20px;
}

.page-news .news-category:last-child {
  margin-bottom: 0;
}

.page-news .news-category-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--edge);
}

.page-news .news-category-num {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 900;
  font-size: 30px;
  line-height: 1;
  color: var(--crimson);
}

.page-news .news-category-heading h2 {
  font-size: 26px;
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
  letter-spacing: -.01em;
}

.page-news .news-category-heading .tag {
  margin-left: auto;
}

.page-news .news-card {
  background: #fff;
  border: 1px solid var(--edge);
  box-shadow: var(--shadow-soft);
  margin-bottom: 18px;
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}

.page-news .news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(212, 160, 23, .65);
}

.page-news .news-card details > summary {
  list-style: none;
  cursor: pointer;
  position: relative;
}

.page-news .news-card details > summary::-webkit-details-marker {
  display: none;
}

.page-news .news-card details > summary::after {
  content: "+";
  position: absolute;
  top: 14px;
  right: 16px;
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  color: var(--meadow);
  z-index: 3;
  transition: transform .2s ease, color .2s ease;
}

.page-news .news-card details[open] > summary::after {
  content: "−";
  color: var(--crimson);
}

.page-news .news-card-summary {
  display: block;
}

.page-news .news-card--with-media .news-card-summary {
  display: flex;
  flex-direction: column;
}

.page-news .news-card-media {
  position: relative;
  min-height: 150px;
  background: var(--night);
  overflow: hidden;
}

.page-news .news-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-news .news-card-main {
  padding: 20px 52px 20px 20px;
}

.page-news .news-card-main .tag {
  margin-bottom: 12px;
}

.page-news .news-card-main h3 {
  font-size: 19px;
  line-height: 1.45;
  margin: 0 0 10px;
  color: var(--ink);
  letter-spacing: -.01em;
}

.page-news .news-card-main p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #4b5450;
}

.page-news .news-card--featured {
  border-top: 4px solid var(--crimson);
}

.page-news .news-card--featured .news-card-main h3 {
  font-size: 21px;
}

.page-news .news-card-detail {
  background: rgba(245, 243, 233, .5);
  border-top: 1px dashed var(--edge);
  padding: 18px 20px 22px 22px;
}

.page-news .news-card-detail p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink);
}

.page-news .news-card-detail p:last-child {
  margin-bottom: 0;
}

.page-news .news-step-list {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: news-step;
}

.page-news .news-step-list li {
  counter-increment: news-step;
  position: relative;
  padding-left: 40px;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink);
}

.page-news .news-step-list li::before {
  content: counter(news-step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 900;
  font-size: 18px;
  color: var(--crimson);
}

.page-news .news-extra {
  padding: 56px 0;
}

.page-news .news-extra-inner {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.page-news .news-extra h2 {
  color: #fff;
  font-size: 30px;
  margin: 8px 0 12px;
}

.page-news .news-extra p {
  color: rgba(245, 243, 233, .78);
  line-height: 1.75;
  font-size: 14px;
}

.page-news .news-extra .btn-ghost {
  border-color: rgba(212, 160, 23, .7);
  color: var(--gold);
}

.page-news .news-extra .btn-ghost:hover {
  border-color: var(--highlight);
  color: var(--highlight);
}

@media (min-width: 768px) {
  .page-news .news-hero-title {
    font-size: 56px;
  }

  .page-news .news-hero-desc {
    font-size: 15px;
  }

  .page-news .news-card--with-media .news-card-summary {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
  }

  .page-news .news-card-main h3 {
    font-size: 21px;
  }

  .page-news .news-card--featured .news-card-main h3 {
    font-size: 23px;
  }

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

  .page-news .news-extra-inner > div:first-child {
    max-width: 560px;
  }
}

@media (min-width: 992px) {
  .page-news .news-hero::before {
    width: 52%;
    right: -6%;
  }

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

  .page-news .news-hero-copy {
    max-width: 58%;
  }

  .page-news .news-hero-stats {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
    gap: 12px;
    min-width: 240px;
  }

  .page-news .news-layout-grid {
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 56px;
  }

  .page-news .news-sidebar {
    position: sticky;
    top: 28px;
  }
}

@media (min-width: 1200px) {
  .page-news .news-hero-title {
    font-size: 64px;
  }
}
