.news-page {
  --news-green: #0b6f30;
  --news-green-dark: #075523;
  --news-orange: #ff6b18;
  --news-text: #45413c;
  --news-muted: #7b756e;
  --news-border: #e9e3da;
  color: var(--news-text);
  background: #fff;
}
.news-page__hero {
  position: relative;
  padding: 24px 0 48px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(255,107,24,.09), transparent 25%),
    linear-gradient(110deg,#f6fbf4,#fffaf4);
}
.news-page__hero::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -125px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(11,111,48,.1);
  border-radius: 50%;
}
.news-page__breadcrumb {
  min-height: 35px;
  margin-bottom: 24px;
}
.news-page__breadcrumb .breadcrumb {
  margin: 0;
  padding: 0;
  background: transparent;
}
.news-page__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
  color: var(--news-orange);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.news-page__hero h1 {
  margin: 0 0 10px;
  color: var(--news-green-dark);
  font-size: clamp(32px,4vw,48px);
  font-weight: 800;
  line-height: 1.15;
}
.news-page__hero p {
  max-width: 650px;
  margin: 0;
  color: var(--news-muted);
  font-size: 14px;
  line-height: 1.7;
}
.news-page__content {
  padding: 38px 0 65px;
}
.news-featured {
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(0,.85fr);
  overflow: hidden;
  border: 1px solid var(--news-border);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(59,48,34,.1);
}
.news-featured__image {
  position: relative;
  min-height: 370px;
  display: block;
  overflow: hidden;
  background: #f2eee8;
}
.news-featured__image picture,
.news-featured__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .4s ease;
}
.news-featured:hover .news-featured__image img {
  transform: scale(1.035);
}
.news-featured__image > span {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 7px 13px;
  border-radius: 18px;
  color: #fff;
  background: var(--news-orange);
  font-size: 14px;
  font-weight: 800;
}
.news-featured__body {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 35px 38px;
}
.news-featured time,
.news-card time {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--news-muted);
  font-size: 14px;
}
.news-featured time i,
.news-card time i {
  color: var(--news-green);
}
.news-featured h2 {
  margin: 12px 0;
  font-size: clamp(22px,2.4vw,31px);
  font-weight: 800;
  line-height: 1.35;
}
.news-featured h2 a,
.news-card h3 a {
  color: var(--news-green-dark);
  text-decoration: none;
}
.news-featured p {
  margin: 0 0 20px;
  color: #67615b;
  font-size: 14px;
  line-height: 1.75;
}
.news-featured__link,
.news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--news-orange);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.news-featured__link i,
.news-card__link i {
  transition: transform .2s ease;
}
.news-featured__link:hover i,
.news-card__link:hover i {
  transform: translateX(4px);
}
.news-page__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 42px 0 22px;
}
.news-page__heading span {
  color: var(--news-orange);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}
.news-page__heading h2 {
  margin: 4px 0 0;
  color: var(--news-green-dark);
  font-size: 25px;
  font-weight: 800;
}
.news-page__heading > i {
  color: #9ac99f;
  font-size: 25px;
}
.news-page__grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 22px;
}
.news-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--news-border);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(62,48,31,.08);
  transition: transform .25s ease,box-shadow .25s ease;
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(62,48,31,.13);
}
.news-card__image {
  aspect-ratio: 1.55/1;
  display: block;
  overflow: hidden;
  background: #f3f0ea;
}
.news-card__image picture,
.news-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}
.news-card:hover .news-card__image img {
  transform: scale(1.045);
}
.news-card__body {
  min-height: 205px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 17px 18px 19px;
}
.news-card h3 {
  margin: 9px 0 8px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}
.news-card p {
  display: -webkit-box;
  margin: 0 0 15px;
  overflow: hidden;
  color: #716b65;
  font-size: 14px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.news-card__link {
  margin-top: auto;
}
.news-page__pagination {
  margin-top: 32px;
}
.news-page__empty {
  padding: 55px 25px;
  border: 1px solid var(--news-border);
  border-radius: 12px;
  text-align: center;
  background: #fff;
}
.news-page__empty > i {
  display: block;
  margin-bottom: 12px;
  color: var(--news-green);
  font-size: 38px;
}
.news-page__empty strong {
  display: block;
  color: var(--news-green-dark);
  font-size: 17px;
}
.news-page__empty p {
  margin: 5px 0 0;
  color: var(--news-muted);
  font-size: 14px;
}
@media (max-width:991px) {
  .news-featured {
    grid-template-columns:1fr 1fr;
  }
  .news-featured__body {
    padding:28px;
  }
  .news-page__grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
@media (max-width:767px) {
  .news-page__hero {
    padding-bottom:35px;
  }
  .news-featured {
    grid-template-columns:1fr;
  }
  .news-featured__image {
    min-height:300px;
  }
}
@media (max-width:575px) {
  .news-page__content {
    padding-top:25px;
  }
  .news-featured__image {
    min-height:230px;
  }
  .news-featured__body {
    padding:23px 20px;
  }
  .news-page__heading h2 {
    font-size:20px;
  }
  .news-page__grid {
    grid-template-columns:1fr;
  }
  .news-card__body {
    min-height:190px;
  }
}
