.page-news {
  --news-line: #202920;
  --news-panel: #101510;
  --news-grid-line: rgba(0, 196, 90, .05);
  background: var(--c-dark);
  color: var(--c-gray);
  padding-bottom: 80px;
}
.page-news .news-masthead {
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--c-green);
  background-color: var(--c-dark);
  background-image:
    linear-gradient(var(--news-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--news-grid-line) 1px, transparent 1px);
  background-size: 36px 36px;
}
.page-news .news-masthead::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 88px;
  height: 88px;
  background: var(--c-yellow);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  opacity: .8;
  z-index: 0;
}
.page-news .news-masthead::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--c-yellow) 0%, var(--c-green) 55%, var(--c-deep-green) 100%);
  opacity: .6;
}
.page-news .news-masthead-grid {
  display: grid;
  grid-template-areas:
    "context"
    "title"
    "version";
  gap: 24px;
  padding: 44px 0 36px;
  position: relative;
  z-index: 1;
}
.page-news .news-context {
  grid-area: context;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
}
.page-news .breadcrumb {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .05em;
  color: #7E8A7E;
}
.page-news .breadcrumb-link {
  color: var(--c-green);
  text-decoration: none;
}
.page-news .breadcrumb-link:hover {
  color: var(--c-yellow);
}
.page-news .breadcrumb-current {
  color: var(--c-yellow);
}
.page-news .news-eyebrow {
  font-size: 12px;
  letter-spacing: .14em;
  color: #7E8A7E;
  border: 1px solid #2B372B;
  padding: 4px 10px;
}
.page-news .news-title-block {
  grid-area: title;
  border-left: 4px solid var(--c-green);
  padding-left: 16px;
}
.page-news .news-title {
  font-family: var(--font-head);
  font-size: 32px;
  line-height: 1.12;
  letter-spacing: .03em;
  color: #fff;
  margin: 0;
}
.page-news .news-title-slash {
  color: var(--c-yellow);
  margin: 0 6px;
}
.page-news .news-title-line {
  display: block;
  color: var(--c-green);
  text-shadow: 6px 0 0 rgba(0, 196, 90, .1);
}
.page-news .news-lede {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--c-gray);
  max-width: 620px;
}
.page-news .news-version-panel {
  grid-area: version;
  background: var(--news-panel);
  border: 1px solid #374037;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 340px;
  position: relative;
}
.page-news .news-version-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--c-green);
}
.page-news .news-version-label {
  font-size: 12px;
  color: #7E8A7E;
  letter-spacing: .1em;
}
.page-news .news-version-num {
  color: var(--c-yellow);
  font-size: 20px;
  margin-right: 4px;
}
.page-news .news-version-tag {
  font-size: 12px;
  color: var(--c-gray);
  background: var(--c-deep-green);
  padding: 4px 8px;
}
.page-news .news-hero-visual {
  margin: 24px auto 0;
  position: relative;
}
.page-news .news-hero-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--c-yellow), var(--c-green));
  z-index: 2;
}
.page-news .news-hero-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 7px), 0 100%);
}
.page-news .news-hero-overlay {
  position: absolute;
  bottom: 18px;
  left: 16px;
  background: rgba(11, 15, 11, .72);
  border: 1px solid rgba(0, 196, 90, .35);
  color: var(--c-green);
  padding: 6px 12px;
  font-size: 12px;
  letter-spacing: .16em;
}
.page-news .news-category {
  padding: 44px 0 8px;
}
.page-news .news-category-head,
.page-news .news-featured-head,
.page-news .news-listing-head,
.page-news .news-further-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 2px solid var(--c-green);
  padding-bottom: 10px;
  margin-bottom: 16px;
}
.page-news .news-section-label {
  font-family: var(--font-head);
  font-size: 22px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}
