/* 7315 Chauvin - the pool and tennis court get a band of their own. */
.amenity {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
  border: 1px solid var(--line);
  background: var(--surface);
}

@media (max-width: 780px) { .amenity { grid-template-columns: 1fr; } }

.amenity img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 240px; }
.amenity .copy { padding: clamp(1.75rem, 4vw, 2.75rem); align-self: center; }
.amenity h3 { font-size: clamp(1.375rem, 2.6vw, 1.75rem); margin-bottom: 1rem; }
.amenity p { color: var(--muted); max-width: 44ch; }
