/* =========================================
   HOW TO GET — Full-bleed image with left text overlay
   Mobile-first.
========================================= */

.how-to-get {
  position: relative;
  width: 100%;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.how-to-get__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  display: block;
}

.how-to-get__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 48px 24px;
  width: 100%;
}

.how-to-get__eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  line-height: 1.4;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #05ce78;
}

.how-to-get__title {
  margin: 0 0 16px;
  font-size: 26px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.how-to-get__body {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
}

.how-to-get__cta {
  text-decoration: none;
  letter-spacing: var(--letter-spacing-cta);
}

/* =========================================
   TABLET  (<= 768px already covered by mobile-first above)
   TABLET / DESKTOP  (>= 481px)
========================================= */

@media (min-width: 481px) {
  .how-to-get {
    min-height: 480px;
  }

  .how-to-get__content {
    padding: 48px 32px;
  }

  .how-to-get__title {
    font-size: 30px;
  }
}

/* =========================================
   DESKTOP  (>= 821px)
========================================= */

@media (min-width: 821px) {
  .how-to-get {
    height: 600px;
    min-height: unset;
  }

  .how-to-get__img {
    object-position: center;
  }

  .how-to-get__content {
    max-width: 520px;
    padding: 0 0 0 64px;
  }

  .how-to-get__title {
    font-size: 38px;
  }

  .how-to-get__body {
    font-size: 16px;
  }
}

/* =========================================
   LARGE DESKTOP  (>= 1200px)
========================================= */

@media (min-width: 1200px) {
  .how-to-get__content {
    padding-left: 80px;
  }

  .how-to-get__title {
    font-size: 44px;
  }
}
