.page-news {
  --news-gap: clamp(2rem, 5vw, 4rem);
  --news-radius: 24px;
  background: var(--c-light);
  color: var(--c-dark);
  padding-bottom: 2rem;
}

.page-news .breadcrumb {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.5rem var(--gutter) 0;
}
.page-news .breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--f-head);
  font-size: 0.88rem;
}
.page-news .breadcrumb li:not(:last-child)::after {
  content: "·";
  margin-left: 0.5rem;
  color: var(--c-gold);
}
.page-news .breadcrumb a {
  color: var(--c-primary-3);
  text-decoration: none;
}
.page-news .breadcrumb a:hover {
  color: var(--c-gold);
}
.page-news .breadcrumb [aria-current="page"] {
  color: var(--c-dark);
}

.page-news .news-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-2) 70%, var(--c-primary-3) 100%);
  color: var(--c-white);
  padding: clamp(2.8rem, 7vw, 5.5rem) 0 3rem;
  margin-top: 1.5rem;
}
.page-news .news-hero::before {
  content: "";
  position: absolute;
  right: -10%;
  top: 16%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: var(--c-gold-soft);
  filter: blur(60px);
  pointer-events: none;
}
.page-news .news-hero::after {
  content: "";
  position: absolute;
  left: -140px;
  bottom: -180px;
  width: 540px;
  height: 280px;
  border-radius: 50%;
  border: 2px solid rgba(212, 165, 58, 0.18);
  transform: rotate(-12deg);
  pointer-events: none;
}
.page-news .frame-corner--tl { top: 1.2rem; left: 1.2rem; }
.page-news .frame-corner--tr { top: 1.2rem; right: 1.2rem; }
.page-news .frame-corner--bl { bottom: 1.2rem; left: 1.2rem; }
.page-news .frame-corner--br { bottom: 1.2rem; right: 1.2rem; }

.page-news .news-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 820px) {
  .page-news .news-hero__grid {
    grid-template-columns: 1.6fr 1fr;
    gap: 3rem;
  }
}

.page-news .news-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--c-gold);
  border: 1px solid rgba(212, 165, 58, 0.4);
  background: rgba(212, 165, 58, 0.12);
  margin: 0 0 1rem;
}
.page-news .news-hero h1 {
  font-family: var(--f-head);
  font-size: clamp(1.75rem, 5.2vw, 3.2rem);
  line-height: 1.14;
  margin: 0 0 1.1rem;
  color: var(--c-white);
  font-weight: 800;
}
.page-news .news-hero__lead {
  font-family: var(--f-body);
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  max-width: 60ch;
}
.page-news .news-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.page-news .news-hero .btn--ghost {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--c-white);
}
.page-news .news-hero .btn--ghost:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
}

.page-news .news-hero__stats {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 520px) {
  .page-news .news-hero__stats {
    grid-template-columns: repeat(3, 1fr);
  }
}
.page-news .stat-cell {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.page-news .stat-cell dd {
  order: -1;
  font-family: var(--f-head);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--c-gold);
  margin: 0;
  line-height: 1;
}
.page-news .stat-cell dt {
  font-family: var(--f-head);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.7);
}

.page-news .news-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  padding: clamp(2rem, 6vw, 3.5rem) 0 4rem;
}
@media (min-width: 1024px) {
  .page-news .news-wrap {
    grid-template-columns: minmax(0, 1fr) 296px;
    gap: 3.5rem;
  }
}

.page-news .news-block {
  margin-bottom: calc(var(--news-gap) - 1rem);
}
.page-news .news-block:last-child {
  margin-bottom: 0;
}
.page-news .block-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.6rem 0.9rem;
  margin-bottom: 1.4rem;
  padding-bottom: 0.85rem;
  border-bottom: 2px solid rgba(10, 31, 68, 0.08);
}
.page-news .block-head h2 {
  font-family: var(--f-head);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.2;
  margin: 0;
  color: var(--c-primary);
  font-weight: 800;
}
.page-news .block-kicker {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-desert);
  background: rgba(200, 121, 65, 0.12);
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.7rem;
}
.page-news .block-badge {
  font-family: var(--f-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-primary-3);
  background: rgba(30, 58, 138, 0.1);
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.7rem;
  margin-left: auto;
}
.page-news .block-intro {
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(31, 41, 55, 0.82);
  margin: 0 0 1.5rem;
  max-width: 65ch;
}

