.home-cta-wrapper {
  padding: 60px 55px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}
.home-cta-wrapper__bg {
  position: absolute;
  top: -10%;
  left: 0;
  right: 0;
  height: 120%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
}
.cta-list {
  padding-bottom: clamp(120px, 14.5833333333vw, 280px);
}
.cta-list {
  display: grid;
  width: max-content;
  grid-template-columns: auto auto;
  gap: 12px;
}
.cta-list li {
  color: #1a3046;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  width: max-content;
  text-align: center;
  line-height: 20px;
  display: inline-block;
  padding: 11px 16px;
  border-radius: 33554400px;
  background: #fefce0;
  box-shadow:
    0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px -1px rgba(0, 0, 0, 0.1);
}
.home-cta-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}

.home-cta-content__left {
  max-width: 695px;
}
.home-cta-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}
.home-cta-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  z-index: 3;
  top: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(0deg, rgba(51, 35, 0, 0.53) 0%, rgba(51, 35, 0, 0) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
}
.home-cta-wrapper > * {
  position: relative;
  z-index: 3;
}
.home-cta-wrapper__bg {
  position: absolute;
  z-index: 0;
}
.home-cta-content__right img {
  max-width: 124px;
  margin-right: 0;
  margin-left: auto;
}

/* ── TABLET (≤ 991px) ── */
@media only screen and (max-width: 991px) {
  .home-cta-wrapper {
    padding: 40px 30px;
  }
  .home-cta-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .cta-list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 8px;
    padding-bottom: clamp(120px, 14.5833333333vw, 280px);
  }
  .cta-list li {
    width: auto;
    font-size: 13px;
    padding: 9px 14px;
  }
  .home-cta-content__right img {
    margin-left: 0;
  }
  .home-cta-content__right a {
    display: none;
  }
}

/* ── MOBILE (≤ 575px) ── */
@media only screen and (max-width: 575px) {
  .home-cta-wrapper {
    padding: 30px 20px;
    border-radius: 20px;
  }
  .cta-list {
    gap: 6px;
  }
  .cta-list li {
    font-size: 12px;
    padding: 8px 12px;
  }
}
