/* location.css — Stili specifici per location.html */

@view-transition { navigation: auto; }
::view-transition-old(root) { animation: fade-out-vt 0.2s cubic-bezier(0.4,0,1,1) both; }
::view-transition-new(root) { animation: fade-in-vt  0.3s cubic-bezier(0.16,1,0.3,1) both; }
@keyframes fade-out-vt { to { opacity: 0; } }
@keyframes fade-in-vt  { from { opacity: 0; } }

.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: var(--space-10);
}
.map-wrap iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}
.section-lead{
  text-align: justify;
}
.fullwidth-img {
  width: 100%;
  height: 40vh;
  object-fit: cover;
  border-radius: 0;
  display: block;
}
