.elementor-1613 .elementor-element.elementor-element-254e96d{--display:flex;}/* Start custom CSS for html, class: .elementor-element-b163ec3 *//* ======= Sezione principale ======= */
.iscrizioni-section {
  background: #FFFCEF;
  text-align: center;
  padding: 40px 30px;
  font-family: "Poppins", sans-serif;
}

/* Intro */
.intro h2 {
  color: #3B4119;
  font-size: 34px;
  margin-bottom: 10px;
}

.intro p {
  color: #666;
  font-size: 19px;
}

.intro span {
  color: #E4405F;
  font-weight: 700;
}

/* ======= Griglia fluida ======= */
.iscrizioni-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  justify-items: center;
  max-width: 1200px;
  margin: 40px auto 0;
}

/* ======= Card ======= */
.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-decoration: none;
  color: #333;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  padding-bottom: 20px;
  width: 100%;
  max-width: 300px;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Immagine */
.card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-bottom: 3px solid rgba(0, 0, 0, 0.05);
}

/* Testo */
.card h3 {
  font-size: 1.3rem;
  color: #222;
  margin: 15px 0 5px;
}

.card p {
  font-size: 0.95rem;
  color: #444;
  margin: 3px 0;
}
/* Riduce leggermente la dimensione dell’indirizzo in tutte le card */
.card p:nth-of-type(1) {
  font-size: 0.85rem;
}
/* Bottone */
.btn-cta {
  background: #E4405F;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 600;
  margin-top: 10px;
  cursor: pointer;
  transition: filter 0.2s ease;
}

.btn-cta:hover {
  filter: brightness(0.9);
  
}

/* ======= Colori di sfondo card ======= */
.card-pescara   { background: rgb(255, 243, 224); }  /* avorio caldo */
.card-altino    { background: rgb(232, 245, 233); }  /* verde chiaro */
.card-santomero { background: rgb(227, 242, 253); }  /* azzurro polvere */
.card-cnr       { background: rgb(243, 229, 245); }  /* lilla chiaro */


/* ======= Gruppo pulsanti ======= */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

/* ======= Pulsante principale (esistente) ======= */
.btn-cta {
  background: #E4405F;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 600;
  cursor: pointer;
  transition: filter 0.2s ease;
  text-decoration: none;
  min-width: 140px;
  flex: 1 1 40%;
  max-width: 220px;
}

.btn-cta:hover {
  filter: brightness(0.9);
}

/* ======= Nuovo pulsante “Programma” ======= */
.btn-programma {
  background: #3B4119;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  min-width: 140px;
  flex: 1 1 40%;
  max-width: 220px;
}

.btn-programma:hover {
  background: #4b5320;
  filter: brightness(1.1);
}

/* ======= Layout mobile (stack verticale) ======= */
@media (max-width: 600px) {
  .btn-group {
    flex-direction: column;
    align-items: center;
  }

  .btn-cta, .btn-programma {
    width: 85%;
    max-width: 250px;
  }
}/* End custom CSS */