.cta {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.cta__inner {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  padding: 4rem 3.5rem;
  color: #fffdf9;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  min-height: 28rem;
}
@media (min-width: 768px) {
  .cta__inner {
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    padding: 5rem 4rem;
  }
}
@media (min-width: 1024px) {
  .cta__inner {
    padding: 6rem 5rem;
  }
}
.cta__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 32rem;
}
.cta__logo {
  display: block;
  width: 11rem;
  height: auto;
  margin-bottom: 3rem;
  filter: brightness(0) invert(1);
}
.cta__text {
  font-family: "Onest", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #fffdf9;
  margin-bottom: 2.5rem;
}
.cta__text p {
  margin: 0 0 1.5rem;
}
.cta__text p:last-child {
  margin-bottom: 0;
}
.cta__text strong {
  font-weight: 700;
}
.cta__btn.btn {
  width: auto;
  min-width: 14rem;
  height: 3.25rem;
  padding-inline: 1.75rem;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 999px;
  text-decoration: none;
}
.cta__media {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta__image {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.btn--burgundy {
  background-color: #8a2536;
  color: #fff;
  border: none;
}
.btn--burgundy:hover, .btn--burgundy:focus-visible {
  background-color: #a02a40;
  box-shadow: 0 10px 24px rgba(138, 37, 54, 0.35);
  outline: none;
}
.btn--burgundy:active {
  transform: translateY(1px);
  box-shadow: none;
}