.home-airport-meet-greet {
  background: #D2ECFF;
  color: #615D6C;
  font-family: "Century Gothic Paneuropean", sans-serif;
  padding-top: 10px !important;
}
.home-airport-meet-greet__card {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  padding: 42px 56px;
  border-radius: 24px;
  background: #fff;
}
.home-airport-meet-greet__icon {
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  border-radius: 50%;
  background: #1D2A3B;
}
.home-airport-meet-greet__icon svg {
  width: 52px;
  height: 52px;
  fill: #ACEDFF;
}
.home-airport-meet-greet__eyebrow {
  margin: 0 0 10px;
  color: #615D6C;
  font-size: 15px;
  font-weight: 700;
}
.home-airport-meet-greet__content h2 {
  margin: 0 0 10px;
  color: #1D2A3B;
  font-family: "Century Gothic Paneuropean", sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.14;
}
.home-airport-meet-greet__text {
  max-width: 680px;
  color: #615D6C;
  font-size: 16px;
  line-height: 1.6;
}
.home-airport-meet-greet__link {
  min-width: 250px;
  justify-content: center;
  white-space: nowrap;
}
@media (max-width: 991.98px) {
  .home-airport-meet-greet__card {
    grid-template-columns: 88px minmax(0, 1fr);
    padding: 32px;
  }
  .home-airport-meet-greet__icon {
    width: 80px;
    height: 80px;
  }
  .home-airport-meet-greet__icon svg {
    width: 44px;
    height: 44px;
  }
  .home-airport-meet-greet__link {
    grid-column: 2;
    justify-self: start;
  }
}
@media (max-width: 575.98px) {
  .home-airport-meet-greet__card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 24px;
  }
  .home-airport-meet-greet__link {
    grid-column: auto;
    width: 100%;
  }
}