.banner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 8px;
  border: 1px solid rgba(79, 103, 89, 0.24);
  background-color: #EAFAF1;
  background-size: 353px auto;
  background-repeat: no-repeat;
  background-position: 640px center;
  color: #1D2937;
  padding: 24px;
}
@media (min-width: 992px) {
  .banner {
    background-position: 852px center;
  }
}
@media (min-width: 1200px) {
  .banner {
    padding: 32px;
  }
}
.banner-heading {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  margin: 0;
}
@media (min-width: 768px) {
  .banner-heading {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .banner-heading {
    font-size: 24px;
  }
}
.banner-copy {
  font-size: 16px;
  line-height: 1.5;
  max-width: 811px;
  margin: 0;
  color: #314052;
}
@media (min-width: 1200px) {
  .banner-copy {
    font-size: 18px;
  }
}
.banner.no-image {
  background-image: none;
  background-size: 0;
}
.banner.no-image .banner-copy {
  max-width: 100%;
}
.banner-cta {
  display: flex;
  padding: 10px 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 8px;
  border-radius: 999px;
  background: #2ECC71;
  color: #202A32;
}
.banner-cta:hover {
  color: #202A32;
  text-decoration: none;
  opacity: 0.9;
}
@media (min-width: 768px) {
  .banner-cta {
    width: fit-content;
  }
}