.article-callout {
  color: rgb(34, 34, 34);
  background: rgba(var(--color-background));
}

.article-callout__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.article-callout .article-callout__heading {
  margin: 0 0 14px;
  color: #173824;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.15;
}

.article-callout .article-callout__copy {
  margin: 0 0 26px;
  color: #3d4c42;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.75;
}

.article-callout__cta {
  display: inline-block;
  padding: 17px 32px;
  border-radius: 999px;
  background: #214e34;
  color: #f7f4ec;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-callout__cta:hover,
.article-callout__cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(23, 56, 36, 0.18);
}

@media (prefers-reduced-motion: reduce) {
  .article-callout__cta {
    transition: none;
  }
  .article-callout__cta:hover,
  .article-callout__cta:focus-visible {
    transform: none;
  }
}
