.page-news {
  --news-radius: 18px;
  max-width: var(--container);
  margin-inline: auto;
  padding: 28px 16px 72px;
  background: var(--cream);
  color: var(--dark-gray);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
}
.page-news .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  font-size: 13px;
  letter-spacing: .02em;
  margin-bottom: 42px;
}
.page-news .breadcrumb__link {
  color: var(--kiwi-tone);
  text-decoration: none;
  transition: color .2s;
}
.page-news .breadcrumb__link:hover {
  color: var(--dark-green);
}
.page-news .breadcrumb__sep {
  color: var(--rock-gray);
}
.page-news .breadcrumb__item {
  color: var(--dark-gray);
  font-weight: 600;
}

.page-news .news-head {
  position: relative;
  padding: 0 0 36px;
  margin-bottom: 58px;
}
.page-news .news-head::before {
  content: "";
  display: block;
  height: 6px;
  width: 100%;
  margin-bottom: 28px;
  background: linear-gradient(90deg, var(--kiwi) 0 32%, var(--accent) 32% 68%, var(--dark-green) 68% 100%);
  clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 100%, 14px 100%);
}
.page-news .news-head__kicker {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 10px;
}
.page-news .news-head__kicker::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 8px;
  background: var(--accent);
  border-radius: 2px;
}
.page-news .news-head h1 {
  font-family: var(--font-head);
  font-size: clamp(34px, 6vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  margin: 0 0 16px;
  letter-spacing: .01em;
  color: var(--dark-gray);
}
.page-news .news-head__lead {
  max-width: 820px;
  margin: 0;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.9;
}
.page-news .news-head__lead::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  margin-top: 24px;
  background: linear-gradient(90deg, var(--kiwi), var(--accent));
}
.page-news .news-head__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px dashed var(--rock-gray);
}
.page-news .news-head__facts span {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-green);
}
.page-news .news-head__facts span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--kiwi);
}

.page-news .news-featured {
  margin-bottom: 72px;
}
.page-news .news-featured__head {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
}
.page-news .news-featured__head h2,
.page-news .news-cats__head h2,
.page-news .news-posts__head h2 {
  font-family: var(--font-head);
  font-weight: 800;
  margin: 0;
}
.page-news .news-featured__head h2::after,
.page-news .news-cats__head h2::after,
.page-news .news-posts__head h2::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 6px;
  margin-left: 10px;
  background: var(--accent);
  vertical-align: middle;
}
.page-news .news-featured__head h2 {
  font-size: clamp(24px, 4vw, 32px);
}
.page-news .news-featured__grid {
  display: grid;
  gap: 20px;
}
.page-news .news-featured__item {
  border-radius: 0 var(--news-radius) 0 var(--news-radius);
  background: #fff;
  box-shadow: var(--shadow-panel);
  overflow: hidden;
}
.page-news .news-featured__item--main {
  display: grid;
  grid-template-rows: auto 1fr;
}
.page-news .news-featured__thumb {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--kiwi);
}
.page-news .news-featured__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-news .news-featured__body {
  padding: 26px 22px 30px;
}
.page-news .news-featured__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 14px;
}
.page-news .news-featured__body h3 {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 12px;
  color: var(--dark-gray);
}
.page-news .news-featured__body p {
  margin: 0 0 20px;
  color: var(--text-muted);
  line-height: 1.75;
}
.page-news .news-featured__item--side {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 24px 20px;
  background: var(--dark-green);
  color: var(--cream);
  align-items: start;
}
.page-news .news-featured__item--alt {
  background: var(--dark-gray);
}
.page-news .news-featured__num {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  color: var(--kiwi);
}
.page-news .news-featured__item--alt .news-featured__num {
  color: var(--accent);
}
.page-news .news-featured__sidebody h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin: 8px 0 8px;
  color: #fff;
}
.page-news .news-featured__sidebody p {
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 12px;
  color: rgba(247, 242, 233, .82);
}
.page-news .news-featured__sidebody a {
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 176, 46, .5);
}

.page-news .news-cats {
  background: #fff;
  border-radius: var(--news-radius);
  box-shadow: var(--shadow-panel);
  border-left: 6px solid var(--accent);
  padding: 28px 22px;
  margin-bottom: 72px;
}
.page-news .news-cats__head {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
}
.page-news .news-cats__head h2 {
  font-size: 22px;
  color: var(--dark-green);
}
.page-news .news-cats__head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}
.page-news .news-cats__cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.page-news .tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(30, 30, 30, .06);
  color: var(--dark-gray);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  white-space: nowrap;
}
.page-news .tag--accent {
  background: var(--accent);
  color: var(--dark-gray);
}
.page-news .tag--terracotta {
  background: var(--terracotta);
  color: #fff;
}

