.sepal-cta-band {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  background: #f5c842;
  padding: 80px 88px;
}
.sepal-cta-band *,
.sepal-cta-band *::before,
.sepal-cta-band *::after { box-sizing: border-box; }
.sepal-cta-band__text { min-width: 0; }
.sepal-cta-band__title {
  margin: 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 200;
  color: #0a1e1b;
  line-height: 1.1;
}
.sepal-cta-band__title em { font-style: italic; }
.sepal-cta-band__sub {
  margin: 12px 0 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(10,30,27,.6);
}
.sepal-cta-band__actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}
.sepal-cta-band__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #f5c842;
  background: #0a1e1b;
  padding: 14px 36px;
  text-decoration: none;
  border: 1px solid #0a1e1b;
  transition: all .25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
}
.sepal-cta-band__button:hover,
.sepal-cta-band__button:focus {
  background: transparent;
  color: #0a1e1b;
  border-color: #0a1e1b;
  text-decoration: none;
}
@media (max-width: 1100px) {
  .sepal-cta-band {
    padding: 60px 40px;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 640px) {
  .sepal-cta-band {
    padding: 48px 24px;
  }
  .sepal-cta-band__actions,
  .sepal-cta-band__button {
    width: 100%;
  }
}
