.news-archive {
  background: #f5f8f3;
  color: var(--color-text);
}

.news-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(145px, 13vw, 195px) 0 clamp(64px, 7vw, 92px);
  color: #fff;
  background:
    radial-gradient(circle at 78% 32%, rgba(103, 177, 20, 0.24), transparent 25%),
    linear-gradient(135deg, #061009 0%, #0a1b0f 58%, #12321a 100%);
}

.news-hero__glow {
  position: absolute;
  z-index: -1;
  top: -240px;
  right: -150px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(103, 177, 20, 0.22);
  border-radius: 50%;
  box-shadow: inset 0 0 130px rgba(103, 177, 20, 0.07);
}

.news-hero .eyebrow {
  color: var(--color-primary);
}

.news-hero h1 {
  max-width: 760px;
  margin: 14px 0 20px;
  color: #fff;
  font-size: var(--text-section-title);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.news-hero p:last-child {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.04rem, 1.3vw, 1.2rem);
  line-height: 1.7;
}

.news-content {
  padding: clamp(76px, 8vw, 125px) 0 clamp(92px, 10vw, 150px);
}

.news-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(360px, 0.78fr);
  min-height: 520px;
  margin-bottom: clamp(54px, 7vw, 88px);
  overflow: hidden;
  border: 1px solid rgba(20, 51, 28, 0.09);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 30px 75px rgba(18, 48, 25, 0.12);
}

.news-featured__media,
.news-card__media {
  display: block;
  overflow: hidden;
  background: #dfe9dc;
}

.news-featured__media img,
.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.news-featured:hover .news-featured__media img,
.news-card:hover .news-card__media img {
  transform: scale(1.035);
}

.news-media-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 250px;
  background:
    radial-gradient(circle at 75% 25%, rgba(157, 222, 85, 0.45), transparent 28%),
    linear-gradient(135deg, #0b2613 0%, #2c7633 100%);
}

.news-featured__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 5vw, 72px);
}

.news-date {
  margin: 0 0 17px;
  color: var(--color-secondary);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.news-featured h2,
.news-card h2 {
  margin: 0;
  color: #152019;
  letter-spacing: -0.035em;
}

.news-featured h2 {
  font-size: clamp(2.3rem, 3.7vw, 4.2rem);
  line-height: 1.02;
}

.news-featured h2 a,
.news-card h2 a {
  color: inherit;
  text-decoration: none;
}

.news-featured__excerpt {
  margin: 25px 0 0;
  color: #5d6961;
  font-size: 1.05rem;
  line-height: 1.75;
}

.news-read-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 28px;
  color: var(--color-secondary);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.news-read-link span {
  font-size: 1.2rem;
  transition: transform 200ms ease;
}

.news-read-link:hover span {
  transform: translateX(5px);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.news-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(20, 51, 28, 0.09);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(18, 48, 25, 0.075);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.news-card:hover {
  transform: translateY(-6px);
  border-color: rgba(103, 177, 20, 0.25);
  box-shadow: 0 28px 65px rgba(18, 48, 25, 0.13);
}

.news-card__media {
  aspect-ratio: 16 / 10;
}

.news-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 27px 27px 29px;
}

.news-card h2 {
  font-size: clamp(1.35rem, 1.75vw, 1.72rem);
  line-height: 1.18;
}

.news-card__content > p:not(.news-date) {
  margin: 17px 0 0;
  color: #68736c;
  font-size: 0.96rem;
  line-height: 1.68;
}

.news-card .news-read-link {
  margin-top: auto;
  padding-top: 24px;
}

.news-pagination {
  margin-top: clamp(52px, 7vw, 85px);
}

.news-pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-pagination a,
.news-pagination span {
  display: grid;
  place-items: center;
  min-width: 46px;
  min-height: 46px;
  padding: 9px 15px;
  border: 1px solid rgba(20, 51, 28, 0.12);
  border-radius: 999px;
  color: #263128;
  background: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.news-pagination .current,
.news-pagination a:hover {
  border-color: transparent;
  color: #fff;
  background: var(--gradient-brand);
}

.news-empty {
  max-width: 740px;
  padding: clamp(42px, 6vw, 72px);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 65px rgba(18, 48, 25, 0.1);
}

.news-empty h2 {
  margin: 12px 0 16px;
  font-size: clamp(2rem, 3.5vw, 3.6rem);
}

.news-empty > p:last-child {
  color: #657069;
}

@media (max-width: 980px) {
  .news-featured {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .news-featured__media {
    aspect-ratio: 16 / 9;
  }

  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .news-hero {
    padding: 124px 0 62px;
  }

  .news-hero h1 {
    font-size: var(--text-section-title-mobile);
  }

  .news-content {
    padding-top: 62px;
  }

  .news-featured {
    margin-bottom: 44px;
    border-radius: 22px;
  }

  .news-featured__content {
    padding: 28px 24px 32px;
  }

  .news-featured h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .news-card {
    border-radius: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .news-featured__media img,
  .news-card__media img,
  .news-card,
  .news-read-link span {
    transition: none;
  }

  .news-card:hover,
  .news-featured:hover .news-featured__media img,
  .news-card:hover .news-card__media img {
    transform: none;
  }
}
