.news-index-hero,
.news-article-hero {
  overflow: hidden;
  background: #111314;
  color: #fff;
}

.news-index-hero {
  padding: 210px 0 115px;
}

.news-index-hero::before,
.news-article-hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
}

.news-index-hero__orb,
.news-article-hero__glow {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -120px;
  bottom: -290px;
  border-radius: 50%;
  background: rgba(193, 255, 0, .8);
  filter: blur(95px);
  opacity: .34;
}

.news-index-hero h1 {
  max-width: 980px;
  margin-top: 24px;
  color: #fff;
  font-size: clamp(56px, 7.8vw, 118px);
  line-height: .91;
  letter-spacing: -.065em;
  text-transform: uppercase;
}

.news-index-hero > .container > p:last-child {
  max-width: 690px;
  margin-top: 34px;
  color: rgba(255,255,255,.7);
  font-size: 21px;
  line-height: 1.55;
}

.news-kicker {
  margin: 0;
  color: #8faf1d;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.news-kicker span {
  margin-inline: 6px;
  opacity: .6;
}

.news-index-section {
  background: #f3f4ef;
}

.news-index-layout {
  display: grid;
  grid-template-columns: minmax(270px, 330px) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 76px);
  align-items: start;
}

.news-sidebar {
  display: grid;
  align-content: start;
  gap: 22px;
}

.news-sidebar__search,
.news-sidebar__block {
  padding: 28px;
  border: 1px solid rgba(17,19,20,.1);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(17,19,20,.045);
}

.news-sidebar__search > label,
.news-sidebar__block h2 {
  display: block;
  color: #111314;
  font-size: 24px;
  font-weight: 750;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.news-sidebar__search-field {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  min-height: 58px;
  margin-top: 18px;
  padding: 0 10px 0 18px;
  gap: 10px;
  border: 1px solid rgba(17,19,20,.16);
  border-radius: 15px;
  background: #f3f4ef;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.news-sidebar__search-field:focus-within {
  border-color: #8faf1d;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(193,255,0,.16);
}

.news-sidebar__search-field > i {
  color: #739400;
  font-size: 20px;
}

.news-sidebar__search-field input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #111314;
  font-size: 15px;
}

.news-sidebar__search-field input::placeholder {
  color: #787d7a;
}

.news-sidebar__search-field button {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #111314;
  color: #d8ff42;
}

.news-sidebar__eyebrow {
  margin-bottom: 9px;
  color: #739400;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.news-tag-list {
  display: flex;
  margin-top: 22px;
  gap: 9px;
  flex-wrap: wrap;
}

.news-tag-list button {
  padding: 9px 13px;
  border: 1px solid rgba(17,19,20,.14);
  border-radius: 999px;
  background: transparent;
  color: #4f5451;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}

.news-tag-list button:is(:hover, :focus-visible) {
  transform: translateY(-2px);
  border-color: #8faf1d;
  color: #405300;
  outline: none;
}

.news-tag-list button.is-active {
  border-color: #c1ff00;
  background: #c1ff00;
  color: #111314;
  box-shadow: 0 8px 20px rgba(143,175,29,.16);
}

.news-latest__list {
  display: grid;
  margin-top: 22px;
}

.news-latest__item {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid rgba(17,19,20,.1);
  color: #111314;
}

.news-latest__item:first-child {
  padding-top: 0;
  border-top: 0;
}

.news-latest__item img {
  width: 76px;
  height: 66px;
  border-radius: 12px;
  object-fit: cover;
  transition: transform .25s ease;
}

.news-latest__item > span {
  display: grid;
  gap: 5px;
}

.news-latest__item time {
  color: #7b807d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.news-latest__item strong {
  color: #111314;
  font-size: 14px;
  line-height: 1.32;
  transition: color .2s ease;
}

.news-latest__item:is(:hover, :focus-visible) {
  color: #111314;
  outline: none;
}

.news-latest__item:is(:hover, :focus-visible) img {
  transform: scale(1.045);
}

.news-latest__item:is(:hover, :focus-visible) strong {
  color: #638000;
}

.news-feed {
  min-width: 0;
}

.news-feed__header {
  display: flex;
  min-height: 46px;
  margin-bottom: 22px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.news-feed__header p {
  color: #666b68;
  font-size: 14px;
  font-weight: 700;
}

.news-feed__header button,
.news-empty button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  color: #587100;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: #b3e900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.news-card-col[hidden] {
  display: none !important;
}

.news-empty {
  padding: 90px 28px;
  border: 1px dashed rgba(17,19,20,.2);
  border-radius: 28px;
  background: rgba(255,255,255,.5);
  text-align: center;
}

.news-empty > i {
  color: #739400;
  font-size: 46px;
}

.news-empty h2 {
  margin-top: 17px;
  color: #111314;
  font-size: 32px;
}

.news-empty p {
  margin: 9px 0 20px;
  color: #676c69;
}

.news-card {
  overflow: hidden;
  border: 1px solid rgba(17,19,20,.1);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 14px 44px rgba(17,19,20,.06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 54px rgba(17,19,20,.12);
}

.news-card__visual {
  position: relative;
  display: block;
  height: 250px;
  overflow: hidden;
  background: #17191a;
}

.news-card__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.46));
  content: "";
}