.page-news .news-banner,
.page-news .news-figure {
  position: relative;
  overflow: hidden;
  border-radius: var(--news-radius);
  margin: 0 0 1.5rem;
  background: var(--c-primary-2);
  box-shadow: 0 10px 30px rgba(10, 31, 68, 0.12);
}
.page-news .news-banner {
  aspect-ratio: 16 / 7;
}
.page-news .news-figure--feature {
  aspect-ratio: 16 / 10;
}
.page-news .news-figure--guide {
  aspect-ratio: 16 / 10;
}
.page-news .news-figure--brand {
  aspect-ratio: 16 / 9;
}
.page-news .news-banner img,
.page-news .news-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-news .news-banner figcaption,
.page-news .news-figure figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  max-width: calc(100% - 2rem);
  color: var(--c-white);
  background: rgba(10, 31, 68, 0.72);
  border-radius: var(--radius-pill);
  padding: 0.4rem 0.85rem;
  font-size: 0.78rem;
  font-family: var(--f-head);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.page-news .timeline-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  position: relative;
}
.page-news .timeline-list::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(to bottom, rgba(212, 165, 58, 0.55), rgba(30, 58, 138, 0.4));
}
.page-news .timeline-item {
  position: relative;
  padding: 0 0 2.4rem 64px;
}
.page-news .timeline-item:last-child {
  padding-bottom: 0;
}
.page-news .timeline-node {
  position: absolute;
  left: 0;
  top: 1.6rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--c-primary);
  border: 2px solid var(--c-gold);
  color: var(--c-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 0 0 6px rgba(212, 165, 58, 0.15);
}
.page-news .timeline-card {
  background: var(--c-white);
  border: 1px solid rgba(10, 31, 68, 0.05);
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(10, 31, 68, 0.05);
  padding: 1.5rem 1.4rem 1.3rem;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease), border-color var(--speed) var(--ease);
}
.page-news .timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(10, 31, 68, 0.13);
  border-color: var(--c-gold-soft);
}
.page-news .tick-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
}
.page-news .tick-flag {
  font-family: var(--f-head);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.24rem 0.7rem;
  border-radius: var(--radius-pill);
}
.page-news .tick-flag--oasis {
  background: rgba(46, 139, 87, 0.12);
  color: var(--c-oasis);
}
.page-news .tick-flag--gold {
  background: rgba(212, 165, 58, 0.15);
  color: #9a7a23;
}
.page-news .tick-flag--desert {
  background: rgba(200, 121, 65, 0.14);
  color: #a85a25;
}
.page-news .tick-issue {
  font-family: var(--f-head);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: rgba(31, 41, 55, 0.58);
}
.page-news .timeline-card h3 {
  font-family: var(--f-head);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--c-primary);
}
.page-news .timeline-card p {
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.68;
  color: var(--c-dark);
  margin: 0 0 1rem;
}
.page-news .tick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.page-news .news-tag {
  display: inline-block;
  font-family: var(--f-head);
  font-size: 0.75rem;
  padding: 0.24rem 0.7rem;
  border-radius: var(--radius-pill);
  background: var(--c-light);
  color: var(--c-primary-3);
  border: 1px solid transparent;
  text-decoration: none;
}
.page-news a.news-tag:hover {
  color: var(--c-gold);
  border-color: var(--c-gold-soft);
}

.page-news .link-arrow,
.page-news .link-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--f-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--c-primary-3);
  text-decoration: none;
  margin-top: 1rem;
}
.page-news .link-arrow:hover,
.page-news .link-more:hover {
  color: var(--c-gold);
}

.page-news .feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
@media (min-width: 700px) {
  .page-news .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.page-news .feature-card {
  background: var(--c-white);
  border-radius: 20px;
  padding: 1.6rem 1.5rem;
  border: 1px solid rgba(10, 31, 68, 0.05);
  box-shadow: 0 6px 18px rgba(10, 31, 68, 0.05);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.page-news .feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(10, 31, 68, 0.12);
}
.page-news .feature-card__num {
  display: block;
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--c-gold);
  margin-bottom: 0.8rem;
}
.page-news .feature-card h3 {
  font-family: var(--f-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-primary);
  margin: 0 0 0.65rem;
}
.page-news .feature-card p {
  font-family: var(--f-body);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--c-dark);
  margin: 0 0 0.75rem;
}
.page-news .check-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.page-news .check-list li {
  position: relative;
  padding-left: 1.4rem;
  font-family: var(--f-head);
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--c-dark);
}
.page-news .check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 0.55em;
  height: 0.55em;
  border-radius: 2px;
  background: var(--c-gold-soft);
  border: 2px solid var(--c-gold);
}

.page-news .guide-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (min-width: 720px) {
  .page-news .guide-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}
