.page-news {
  background:
    radial-gradient(circle at 88% 8%, rgba(233, 184, 114, 0.14), transparent 24%),
    linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary) 58%, var(--color-teal) 130%);
  color: var(--color-surface);
  min-height: 100vh;
}

.page-news .news-wrap {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px 72px;
}

.page-news .breadcrumb {
  padding: 22px 0 0;
  font-family: var(--font-index);
  font-size: 0.84rem;
  color: rgba(245, 245, 240, 0.7);
}

.page-news .breadcrumb a {
  color: var(--color-gold);
  text-decoration: none;
}

.page-news .breadcrumb a:hover,
.page-news .breadcrumb a:focus-visible {
  text-decoration: underline;
}

.page-news .breadcrumb__sep {
  margin: 0 8px;
  color: rgba(245, 245, 240, 0.4);
}

.page-news .news-masthead {
  position: relative;
  padding: 40px 0 34px;
  border-bottom: 1px solid rgba(245, 245, 240, 0.16);
}

.page-news .news-masthead__kicker {
  margin: 0 0 14px;
  font-family: var(--font-index);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.page-news .news-masthead h1 {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--color-surface);
}

.page-news .news-masthead__lead {
  max-width: 800px;
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.8;
  color: rgba(245, 245, 240, 0.82);
}

.page-news .news-masthead__note {
  max-width: 860px;
  margin-top: 26px;
  padding: 14px 18px;
  border-left: 3px solid var(--color-gold);
  border-radius: 0 12px 12px 0;
  background: rgba(245, 245, 240, 0.06);
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(245, 245, 240, 0.9);
}

.page-news .news-masthead__note strong {
  color: var(--color-gold);
  font-family: var(--font-index);
}

.page-news .news-masthead__ribbon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 5px;
  background: repeating-linear-gradient(
    90deg,
    var(--color-accent) 0 64px,
    var(--color-gold) 64px 128px,
    var(--color-teal) 128px 192px,
    var(--color-purple) 192px 256px
  );
}

.page-news .news-layout {
  display: grid;
  gap: 40px;
  padding-top: 36px;
}

.page-news .news-main {
  display: grid;
  gap: 64px;
  counter-reset: news-section;
  min-width: 0;
}

.page-news .news-section {
  display: grid;
  gap: 24px;
  counter-increment: news-section;
  scroll-margin-top: 120px;
}

.page-news .news-section__head {
  display: grid;
  gap: 8px;
}

.page-news .news-section__head::before {
  content: "0" counter(news-section);
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1;
  color: rgba(233, 184, 114, 0.24);
  margin-bottom: 4px;
}

.page-news .news-section__intro {
  max-width: 680px;
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(245, 245, 240, 0.74);
}

.page-news .news-media {
  margin: 0;
}

.page-news .news-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.page-news .news-media figcaption {
  margin-top: 8px;
  font-family: var(--font-index);
  font-size: 0.78rem;
  color: rgba(245, 245, 240, 0.58);
}

.page-news .news-report-list {
  display: grid;
  gap: 14px;
}

.page-news .news-report {
  display: grid;
  gap: 6px;
  padding: 20px 22px;
  border-left: 4px solid var(--color-accent);
  border-radius: 12px;
  background: var(--color-surface);
  color: #1d2333;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
}

.page-news .news-report__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-family: var(--font-index);
}

.page-news .news-report__tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(195, 39, 43, 0.1);
  color: var(--color-accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.page-news .news-report__time {
  font-size: 0.76rem;
  color: #6b7280;
}

.page-news .news-report h3 {
  margin: 4px 0 0;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.45;
}

.page-news .news-report p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.94rem;
  line-height: 1.75;
  color: #3a4050;
}

.page-news .news-feature {
  display: grid;
  gap: 22px;
  padding: 26px;
  border: 1px solid rgba(245, 245, 240, 0.12);
  border-radius: 16px;
  background: linear-gradient(150deg, var(--color-teal) 0%, var(--color-primary) 92%);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.24);
}

.page-news .news-feature__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.page-news .news-feature__list {
  display: grid;
  gap: 16px;
}

