.news-subhero .subhero-bg {
  background: url("../img/slajd2.webp") center 45% / cover no-repeat;
}

.news-subhero .subhero-content {
  bottom: 11%;
}

.news-intro {
  padding-top: 86px;
  padding-bottom: 54px;
}

.news-intro-wrap {
  max-width: 980px;
}

.news-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #7a9d1e;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.news-eyebrow::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  border-radius: 999px;
  background: rgba(172, 207, 62, 0.88);
}

.news-intro h1 {
  font-size: clamp(2rem, 4.3vw, 3.7rem);
  line-height: 1.1;
  font-weight: 300;
  margin-bottom: 14px;
}

.news-intro p {
  color: #4f555a;
  line-height: 1.82;
  font-size: 1.04rem;
}

.news-feed {
  padding-top: 24px;
  padding-bottom: 96px;
  background: #f5f6f3;
}

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

.news-card {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e1e6d6;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.07);
}

.news-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.news-card:hover .news-card-media img {
  transform: scale(1.05);
}

.news-date {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.82);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.news-card-body {
  padding: 18px 18px 20px;
}

.news-meta {
  color: #76991f;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.news-card-body h2 {
  font-size: clamp(1.22rem, 1.55vw, 1.58rem);
  color: #17220e;
  line-height: 1.24;
  margin-bottom: 8px;
  font-weight: 500;
}

.news-card-body p {
  color: #50575d;
  line-height: 1.74;
  font-size: 0.98rem;
}

@media (max-width: 1080px) {
  .news-grid-page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .news-grid-page {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .news-intro {
    padding-top: 66px;
    padding-bottom: 34px;
  }

  .news-feed {
    padding-bottom: 72px;
  }
}