.page-news .news-wrap {
  display: grid;
  gap: 36px;
  margin-top: 56px;
}
.page-news .news-index {
  position: relative;
  overflow: hidden;
  background: var(--dark-green);
  color: var(--cream);
  border-radius: 0 20px 0 20px;
  padding: 28px 22px 30px;
}
.page-news .news-index::after {
  content: "KIWI";
  position: absolute;
  right: -14px;
  bottom: -18px;
  font-family: var(--font-head);
  font-size: 62px;
  font-weight: 900;
  letter-spacing: .06em;
  color: rgba(139, 195, 74, .12);
  pointer-events: none;
}
.page-news .news-index__title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--kiwi);
}
.page-news .news-index__list {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  counter-reset: news;
}
.page-news .news-index__list li {
  margin-bottom: 4px;
}
.page-news .news-index__list a {
  display: block;
  padding: 12px 14px;
  color: rgba(247, 242, 233, .82);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4;
  border-left: 3px solid transparent;
  transition: all .25s;
}
.page-news .news-index__list a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .06);
  border-left-color: var(--accent);
}
.page-news .news-index__list a.is-active {
  color: #fff;
  background: rgba(139, 195, 74, .18);
  border-left-color: var(--kiwi);
  font-weight: 600;
}
.page-news .news-index__help {
  border-top: 4px solid var(--accent);
  background: rgba(247, 242, 233, .08);
  border-radius: 12px;
  padding: 18px 16px;
}
.page-news .news-index__help-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #fff;
}
.page-news .news-index__help p {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(247, 242, 233, .85);
}
.page-news .news-index__help .btn {
  margin-bottom: 10px;
}
.page-news .news-index__support {
  display: inline-block;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.page-news .news-posts {
  position: relative;
}
.page-news .news-posts__head {
  margin-bottom: 26px;
  padding-left: 14px;
  border-left: 6px solid var(--kiwi);
}
.page-news .news-posts__head h2 {
  font-size: 28px;
}
.page-news .news-posts__head p {
  margin: 4px 0 0;
  color: var(--text-muted);
  font-size: 14px;
}
.page-news .news-post {
  position: relative;
  display: grid;
  gap: 18px;
  background: #fff;
  border-radius: 0 16px 0 16px;
  border-bottom: 3px solid var(--kiwi);
  box-shadow: var(--shadow-panel);
  padding: 20px;
  margin-bottom: 24px;
}
.page-news .news-post::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 26px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--kiwi);
  border: 4px solid var(--cream);
  z-index: 2;
}
.page-news .news-post__img {
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  background: var(--kiwi);
}
.page-news .news-post__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-news .news-post__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  margin-bottom: 10px;
}
.page-news .news-post__league {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--rock-gray);
}
.page-news .news-post__body h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 10px;
  color: var(--dark-gray);
}
.page-news .news-post__body p {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
}
.page-news .news-post__more {
  display: inline-block;
  color: var(--kiwi-tone);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--kiwi);
  padding-bottom: 2px;
}
.page-news .news-post__more:hover {
  color: var(--dark-green);
}
.page-news .news-post--text {
  grid-template-columns: 1fr;
  border-bottom-color: var(--accent);
  border-left: 4px solid var(--terracotta);
  padding-left: 24px;
}
.page-news .news-post--text::before {
  background: var(--accent);
}
.page-news .news-post__num {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  color: var(--kiwi);
}

@media (min-width: 720px) {
  .page-news .news-post {
    grid-template-columns: 180px 1fr;
    align-items: center;
  }
  .page-news .news-post--text {
    grid-template-columns: 56px 1fr;
    align-items: start;
  }
  .page-news .news-post__num {
    font-size: 44px;
  }
}

@media (min-width: 860px) {
  .page-news .news-featured__grid {
    grid-template-columns: 1.55fr 1fr;
    grid-template-rows: auto auto;
    align-items: stretch;
  }
  .page-news .news-featured__item--main {
    grid-row: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .page-news {
    padding: 36px 32px 96px;
  }
  .page-news .news-head {
    padding: 0 0 44px;
    margin-bottom: 72px;
  }
  .page-news .news-wrap {
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 48px;
    align-items: start;
  }
  .page-news .news-index {
    position: sticky;
    top: calc(var(--header-h) + 24px);
  }
  .page-news .news-featured__body {
    padding: 30px 28px 34px;
  }
}
@media (min-width: 1280px) {
  .page-news .news-cats {
    padding: 34px 32px;
  }
  .page-news .news-post {
    grid-template-columns: 210px 1fr;
    padding: 24px;
  }
}
