/* 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;
  }
}
