.audience-entry-grid {
  gap: 22px;
}

.audience-entry-card {
  display: grid;
  min-height: 100%;
  padding: 0;
  overflow: hidden;
  border-radius: 26px;
  color: inherit;
}

.audience-entry-card > .audience-entry-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 8.5;
  background: var(--sage);
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: normal;
  text-transform: none;
}

.audience-entry-card.primary > .audience-entry-media {
  color: inherit;
}

.audience-entry-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.audience-entry-card > .audience-entry-copy {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  padding: 30px 34px 34px;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: normal;
  text-transform: none;
}

.audience-entry-card.primary > .audience-entry-copy {
  color: white;
}

.audience-entry-copy > span {
  color: var(--terracotta-dark);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.audience-entry-card.primary .audience-entry-copy > span {
  color: #f0b9a7;
}

.audience-entry-card:hover .audience-entry-media img,
.audience-entry-card:focus-visible .audience-entry-media img {
  transform: scale(1.025);
}

.latest-section {
  padding-top: 18px;
}

.latest-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.latest-card a {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  color: inherit;
  text-decoration: none;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.latest-card.featured {
  grid-row: span 3;
}

.latest-card.featured a {
  position: relative;
  min-height: 100%;
  padding: clamp(30px, 4vw, 48px);
  overflow: hidden;
  border-color: transparent;
  background: linear-gradient(145deg, var(--forest), #274f43);
  color: white;
}

.latest-card.featured a::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(201, 220, 207, .16);
}

.latest-card a:hover,
.latest-card a:focus-visible {
  border-color: var(--sage-deep);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.latest-card-meta,
.latest-card-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 18px;
}

.latest-card-meta > span {
  color: var(--terracotta-dark);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.latest-card-meta time,
.latest-card-footer > span {
  color: var(--ink-soft);
  font-size: .76rem;
}

.latest-card h3 {
  margin: 18px 0 10px;
  font-size: clamp(1.35rem, 2.15vw, 2rem);
}

.latest-card p {
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: .92rem;
}

.latest-card-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.latest-card-footer strong {
  color: var(--terracotta-dark);
  font-size: .82rem;
}

.latest-card.featured .latest-card-meta > span,
.latest-card.featured .latest-card-footer strong {
  color: #f0b9a7;
}

.latest-card.featured .latest-card-meta time,
.latest-card.featured p,
.latest-card.featured .latest-card-footer > span {
  color: #d6e3de;
}

.latest-card.featured .latest-card-footer {
  position: relative;
  z-index: 1;
  border-top-color: rgba(255,255,255,.2);
}

.latest-card.featured h3 {
  position: relative;
  z-index: 1;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
}

.latest-section-action {
  display: flex;
  justify-content: flex-end;
  padding-top: 24px;
}

.latest-section-action .button {
  text-decoration: none;
}

@media (max-width: 900px) {
  .latest-grid {
    grid-template-columns: 1fr;
  }

  .latest-card.featured {
    grid-row: auto;
  }
}

@media (max-width: 680px) {
  .audience-entry-card > .audience-entry-copy {
    min-height: 0;
    padding: 24px;
  }

  .audience-entry-card > .audience-entry-media {
    aspect-ratio: 4 / 3;
  }

  .latest-card a,
  .latest-card.featured a {
    padding: 23px;
  }

  .latest-card.featured h3 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  .latest-section-action {
    justify-content: stretch;
  }

  .latest-section-action .button {
    width: 100%;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .audience-entry-media img {
    transition: none;
  }
}
