/* Homepage featured articles: editorial image cards inspired by the selected reference. */
.home-page #featured-articles.home-articles {
  padding: 32px 0 78px;
  border-top: 1px solid #dce6df;
  background: #fff;
}

.home-page #featured-articles .home-article-panel {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.home-page #featured-articles .home-articles-head {
  align-items: flex-end;
  margin-bottom: 34px;
}

.home-page #featured-articles .home-articles-head h2 {
  margin: 0 0 9px;
  color: #11251b;
  font-size: clamp(2rem, 2.7vw, 2.65rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.035em;
}

.home-page #featured-articles .home-articles-head p {
  color: #65716a;
  font-size: 1.05rem;
  line-height: 1.65;
}

.home-page #featured-articles .article-more-link {
  min-height: 52px;
  flex: 0 0 auto;
  border-radius: 10px;
  padding: 0 26px;
  font-size: 1rem;
  transition:
    background-color .18s ease,
    color .18s ease,
    transform .18s ease,
    box-shadow .18s ease;
}

.home-page #featured-articles .article-more-link:hover {
  background: #f3faf5;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(31, 122, 77, .08);
}

.home-page #featured-articles .featured-article-layout {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: none;
  gap: 26px;
}

.home-page #featured-articles .featured-article-layout .article-card-compact,
.home-page #featured-articles .featured-article-layout .article-card-compact:nth-child(-n + 2) {
  display: flex;
  min-width: 0;
  min-height: 0;
  height: 100%;
  grid-column: auto;
  grid-row: auto;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #dce4dd;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(25, 42, 32, .055);
  transition:
    border-color .2s ease,
    box-shadow .2s ease,
    transform .2s ease;
}

.home-page #featured-articles .featured-article-layout .article-card-compact:hover {
  border-color: rgba(31, 122, 77, .3);
  box-shadow: 0 16px 34px rgba(25, 42, 32, .09);
  transform: translateY(-3px);
}

.home-page #featured-articles .featured-article-layout .article-card-compact .article-cover {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 1.58;
  flex: 0 0 auto;
  object-fit: cover;
  object-position: center;
  background: #eef4ee;
}

.home-page #featured-articles .featured-article-layout .article-card-compact .article-copy {
  position: static;
  display: flex;
  min-width: 0;
  min-height: 246px;
  flex: 1 1 auto;
  flex-direction: column;
  align-content: normal;
  gap: 0;
  padding: 26px 28px 28px;
}

.home-page #featured-articles .featured-article-layout .article-pill,
.home-page #featured-articles .featured-article-layout .article-meta {
  display: none;
}

.home-page #featured-articles .featured-article-layout .article-card-compact h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: #14241b;
  font-size: clamp(1.12rem, 1.35vw, 1.34rem);
  font-weight: 860;
  line-height: 1.45;
  letter-spacing: -.018em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-page #featured-articles .featured-article-layout .article-card-compact p {
  display: -webkit-box;
  overflow: hidden;
  margin: 14px 0 24px;
  color: #66726b;
  font-size: .96rem;
  line-height: 1.72;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-page #featured-articles .featured-article-layout .article-card-compact .article-button {
  position: static;
  width: auto;
  min-height: 0;
  overflow: visible;
  justify-content: flex-start;
  align-self: flex-start;
  gap: 10px;
  margin-top: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  color: #168451;
  font-size: 1rem;
  font-weight: 850;
  white-space: nowrap;
}

.home-page #featured-articles .featured-article-layout .article-card-compact .article-button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: currentColor;
  transition: transform .18s ease;
}

.home-page #featured-articles .featured-article-layout .article-card-compact:hover .article-button svg {
  transform: translateX(3px);
}

@media (max-width: 1180px) {
  .home-page #featured-articles.home-articles {
    padding-block: 27px 66px;
  }

  .home-page #featured-articles .featured-article-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
}

@media (max-width: 760px) {
  .home-page #featured-articles.home-articles {
    padding-block: 22px 54px;
  }

  .home-page #featured-articles .home-articles-head {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 20px;
    margin-bottom: 26px;
  }

  .home-page #featured-articles .home-articles-head h2 {
    font-size: 1.85rem;
  }

  .home-page #featured-articles .home-articles-head p {
    font-size: .96rem;
  }

  .home-page #featured-articles .article-more-link {
    width: fit-content;
    min-height: 48px;
    padding-inline: 21px;
  }

  .home-page #featured-articles .featured-article-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .home-page #featured-articles .featured-article-layout .article-card-compact .article-copy {
    min-height: 224px;
    padding: 23px 22px 24px;
  }

  .home-page #featured-articles .featured-article-layout .article-card-compact h3 {
    font-size: 1.16rem;
  }

  .home-page #featured-articles .featured-article-layout .article-card-compact p {
    display: -webkit-box;
    font-size: .92rem;
  }
}