.page-news .guide-step {
  background: var(--c-white);
  border-radius: 18px;
  padding: 1.5rem;
  border-top: 3px solid var(--c-gold-soft);
  box-shadow: 0 6px 18px rgba(10, 31, 68, 0.05);
  transition: transform var(--speed) var(--ease), border-color var(--speed) var(--ease);
}
.page-news .guide-step:hover {
  transform: translateY(-4px);
  border-top-color: var(--c-gold);
}
.page-news .guide-step__num {
  display: block;
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 2rem;
  color: var(--c-gold);
  line-height: 1;
  margin-bottom: 0.8rem;
}
.page-news .guide-step h3 {
  font-family: var(--f-head);
  font-size: 1.05rem;
  color: var(--c-primary);
  margin: 0 0 0.5rem;
  font-weight: 700;
}
.page-news .guide-step p {
  font-family: var(--f-body);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
  color: var(--c-dark);
}
.page-news .guide-note {
  margin-top: 1.25rem;
  background: rgba(46, 139, 87, 0.08);
  border: 1px solid rgba(46, 139, 87, 0.25);
  border-radius: 16px;
  padding: 0.9rem 1.1rem;
  font-family: var(--f-head);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--c-primary);
}

.page-news .announce-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.page-news .announce-item {
  background: var(--c-white);
  border: 1px solid rgba(10, 31, 68, 0.05);
  border-radius: 18px;
  padding: 1.4rem;
  box-shadow: 0 4px 14px rgba(10, 31, 68, 0.05);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.page-news .announce-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(10, 31, 68, 0.1);
}
.page-news .announce-item__tag {
  display: inline-block;
  font-family: var(--f-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--c-desert);
  background: rgba(200, 121, 65, 0.12);
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.7rem;
}
.page-news .announce-item h3 {
  font-family: var(--f-head);
  font-size: 1.1rem;
  color: var(--c-primary);
  margin: 0 0 0.5rem;
  font-weight: 700;
}
.page-news .announce-item p {
  font-family: var(--f-body);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0 0 0.8rem;
  color: var(--c-dark);
}
.page-news .link-more {
  margin-top: 0;
}

.page-news .news-side {
  display: grid;
  gap: 1.25rem;
  align-content: start;
}
@media (min-width: 1024px) {
  .page-news .news-side {
    position: sticky;
    top: 2rem;
  }
}
.page-news .side-card {
  background: var(--c-white);
  border: 1px solid rgba(10, 31, 68, 0.05);
  border-radius: 20px;
  padding: 1.4rem 1.4rem 1.2rem;
  box-shadow: 0 6px 18px rgba(10, 31, 68, 0.05);
}
.page-news .side-card--dark {
  background: linear-gradient(160deg, var(--c-primary), var(--c-primary-2));
  color: var(--c-white);
}
.page-news .side-card__heading {
  font-family: var(--f-head);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-primary-3);
  margin: 0 0 1rem;
}
.page-news .side-card--dark .side-card__heading {
  color: var(--c-gold);
}
.page-news .cat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}
.page-news .cat-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--f-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.65rem 1rem;
  border-radius: var(--radius-pill);
  transition: background var(--speed) var(--ease), color var(--speed) var(--ease), border-color var(--speed) var(--ease);
}
.page-news .cat-pill strong {
  font-size: 0.82rem;
  background: rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-pill);
  padding: 0.15rem 0.55rem;
}
.page-news .cat-pill:hover,
.page-news .cat-pill.is-active {
  background: var(--c-gold);
  color: var(--c-primary);
  border-color: var(--c-gold);
}
.page-news .cat-pill:hover strong,
.page-news .cat-pill.is-active strong {
  background: rgba(10, 31, 68, 0.12);
}
.page-news .side-card p {
  font-family: var(--f-body);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0 0 0.5rem;
}
.page-news .side-card a:not(.cat-pill) {
  color: var(--c-primary-3);
  text-decoration: none;
  font-weight: 600;
}
.page-news .side-card a:not(.cat-pill):hover {
  color: var(--c-gold);
}
.page-news .side-inline-link {
  display: inline-block;
  margin-top: 0.4rem;
  font-family: var(--f-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-primary-3);
  text-decoration: none;
}
.page-news .side-inline-link:hover {
  color: var(--c-gold);
}
.page-news .side-contact {
  display: grid;
  gap: 0.3rem;
  font-family: var(--f-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-dark);
  margin: 0.7rem 0 0.4rem;
  word-break: break-word;
}
.page-news .side-contact span {
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(31, 41, 55, 0.55);
  text-transform: uppercase;
}
