#homeEventsFeatured {
  margin-bottom: 1.5rem;
}

.news-section__featured {
  display: flex;
  flex-direction: column;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.news-section__featured:hover {
  border-color: #f7af28;
  box-shadow: 0 12px 32px rgba(1, 102, 68, 0.08);
}

@media (min-width: 768px) {
  .news-section__featured {
    flex-direction: row;
    align-items: stretch;
  }
}

.news-section__featured-media {
  position: relative;
  flex-shrink: 0;
  height: 14rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .news-section__featured-media {
    width: 42%;
    height: auto;
    min-height: 15rem;
  }
}

.news-section__featured-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-section__featured:hover .news-section__featured-media img {
  transform: scale(1.04);
}

.news-section__featured-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .news-section__featured-body {
    flex: 1;
    padding: 2rem 2.25rem;
  }
}

.news-section__featured-tag {
  display: inline-block;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #016644;
  background: #e8f5ef;
  padding: 0.35rem 0.65rem;
  margin-bottom: 0.875rem;
  width: fit-content;
}

.news-section__featured-title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.35;
  color: #016644;
  margin: 0 0 0.75rem;
}

@media (min-width: 768px) {
  .news-section__featured-title {
    font-size: 1.375rem;
  }
}

.news-section__featured-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #3f4947;
  margin: 0 0 1.25rem;
}

.news-section__link {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #016644;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  transition: gap 0.25s ease;
}

.news-section__featured:hover .news-section__link,
.news-section__card:hover .news-section__link {
  gap: 0.65rem;
}

.news-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .news-section__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
}

.news-section__card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e2e8f0;
  background: #eeeeee;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.news-section__card:hover {
  border-color: #f7af28;
  box-shadow: 0 8px 24px rgba(1, 102, 68, 0.06);
}

.news-section__card-media {
  position: relative;
  height: 10rem;
  overflow: hidden;
}

.news-section__card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-section__card:hover .news-section__card-media img {
  transform: scale(1.04);
}

.news-section__card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.5rem 1.5rem;
}

.news-section__card-tag {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.news-section__card-title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.35;
  color: #016644;
  margin: 0 0 0.5rem;
  transition: color 0.2s ease;
}

.news-section__card:hover .news-section__card-title {
  color: #014d33;
}

.news-section__card-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #3f4947;
  margin: 0 0 1rem;
  flex: 1;
}
