.home-booking-steps {
  padding: 3rem 0;
  border-top: 1px solid rgba(34, 87, 122, .1);
  border-bottom: 1px solid rgba(34, 87, 122, .1);
  background: #fff;
}

.home-booking-steps__header {
  margin-bottom: 0;
}

.home-booking-steps__grid {
  display: grid;
  gap: 2rem;
  margin-top: 2.25rem;
}

.home-booking-step {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: stretch;
  padding-bottom: 2rem;
  text-align: center;
}

.home-booking-step + .home-booking-step {
  padding-top: 2rem;
  border-top: 1px solid rgba(34, 87, 122, .14);
}

.home-booking-step__visual {
  width: 100%;
  min-width: 0;
  text-align: center;
}

.home-booking-step__visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: contain;
}

.home-booking-step__keyword {
  display: block;
  margin-top: -.2rem;
  color: rgba(72, 166, 44, .82);
  font-size: clamp(2.4rem, 11vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-booking-step__copy h3 {
  margin: .7rem 0 0;
  color: #172238;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.home-booking-step__copy p {
  max-width: 370px;
  margin: .55rem auto 0;
  color: #526276;
  font-size: .9rem;
  line-height: 1.5;
}

.home-booking-steps__footer {
  display: flex;
  justify-content: center;
  margin-top: .25rem;
}

.home-booking-steps__cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: .7rem 1.25rem;
  border: 1px solid #48a62c;
  border-radius: 9px;
  background: #48a62c;
  color: #fff;
  font-size: .82rem;
  font-weight: 900;
  line-height: 1.15;
  text-decoration: none;
  text-transform: uppercase;
}

.home-booking-steps__cta i {
  font-size: 1rem;
  line-height: 1;
  transition: transform 160ms ease;
}

.home-booking-steps__cta:hover,
.home-booking-steps__cta:focus {
  background: #22577a;
  border-color: #22577a;
  color: #fff;
  text-decoration: none;
}

.home-booking-steps__cta:hover i,
.home-booking-steps__cta:focus i {
  transform: translateX(3px);
}

@media (max-width: 575.98px) {
  .home-booking-steps {
    padding: 2.5rem 0;
  }

  .home-booking-steps__grid {
    margin-right: -1rem;
    margin-left: -1rem;
  }

  .home-booking-step {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .home-booking-steps__cta {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .home-booking-steps {
    padding: 4rem 0;
  }

  .home-booking-steps__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 2.75rem;
  }

  .home-booking-step {
    min-height: 100%;
    padding: 0 2rem 1.25rem;
  }

  .home-booking-step + .home-booking-step {
    padding-top: 0;
    border-top: 0;
    border-left: 1px solid rgba(34, 87, 122, .16);
  }

  .home-booking-step__visual img {
    max-height: 220px;
  }

  .home-booking-step__keyword {
    font-size: clamp(2.8rem, 3.8vw, 3.75rem);
  }

  .home-booking-step__copy {
    padding: 0 .25rem;
  }

  .home-booking-steps__footer {
    margin-top: 1.5rem;
  }
}
