/* ===============================
   AIRPORTS 
================================ */

.airports {
  font-family: 'Poppins', sans-serif;
  line-height: 1.7;
}

/* ================= HERO ================= */

.airports__hero {
  background: linear-gradient(135deg, #ff8a00, #ffb347);
  color: #fff;
  padding: 90px 20px;
  text-align: center;
}

.airports__hero .section__title {
  font-size: 2.6rem;
  max-width: 900px;
  margin: 0 auto 20px;
  font-weight: 700;
}

.airports__hero p {
  max-width: 850px;
  margin: auto;
  font-size: 1.15rem;
  opacity: 0.95;
}

/* ================= SEARCH ================= */

.airports__search {
  padding-top: 40px;
  padding-bottom: 20px;
}

.airports__input {
  width: 100%;
  max-width: 520px;
  padding: 16px 24px;
  font-size: 1rem;
  border-radius: 40px;
  border: 1px solid #ddd;
  outline: none;
  transition: box-shadow 0.2s ease, border 0.2s ease;
}

.airports__input:focus {
  border-color: #ff8a00;
  box-shadow: 0 0 0 4px rgba(255, 138, 0, 0.15);
}

/* ================= GRID ================= */

.airports__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

/* ================= CARD ================= */

.airport__card {
  background-color: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}

.airport__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

/* IMAGE */

.airport__card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

/* CONTENT */

.airport__content {
  padding: 26px 26px 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.airport__content h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  line-height: 1.3;
}

.airport__content p {
  font-size: 0.98rem;
  margin-bottom: 22px;
  color: #333;
}

/* CTA */

.airport__content .booking__button {
  margin-top: auto;
  align-self: flex-start;
  padding: 12px 32px;
  font-size: 1rem;
  border-radius: 30px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

  .airports__hero {
    padding: 70px 20px;
  }

  .airports__hero .section__title {
    font-size: 2.1rem;
  }

  .airports__grid {
    gap: 24px;
  }

  .airport__card img {
    height: 170px;
  }
}