.page-news .news-feature__item {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 12px;
  border-top: 2px solid var(--color-gold);
  background: rgba(11, 27, 58, 0.54);
}

.page-news .news-feature__item h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.5;
  color: var(--color-surface);
}

.page-news .news-feature__item p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(245, 245, 240, 0.84);
}

.page-news .news-feature__item a {
  justify-self: start;
  color: var(--color-gold);
  font-family: var(--font-index);
  font-size: 0.84rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(233, 184, 114, 0.5);
}

.page-news .news-feature__item a:hover,
.page-news .news-feature__item a:focus-visible {
  border-bottom-color: var(--color-gold);
}

.page-news .news-updates {
  display: grid;
  gap: 24px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(245, 245, 240, 0.12);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(62, 42, 90, 0.62) 0%, rgba(11, 27, 58, 0.42) 100%);
}

.page-news .news-updates__heading {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-news .news-updates__note {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(245, 245, 240, 0.8);
}

.page-news .news-updates__icon {
  width: 100%;
  max-width: 220px;
  height: auto;
  border-radius: 12px;
  align-self: flex-start;
}

.page-news .news-timeline {
  display: grid;
  gap: 18px;
}

.page-news .news-update {
  position: relative;
  display: grid;
  gap: 6px;
  padding-left: 28px;
}

.page-news .news-update::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 0 5px rgba(233, 184, 114, 0.18);
}

.page-news .news-update h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.5;
  color: var(--color-surface);
}

.page-news .news-update p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(245, 245, 240, 0.78);
}

.page-news .news-hot__banner {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

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

.page-news .news-hot-card {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border-bottom: 3px solid var(--color-accent);
  border-radius: 14px;
  background: rgba(245, 245, 240, 0.07);
}

.page-news .news-hot-card__cat {
  font-family: var(--font-index);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.page-news .news-hot-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.5;
  color: var(--color-surface);
}

.page-news .news-hot-card p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(245, 245, 240, 0.78);
}

.page-news .news-aside {
  display: grid;
  align-content: start;
  gap: 18px;
}

.page-news .news-aside__panel,
.page-news .news-entry {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 14px;
  background: var(--color-surface);
  color: #1d2333;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.page-news .news-aside__heading {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: #1d2333;
}

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

.page-news .news-filter__btn {
  width: 100%;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid rgba(11, 27, 58, 0.16);
  border-radius: 999px;
  background: transparent;
  color: var(--color-primary);
  font-family: var(--font-index);
  font-size: 0.82rem;
  line-height: 1.4;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.page-news .news-filter__btn:hover,
.page-news .news-filter__btn:focus-visible {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.page-news .news-filter__btn[aria-pressed="true"] {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #ffffff;
}

.page-news .news-index {
  display: grid;
  gap: 2px;
  padding: 22px;
  border-radius: 14px;
  background: rgba(245, 245, 240, 0.06);
  border-left: 3px solid var(--color-gold);
}

.page-news .news-index a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(245, 245, 240, 0.1);
  color: rgba(245, 245, 240, 0.88);
  font-family: var(--font-index);
  font-size: 0.9rem;
  text-decoration: none;
}

.page-news .news-index a:last-child {
  border-bottom: 0;
}

.page-news .news-index a:hover,
.page-news .news-index a:focus-visible {
  color: var(--color-gold);
}

.page-news .news-index a span {
  color: rgba(245, 245, 240, 0.4);
  font-size: 0.78rem;
}

.page-news .news-entry__links {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-news .news-entry__links a {
  color: var(--color-primary);
  font-family: var(--font-index);
  font-size: 0.9rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(11, 27, 58, 0.16);
  padding-bottom: 2px;
}

.page-news .news-entry__links a:hover,
.page-news .news-entry__links a:focus-visible {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

@media (min-width: 700px) {
  .page-news .news-feature {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

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

  .page-news .news-updates__heading {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .page-news .news-updates__note {
    max-width: 520px;
  }

  .page-news .news-updates__icon {
    max-width: 180px;
  }
}

@media (min-width: 1024px) {
  .page-news .news-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 48px;
    align-items: start;
  }

  .page-news .news-aside {
    position: sticky;
    top: 24px;
  }

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