.about-cta {
  background: #fffcf4;
}
.about-cta__wrapper {
  display: flex;
  align-items: center;
  border-radius: 30px;
  padding: 60px;
  overflow: hidden;
  position: relative;
  background: #f5ede2;
}
.about-cta__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
}
.about-cta__wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #f5ede2 0%, rgba(245, 237, 226, 0.00) 100%);
  z-index: 1;
}
.about-cta__left {
  flex: 1;
  position: relative;
  z-index: 2;
  max-width: 580px;
}
.about-cta__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── TABLET (≤ 991px) ── */
@media only screen and (max-width: 991px) {
  .about-cta__wrapper {
    padding: 40px 30px;
  }
  .about-cta__wrapper::before {
    background: rgba(245, 237, 226, 0.88);
  }
}

/* ── MOBILE (≤ 575px) ── */
@media only screen and (max-width: 575px) {
  .about-cta__buttons a {
    justify-content: center;
  }
  .about-cta__wrapper {
    padding: 28px 20px;
    border-radius: 16px;
  }
  .about-cta__buttons {
    flex-direction: column;
  }
  .about-cta__buttons a {
    text-align: center;
  }
}
