/* Locations Page Styles */
.locations-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  font-family: 'Cardo', serif;
}

.locations-header {
  text-align: center;
  margin-bottom: 3rem;
}

.page-title {
  margin-bottom: 1rem;
  color: #333;
  font-size: 2.2rem;
}

.intro-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .location-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .page-title {
    font-size: 1.8rem;
  }
}
