/* TermasCatillo V2.3.1.1 — Corrección responsive de mapa */
.location-grid {
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, .65fr);
  gap: 24px;
  align-items: stretch;
}

.map-card {
  width: 100%;
  min-width: 0;
  min-height: 0;
  height: 440px;
  aspect-ratio: auto;
  border-radius: 24px;
}

.map-card iframe,
.map-placeholder {
  width: 100%;
  height: 100%;
}

.route-card {
  min-width: 0;
  height: 440px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(7,46,99,.08);
}

.route-card h3 {
  font-size: 29px;
  margin-bottom: 18px;
}

.route-card dl {
  margin-bottom: 20px;
}

.route-card dl div {
  gap: 14px;
  padding: 11px 0;
}

.route-card .btn-block {
  margin-top: auto;
}

.route-card .fine-print {
  font-size: 12px;
  line-height: 1.45;
  margin-top: 14px;
}

@media (max-width: 1050px) {
  .location-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(275px, .7fr);
    gap: 18px;
  }

  .map-card,
  .route-card {
    height: 410px;
  }

  .route-card {
    padding: 26px 24px;
  }

  .route-card h3 {
    font-size: 26px;
  }
}

@media (max-width: 820px) {
  .location-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .map-card {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .route-card {
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 30px;
  }

  .route-card .btn-block {
    margin-top: 6px;
  }
}

@media (max-width: 560px) {
  .map-card {
    aspect-ratio: 4 / 3;
    border-radius: 18px;
  }

  .route-card {
    padding: 25px 22px;
    border-radius: 18px;
  }

  .route-card h3 {
    font-size: 28px;
  }
}
