
/* Carousel */

.soma-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 1878 / 700;
  background-image: var(--bg-desktop);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.soma-banner .container {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  width: 100% !important;
  max-width: 1418px !important;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.soma-banner__content {
  max-width: 100%;
  color: #444647;
}

.soma-banner__title {
  font-size: clamp(22px, 3.2vw, 48px);
  font-weight: 500;
  margin-bottom: 12px;
  font-family: "Playfair Display", serif;
}

.soma-banner__text {
  font-size: clamp(15px, 1.5vw, 16px);
  line-height: 1.4;
  margin-bottom: 20px;
}

.soma-banner__ctas {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.soma-banner__btn {
  display: inline-block;
  padding: 15px 48px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border-radius: 14px;
}

.soma-banner__btn--primary {
  background: #a57232;
  color: #fff !important;
}

.soma-banner__btn--secondary {
  background: #a57232;
  color: #fff !important;
}

/* Mobile */
@media (max-width: 767px) {
  .soma-banner {
    aspect-ratio: 4 / 5;
    background-image: var(--bg-mobile, var(--bg-desktop));
  }

  .soma-banner .container {
    padding: 0 16px;
  }

  .soma-banner__title {
    margin-bottom: 8px;
    max-width: 70%;
  }

  .soma-banner__text {
    margin-bottom: 16px;
    max-width: 70%;
  }

  .soma-banner__ctas {
    gap: 12px;
  }

  .soma-banner__btn {
    padding: 13px 24px;
    flex: 1 1 0;
    text-align: center;
  }
}

/* END Carousel */
