.news-page,
.article-page {
  background: linear-gradient(180deg, #ffffff 0%, #f6f9f7 100%);
}

.news-hero {
  padding: 90px 20px 34px;
  text-align: center;
}

.news-hero__inner {
  max-width: 900px;
  margin: 0 auto;
}

.news-hero__eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-green);
  background: rgba(1, 68, 33, 0.08);
  border: 1px solid rgba(1, 68, 33, 0.12);
}

.news-hero h1 {
  font-size: clamp(40px, 6vw, 58px);
  line-height: 1.04;
  color: var(--dark-green);
  margin-bottom: 16px;
}

.news-hero p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 19px;
  line-height: 1.75;
  color: #33413a;
}

.news-wrapper,
.article-wrapper {
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px 20px 90px;
}

.featured-news {
  margin-bottom: 32px;
}

.featured-news__card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  padding: 28px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(1, 68, 33, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.featured-news__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.09);
}

.featured-news__media {
  width: 100%;
  height: 360px;
  border-radius: 24px;
  overflow: hidden;
  background: #edf2ef;
}

.featured-news__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-news__media img.full-contain {
  object-fit: contain;
  padding: 16px;
}

.featured-news__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-news__tag {
  display: inline-block;
  width: fit-content;
  margin-bottom: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-green);
  background: rgba(1, 68, 33, 0.08);
}

.featured-news__date,
.news-card__date,
.article-date {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
  color: #6a746f;
}

.featured-news__content h2 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
  color: var(--dark-green);
  margin-bottom: 14px;
}

.featured-news__content p {
  font-size: 17px;
  line-height: 1.8;
  color: #2e3531;
  margin-bottom: 20px;
}

.featured-news__cta,
.news-card__cta,
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 12px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(180deg, rgba(1, 68, 33, 0.96), rgba(1, 68, 33, 0.78));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.featured-news__cta:hover,
.news-card__cta:hover,
.article-back:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
  background: linear-gradient(180deg, rgba(2, 98, 51, 0.96), rgba(1, 68, 33, 0.82));
}

.news-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.news-section-head h2 {
  font-size: 30px;
  color: var(--dark-green);
}

.news-section-head p {
  color: #64706a;
  font-size: 15px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-grid--small {
  grid-template-columns: repeat(3, 1fr);
}

.news-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(1, 68, 33, 0.08);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.09);
}

.news-card__media {
  width: 100%;
  height: 220px;
  background: #edf2ef;
  overflow: hidden;
}

.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card__media img.full-contain {
  object-fit: contain;
  padding: 14px;
}

.news-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-card__body h3 {
  font-size: 22px;
  line-height: 1.2;
  color: var(--dark-green);
  margin-bottom: 12px;
}

.news-card__body p {
  font-size: 16px;
  line-height: 1.75;
  color: #29312d;
  margin-bottom: 18px;
  flex: 1;
}

.news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.news-pagination button {
  border: none;
  padding: 12px 18px;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(180deg, rgba(1, 68, 33, 0.96), rgba(1, 68, 33, 0.78));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.news-pagination button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
  background: linear-gradient(180deg, rgba(2, 98, 51, 0.96), rgba(1, 68, 33, 0.82));
}

.news-pagination button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.news-pagination span {
  font-weight: 700;
  color: var(--dark-green);
}

.article-back {
  margin-bottom: 20px;
}

.article-card {
  padding: 30px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(1, 68, 33, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  margin-bottom: 34px;
}

.article-title {
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.1;
  color: var(--dark-green);
  margin-bottom: 12px;
}

.article-cover,
.article-slider {
  margin: 24px 0;
  border-radius: 24px;
  overflow: hidden;
  background: #edf2ef;
}

.article-cover img,
.article-slider img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.article-cover img.full-contain,
.article-slider img.full-contain {
  object-fit: contain;
  padding: 16px;
}

.article-text {
  font-size: 18px;
  line-height: 1.9;
  color: #222;
}

.article-text strong {
  color: var(--dark-green);
}

.article-loading,
.article-error {
  font-size: 18px;
  color: #444;
}

.slider-shell {
  position: relative;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  background: rgba(1, 68, 33, 0.92);
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

.slider-prev {
  left: 16px;
}

.slider-next {
  right: 16px;
}

.slider-counter {
  text-align: center;
  margin-top: 12px;
  font-size: 14px;
  color: #64706a;
}

.more-news {
  margin-top: 10px;
}

.site-footer--simple {
  padding-top: 30px;
}

.site-footer--simple .site-footer__top {
  margin-top: 0;
}

@media (max-width: 1080px) {
  .featured-news__card,
  .news-grid,
  .news-grid--small {
    grid-template-columns: 1fr 1fr;
  }

  .featured-news__card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .news-hero {
    padding: 60px 16px 26px;
  }

  .news-hero p {
    font-size: 17px;
  }

  .news-wrapper,
  .article-wrapper {
    padding: 0 16px 70px;
  }

  .featured-news__card,
  .article-card {
    padding: 22px 20px;
    border-radius: 22px;
  }

  .news-grid,
  .news-grid--small {
    grid-template-columns: 1fr;
  }

  .featured-news__media {
    height: 240px;
  }

  .news-card__media {
    height: 210px;
  }

  .news-section-head h2 {
    font-size: 24px;
  }

  .article-text {
    font-size: 16px;
    line-height: 1.8;
  }

  .news-pagination {
    flex-wrap: wrap;
  }
}