.news-card__visual img {
  transition: transform .65s ease;
}

.news-card:hover .news-card__visual img {
  transform: scale(1.055);
}

.news-card__body {
  display: flex;
  min-height: 365px;
  padding: 32px;
  flex-direction: column;
}

.news-card h2 {
  margin-top: 18px;
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: -.035em;
}

.news-card h2 a {
  color: #111314;
}

.news-card__body > p:not(.news-kicker) {
  margin-top: 18px;
  color: #606462;
  line-height: 1.65;
}

.news-text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding-top: 24px;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid currentColor;
  color: #111314;
  font-weight: 700;
}

.news-text-link:hover {
  color: #739400;
}

.news-article-hero {
  padding: 190px 0 94px;
}

.news-back-link {
  display: inline-flex;
  margin-bottom: 68px;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.72);
  font-weight: 600;
}

.news-back-link:hover {
  color: #d8ff42;
}

.news-article-hero h1 {
  max-width: 980px;
  margin-top: 18px;
  color: #fff;
  font-size: clamp(46px, 6vw, 84px);
  line-height: .98;
  letter-spacing: -.055em;
}

.news-article-hero__dek {
  max-width: 830px;
  margin-top: 26px;
  color: rgba(255,255,255,.72);
  font-size: 20px;
  line-height: 1.6;
}

.news-channel-mark {
  display: flex;
  width: 190px;
  height: 190px;
  margin-left: auto;
  padding: 28px;
  align-items: flex-end;
  border: 1px solid rgba(216,255,66,.5);
  border-radius: 50%;
  background: rgba(216,255,66,.08);
  color: #d8ff42;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
}

.news-article__image {
  overflow: hidden;
  margin-bottom: 58px;
  border-radius: 28px;
  background: #efefe9;
}

.news-article__image img {
  min-height: 410px;
  max-height: 560px;
}

.news-article__lead {
  margin-bottom: 62px;
  color: #202321;
  font-size: 26px;
  line-height: 1.55;
  letter-spacing: -.018em;
}

.news-article__section {
  padding: 42px 0;
  border-top: 1px solid #dfe1da;
}

.news-article__section h2,
.news-checklist h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.news-article__section p {
  margin-top: 20px;
  color: #5d625f;
  font-size: 18px;
  line-height: 1.75;
}

.news-checklist {
  margin-top: 48px;
  padding: 48px;
  border-radius: 28px;
  background: #111314;
  color: #fff;
}

.news-checklist__eyebrow,
.news-source > span {
  display: block;
  margin-bottom: 14px;
  color: #a6c82f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.news-checklist h2 {
  color: #fff;
}

.news-checklist ul {
  display: grid;
  margin-top: 34px;
  gap: 17px;
}

.news-checklist li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  color: rgba(255,255,255,.78);
  line-height: 1.55;
}

.news-checklist i {
  color: #d8ff42;
  font-size: 20px;
}

.news-source {
  margin-top: 48px;
  padding: 27px 0;
  border-top: 1px solid #dfe1da;
  border-bottom: 1px solid #dfe1da;
}

.news-source a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111314;
  font-weight: 700;
}

.news-source a:hover {
  color: #739400;
}

.news-disclaimer {
  margin-top: 24px;
  color: #737875;
  font-size: 14px;
  line-height: 1.6;
}

.news-article__actions {
  display: flex;
  margin-top: 48px;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.news-article__actions .news-text-link {
  margin-top: 0;
  padding-top: 0;
}

@media (max-width: 991px) {
  .news-index-hero { padding-top: 170px; }
  .news-index-layout { grid-template-columns: 1fr; }
  .news-sidebar { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); max-height: none; padding-right: 0; overflow: visible; }
  .news-sidebar__search { grid-column: 1 / -1; }
  .news-channel-mark { display: none; }
  .news-back-link { margin-bottom: 45px; }
}

@media (max-width: 575px) {
  .news-index-hero { padding: 150px 0 86px; }
  .news-index-hero h1 { font-size: 49px; }
  .news-sidebar { grid-template-columns: 1fr; }
  .news-sidebar__search { grid-column: auto; }
  .news-sidebar__search, .news-sidebar__block { padding: 23px; border-radius: 20px; }
  .news-feed__header { align-items: flex-start; flex-direction: column; }
  .news-card__body { min-height: 0; padding: 26px; }
  .news-card__visual { height: 220px; }
  .news-card h2 { font-size: 25px; }
  .news-article-hero { padding: 150px 0 76px; }
  .news-article-hero h1 { font-size: 43px; }
  .news-article-hero__dek { font-size: 18px; }
  .news-article__image img { min-height: 280px; }
  .news-article__lead { font-size: 22px; }
  .news-checklist { padding: 30px 24px; }
  .news-article__actions { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .news-tag-list button,
  .news-latest__item img {
    transition-duration: .01ms;
  }

  .news-tag-list button:is(:hover, :focus-visible),
  .news-latest__item:is(:hover, :focus-visible) img {
    transform: none;
  }
}