.page-news .news-section-index {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  color: var(--c-yellow);
  border: 1px solid var(--c-yellow);
  padding: 2px 6px;
  margin-right: 8px;
}
.page-news .news-category-hint,
.page-news .news-featured-hint,
.page-news .news-listing-hint,
.page-news .news-further-hint {
  margin: 0;
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--c-deep-green);
  white-space: nowrap;
}
.page-news .news-category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.page-news .news-cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--news-panel);
  border: 1px solid #2B372B;
  color: var(--c-gray);
  font-size: 14px;
  text-decoration: none;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.page-news .news-cat-chip:hover {
  background: var(--c-green);
  border-color: var(--c-green);
  color: var(--c-dark);
}
.page-news .news-cat-chip.is-active {
  background: var(--c-green);
  border-color: var(--c-green);
  color: var(--c-dark);
}
.page-news .news-cat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-yellow);
  display: inline-block;
  flex: 0 0 auto;
}
.page-news .news-cat-chip:hover .news-cat-dot,
.page-news .news-cat-chip.is-active .news-cat-dot {
  background: var(--c-dark);
}
.page-news .news-cat-num {
  font-family: var(--font-mono);
  font-size: 12px;
}
.page-news .news-featured {
  padding: 40px 0 8px;
}
.page-news .news-featured-card {
  margin-top: 20px;
  background: var(--news-panel);
  border: 1px solid var(--news-line);
  border-left: 4px solid var(--c-yellow);
  display: grid;
  gap: 20px;
}
.page-news .news-featured-media {
  margin: 0;
  position: relative;
}
.page-news .news-featured-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 5%), 0 100%);
}
.page-news .news-featured-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--c-yellow);
  color: var(--c-dark);
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
}
.page-news .news-featured-body {
  padding: 0 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.page-news .news-cat-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--c-green);
  border: 1px solid var(--c-deep-green);
  padding: 4px 8px;
}
.page-news .news-cat-line .news-cat-dot {
  width: 6px;
  height: 6px;
}
.page-news .news-featured-title {
  font-family: var(--font-head);
  font-size: 24px;
  line-height: 1.25;
  color: #fff;
  margin: 0;
}
.page-news .news-featured-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--c-gray);
}
.page-news .news-featured-link {
  margin-top: 6px;
}
.page-news .news-listing {
  padding: 44px 0 8px;
}
.page-news .news-compact-zone {
  border-top: 1px solid var(--news-line);
  margin-top: 12px;
}
.page-news .news-row {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 14px;
  padding: 18px 12px;
  border-bottom: 1px solid #1B211B;
  transition: background .18s ease, box-shadow .18s ease;
}
.page-news .news-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: var(--c-yellow);
  transition: width .18s ease;
}
.page-news .news-row:hover {
  background: linear-gradient(90deg, rgba(0, 196, 90, .09), rgba(0, 196, 90, 0));
  box-shadow: inset 0 0 0 1px rgba(0, 196, 90, .25);
}
.page-news .news-row:hover::before {
  width: 4px;
}
.page-news .news-row-index {
  color: var(--c-yellow);
  font-size: 14px;
}
.page-news .news-row-cat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--c-green);
  border: 1px solid rgba(0, 196, 90, .3);
  padding: 2px 8px;
}
.page-news .news-row-cat-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-green);
  display: inline-block;
}
.page-news .news-row-meta {
  margin-left: auto;
  font-size: 12px;
  color: #6D786D;
}
.page-news .news-row-title {
  width: 100%;
  margin: 4px 0 0;
  font-family: var(--font-head);
  font-size: 18px;
  line-height: 1.4;
  color: var(--c-pale);
  transition: color .18s ease;
}
.page-news .news-row:hover .news-row-title {
  color: var(--c-yellow);
}
.page-news .news-row-excerpt {
  width: 100%;
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: #9AA39A;
}
.page-news .news-wide-preview {
  margin: 34px 0;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  background: linear-gradient(160deg, rgba(0, 196, 90, .1), rgba(0, 196, 90, 0) 45%);
  padding: 24px 20px;
  border-left: 3px solid var(--c-green);
  position: relative;
}
.page-news .news-wide-preview--alt {
  border-left-color: var(--c-yellow);
  background: linear-gradient(200deg, rgba(223, 255, 0, .08), rgba(223, 255, 0, 0) 45%);
}
.page-news .news-wide-preview::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 52px;
  height: 52px;
  background: var(--c-green);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  opacity: .16;
}
.page-news .news-wide-preview--alt::before {
  background: var(--c-yellow);
}
.page-news .news-wide-media {
  margin: 0;
  position: relative;
}
.page-news .news-wide-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid rgba(0, 196, 90, .25);
  clip-path: polygon(0 0, calc(100% - 10%) 0, 100% 10%, 100% 100%, 10% 100%, 0 calc(100% - 10%));
}
.page-news .news-wide-preview--alt .news-wide-img {
  border-color: rgba(223, 255, 0, .25);
}
.page-news .news-wide-fig {
  margin: 8px 0 0;
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--c-green);
}
.page-news .news-wide-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.page-news .news-wide-meta {
  font-size: 12px;
  color: #9AA39A;
  border-bottom: 1px solid var(--news-line);
  padding-bottom: 10px;
}
.page-news .news-wide-no {
  color: var(--c-yellow);
  font-size: 22px;
  margin-right: 10px;
}
.page-news .news-wide-title {
  margin: 0;
  font-family: var(--font-head);
  font-size: 26px;
  line-height: 1.25;
  color: #fff;
}
.page-news .news-wide-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--c-gray);
}
.page-news .news-wide-anchor {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--c-green);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color .18s ease, border-color .18s ease;
}
.page-news .news-wide-anchor:hover {
  color: var(--c-yellow);
  border-color: var(--c-yellow);
}
.page-news .news-further {
  padding: 52px 0 0;
}
.page-news .news-further-grid {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}
.page-news .news-further-card {
  background: var(--news-panel);
  border: 1px solid var(--news-line);
  padding: 22px 20px;
  color: var(--c-gray);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: border-color .2s ease, transform .2s ease;
}
.page-news .news-further-card::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 90px;
  height: 90px;
  background: var(--c-green);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  opacity: 0;
  transition: opacity .2s ease;
}
.page-news .news-further-card:hover {
  border-color: var(--c-green);
  transform: translateY(-3px);
}
.page-news .news-further-card:hover::after {
  opacity: .16;
}
.page-news .news-further-icon {
  width: 34px;
  height: 34px;
  border: 1px solid var(--c-yellow);
  color: var(--c-yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.page-news .news-further-title {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-body);
}
.page-news .news-further-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #9AA39A;
}
.page-news .news-further-more {
  margin-top: auto;
  font-size: 12px;
  color: var(--c-green);
}
@media (min-width: 768px) {
  .page-news .news-masthead-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.8fr) minmax(0, .9fr);
    grid-template-areas: "context title version";
    align-items: end;
    gap: 40px;
    padding: 64px 0 56px;
  }
  .page-news .news-context {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-news .news-title {
    font-size: 42px;
  }
  .page-news .news-lede {
    font-size: 15px;
  }
  .page-news .news-hero-visual {
    margin-top: 36px;
  }
  .page-news .news-category,
  .page-news .news-listing {
    padding-top: 56px;
  }
  .page-news .news-featured {
    padding-top: 48px;
  }
  .page-news .news-featured-card {
    grid-template-columns: 48% 52%;
    gap: 0;
    align-items: stretch;
  }
  .page-news .news-featured-body {
    padding: 32px;
    gap: 16px;
    background: var(--news-panel);
  }
  .page-news .news-featured-title {
    font-size: 28px;
  }
  .page-news .news-featured-text {
    font-size: 15px;
  }
  .page-news .news-wide-preview {
    grid-template-columns: minmax(0, 400px) 1fr;
    gap: 40px;
    padding: 40px 32px;
    align-items: center;
  }
  .page-news .news-wide-preview--alt {
    grid-template-columns: 1fr minmax(0, 400px);
  }
  .page-news .news-wide-preview--alt .news-wide-media {
    order: 2;
  }
  .page-news .news-wide-title {
    font-size: 32px;
  }
  .page-news .news-further {
    padding-top: 64px;
  }
  .page-news .news-further-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .page-news .news-row {
    display: grid;
    grid-template-columns: 64px 150px minmax(0, 1.4fr) minmax(0, 1.2fr) 120px;
    align-items: center;
    gap: 16px;
    padding: 24px 16px;
  }
  .page-news .news-row-title {
    width: auto;
    margin: 0;
    font-size: 19px;
    line-height: 1.35;
  }
  .page-news .news-row-excerpt {
    width: auto;
    margin: 0;
    font-size: 13px;
  }
  .page-news .news-row-meta {
    margin-left: 0;
    justify-self: end;
  }
  .page-news .news-row-cat {
    justify-self: start;
  }
}
