/**
 * La Villa Hermosa — Amenities page-specific styles
 */

 #steps {
  background: var(--bg-surface);
 }

/* ================= Amenity Rows ================= */
.amenity-row {
  display: flex;
  align-items: center;
  gap: 56px;
  padding-block: 56px;
  border-bottom: 1px solid var(--border-default);
}
.amenity-row:last-child { border-bottom: 0; }
.amenity-row:nth-child(even) { flex-direction: row-reverse; }
.amenity-row__media { flex: 1 1 0; min-width: 0; }
.amenity-row__media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}
.amenity-row__text { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; gap: var(--space-5); }
@media (max-width: 900px) {
  .amenity-row, .amenity-row:nth-child(even) { flex-direction: column; gap: var(--space-6); padding-block: var(--space-8); }
  .amenity-row__media img { height: 280px; }
}
