.page-news {
  --grid-soft: rgba(217, 201, 163, 0.35);
  --white: #FFFFFF;
  --line: var(--sand);
  --panel: var(--green-pale);
  --badge-bg: var(--orange-pale);
  background-color: var(--paper);
  background-image:
    linear-gradient(var(--grid-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-soft) 1px, transparent 1px);
  background-size: 64px 64px;
  padding-bottom: 88px;
}

.news-archive {
  padding: 28px 20px 40px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.news-archive::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--green) 0 58%, var(--orange) 58% 100%);
}
.news-archive__inner {
  max-width: var(--site-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.news-archive__coord {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  line-height: 1.7;
  border-left: 3px solid var(--orange);
  padding-left: 12px;
}
.news-archive__title {
  margin: 16px 0 0;
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--green-deep);
}
.news-archive__title::after {
  content: "";
  display: inline-block;
  width: 48px;
  height: 7px;
  margin-left: 14px;
  background: var(--orange);
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
  vertical-align: middle;
}
.news-archive__lead {
  margin: 14px 0 0;
  max-width: 780px;
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.9;
}

.insight-section {
  padding: 56px 20px 0;
}
.insight-section__inner {
  max-width: var(--site-width);
  margin: 0 auto;
}
.insight-section__header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--green-deep);
  padding-bottom: 10px;
  margin-bottom: 26px;
}
.insight-section__index {
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--orange);
  line-height: 1;
}
.insight-section__title {
  margin: 0;
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--green-deep);
}
.insight-section__meta {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  color: var(--slate);
  text-transform: uppercase;
}

.news-layout {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.news-stream {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.news-tags {
  order: 2;
}

.news-item {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 18px 16px;
  display: flex;
  gap: 14px;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.news-item:hover,
.news-item:focus-within {
  border-color: var(--green);
  background: var(--panel);
  box-shadow: var(--shadow);
}
.news-item__num {
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--green);
  min-width: 36px;
  padding-top: 3px;
}
.news-item__body {
  flex: 1;
  min-width: 0;
}
.news-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}
.news-item__title {
  margin: 0 0 8px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.12rem;
  line-height: 1.45;
  color: var(--ink);
}
.news-item__summary {
  margin: 0 0 8px;
  color: var(--slate);
  font-size: 0.9rem;
  line-height: 1.75;
}
.news-item__excerpt {
  margin: 0;
  color: var(--ink);
  font-size: 0.88rem;
  line-height: 1.75;
}

.news-item__cover,
.news-item__inline {
  border: 1px solid var(--line);
}
.news-item__cover {
  margin-bottom: 12px;
}
.news-item__inline {
  margin: 12px 0;
}
.page-news .media--16-9 {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.page-news .media--16-9 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-tag {
  display: inline-block;
  padding: 2px 10px;
  border: 1px solid var(--green);
  color: var(--green-deep);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  background: transparent;
  line-height: 1.6;
}
.news-tag--orange {
  border-color: var(--orange);
  background: var(--badge-bg);
  color: var(--orange);
  font-weight: 700;
}

.news-tags__panel {
  border: 2px dashed var(--slate);
  background: var(--panel);
  padding: 20px 18px;
}
.news-tags__title {
  margin: 0 0 14px;
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 800;
  font-size: 1rem;
  color: var(--green-deep);
  display: flex;
  align-items: center;
  gap: 8px;
}
.news-tags__title::before {
  content: "";
  width: 18px;
  height: 4px;
  background: var(--orange);
  clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
  flex: none;
}
.news-tags__list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.news-tags__link {
  display: inline-block;
  padding: 5px 12px;
  border: 1px solid var(--green);
  background: var(--paper);
  color: var(--green-deep);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.news-tags__link:hover,
.news-tags__link:focus-visible {
  background: var(--green);
  color: var(--white);
  transform: translateX(3px);
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}
.news-tags__note {
  margin: 0 0 14px;
  font-size: 0.84rem;
  line-height: 1.75;
  color: var(--slate);
}
.news-tags__cta {
  display: block;
  text-align: center;
}

.topic-section {
  padding: 64px 20px 0;
}
.topic-section__inner {
  max-width: var(--site-width);
  margin: 0 auto;
}
.topic-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.topic-card {
  position: relative;
  display: block;
  background: var(--green-deep);
  color: var(--white);
  text-decoration: none;
  padding: 28px 24px 24px;
  min-height: 230px;
  border: 1px solid var(--green-deep);
  overflow: hidden;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.topic-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 52px;
  height: 52px;
  background: var(--orange);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.topic-card:hover,
.topic-card:focus-visible {
  background: var(--green);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  outline: none;
}
.topic-card__num {
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 2rem;
  color: var(--orange);
  display: block;
  margin-bottom: 18px;
  line-height: 1;
}
.topic-card__title {
  margin: 0 0 10px;
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
}
.topic-card__text {
  margin: 0 0 16px;
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
}
.topic-card__more {
  position: relative;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--orange);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.topic-card__more::after {
  content: "→";
  margin-left: 6px;
  transition: margin-left 0.18s ease;
}
.topic-card:hover .topic-card__more::after,
.topic-card:focus-visible .topic-card__more::after {
  margin-left: 12px;
}

.back-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: background 0.2s ease, transform 0.2s ease;
}
.back-top:hover,
.back-top:focus-visible {
  background: var(--green-deep);
  transform: translateY(-3px);
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

@media (min-width: 960px) {
  .page-news {
    padding-bottom: 120px;
  }
  .news-archive {
    padding: 44px 32px 56px;
  }
  .news-archive__inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
  }
  .news-archive__coord {
    flex: none;
    margin-bottom: 8px;
  }
  .insight-section {
    padding: 72px 32px 0;
  }
  .news-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }
  .news-stream {
    flex: 1 1 66%;
  }
  .news-tags {
    order: 0;
    flex: 0 0 296px;
    position: sticky;
    top: 24px;
  }
  .news-item {
    padding: 24px;
    gap: 20px;
  }
  .news-item__num {
    min-width: 48px;
    font-size: 1.55rem;
  }
  .news-item__title {
    font-size: 1.2rem;
  }
  .topic-section {
    padding: 88px 32px 0;
  }
  .topic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .topic-card {
    min-height: 260px;
  }
}
