/* Mappa - stile personalizzato */
.map-section {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-section h3 {
  color: #FF6B00;
  margin-bottom: 1.2rem;
  text-align: center;
}

/* Mappa - dimensioni aumentate */
/* Mappa - larghezza massima */
/* Mappa - ampia ma con margini coerenti al container */
/* Mappa - occupa tutta la larghezza del container */
.map-embed {
  width: 1130px;
  max-width: 100%;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 6px 32px 0 rgba(0,0,0,0.25), 0 0 0 2px #FF6B00;
  background: #111;
  margin: 0 auto;
  animation: fadeInUp 1s;
}

.map-embed iframe {
  width: 100%;
  height: 520px;
  border: none;
  display: block;
  background: #111;
}

@media (max-width: 900px) {
  .map-embed {
    max-width: 98vw;
  }
  .map-embed iframe {
    height: 320px;
  }
}

@media (max-width: 600px) {
  .map-section {
    margin-top: 1.2rem;
  }
  .map-embed {
    width: 100%;
    max-width: none;
    border-radius: 10px;
    box-sizing: border-box;
    padding-left: 6px;
    padding-right: 6px;
  }
  .map-embed iframe {
    width: 100%;
    height: 220px;
    min-height: 120px;
    box-sizing: border-box;
  }
}
/* Come Raggiungere l'Evento - Styles */
.section-how-to-get-there {
  background: #000 !important;
  color: #fff;
  padding: 64px 0 48px 0;
  position: relative;
  z-index: 1;
}

.section-how-to-get-there h2 {
  text-align: center;
  font-size: 2.4em;
  margin-bottom: 2.5rem;
  color: #FF6B00;
  text-shadow: 0 0 18px rgba(0,0,0,0.25);
}

.how-to-content {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.how-to-card {
  background: #111;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.13);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 300px;
  margin: 0 0.5rem 2rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.how-to-card h3 {
  font-size: 1.3em;
  margin-bottom: 1rem;
  color: #FF6B00;
}

.how-to-card ul {
  margin: 0.5em 0 0.5em 1.2em;
  padding: 0;
  list-style: disc;
}

.how-to-card a {
  color: #FF6B00;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .how-to-content {
    gap: 1.2rem;
  }
  .how-to-card {
    min-width: 220px;
    max-width: 100%;
    padding: 1.2rem 1rem 1rem 1rem;
  }
}

@media (max-width: 600px) {
  .section-how-to-get-there {
    padding: 36px 0 24px 0;
  }
  .how-to-content {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
  .how-to-card {
    width: 98%;
    min-width: unset;
    max-width: 420px;
    margin: 0 0 1.2rem 0;
    align-items: flex-start;
  }
  .section-how-to-get-there h2 {
    font-size: 1.5em;
    margin-bottom: 1.2rem;
  }
  .how-to-card h3 {
    font-size: 1.1em;
  }
}
