.amenities-showcase {
  background: #ffffff;
  padding: 48px 16px 64px;
}

.amenities-showcase__wrap {
  max-width: 760px;
  margin: 0 auto;
}

.amenities-showcase__title {
  margin: 0;
  text-align: center;
  color: #000000;
  text-transform: uppercase;
  font: 500 clamp(2rem, 3vw, 3rem)/1.1 "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.amenities-showcase__title::after {
  content: "";
  display: block;
  width: 150px;
  height: 2px;
  margin: 14px auto 0;
  background: #d7a548;
}

.amenities-showcase__grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px 18px;
}

.amenity-card {
  margin: 0;
  background: #675d4e;
  overflow: hidden;
}

.amenity-card img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  display: block;
}

.amenity-card h2 {
  margin: 0;
  padding: 9px 10px 11px;
  color: #ffffff;
  text-align: center;
  font: 700 1rem/1.15 "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

@media (max-width: 900px) {
  .amenities-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .amenities-showcase {
    padding: 38px 12px 48px;
  }

  .amenities-showcase__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .amenity-card h2 {
    font-size: 0.95rem;
  }
}
