/* Maps section styles */
/* Base section styling (.content-section) in base.css */
/* Container mappa 4:3 responsive */
.maps-container {
  position: relative;
  width: 100%;
  max-width: 1200px; /* opzionale */
  margin: 0 auto;
  padding-bottom: 75%; /* 4:3 */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.maps-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Bottone "Apri in Google Maps" */
.maps-actions {
  text-align: center;
  margin-top: 1rem;
}

.maps-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: transparent;
  color: var(--accent-color);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.3s ease;
  font-size: 1.5rem;
}

.maps-link:hover {
  background: var(--accent-hover);
  color: #fff;
}