/* Placeholder stylesheet to satisfy legacy references.
   Mobile overrides live in css/mobile.css. */

/* Basic defaults (kept minimal) */
html, body { min-height: 100%; }
img { max-width: 100%; height: auto; }

/* About: Location & Map section */
.location-section {
  padding: 64px 0;
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
}
.location-card .location-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: #555;
}
.location-card .location-item i {
  color: #c62828;
}
.map-embed iframe {
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.2);
}
@media (max-width: 900px) {
  .location-grid { grid-template-columns: 1fr; }
}