/* =========================
   CARDS
========================= */

.infos-card {
  text-align: center;
}

.infos-list {
  margin: var(--space-m);
}

.infos-list li {
  min-height: auto;
}

/* =========================
   TARIFS
========================= */
.tarif-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-l);
}

.tarif {
  padding: var(--space-l);
  text-align: center;

  border-radius: 12px;

  box-shadow: var(--shadow-soft);
}

.tarif p {
  font-size: smaller;
}

/* =========================
   MAP
========================= */

.map-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
}

#map {
  max-width: 60%;
  height: 520px;

  border: none;

  border-radius: 28px;

  box-shadow: 0 10px 20px var(--shadow);
}

/* =========================
   BANDEAUX
========================= */
.bandeaux {
  margin-top: var(--space-m);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {
  .map-wrapper {
    position: static;
  }
  #map {
    max-width: 100%;
    height: 380px;
  }
}
