@charset "UTF-8";
/**
 * Country detail page (/country/<id>/<slug>/).
 *
 * Auto-enqueued via skydb_enqueue_per_page_assets() through the entity
 * map (`country` → `data-country`). Layout-only; typography sticks to
 * the Bootstrap heading scale + the global body-text default (memories:
 * feedback_no_heading_typography_overrides + feedback_no_body_typography_overrides).
 */
.skydb-country__cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1rem;
}
.skydb-country__city {
  position: relative;
  display: block;
  aspect-ratio: 16/9;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background-color: var(--bs-primary);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.skydb-country__city:hover, .skydb-country__city:focus {
  text-decoration: none;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}
.skydb-country__city-pano {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.35s ease;
}
.skydb-country__city-pano.is-blank {
  background: linear-gradient(135deg, var(--bs-primary), color-mix(in srgb, var(--bs-primary) 70%, #000));
}
.skydb-country__city:hover .skydb-country__city-pano {
  transform: scale(1.03);
}
.skydb-country__city-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 45%, rgba(0, 0, 0, 0.7) 100%);
}
.skydb-country__city-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.skydb-country__city-name {
  font-weight: 600;
  letter-spacing: -0.005em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
.skydb-country__city-stats {
  opacity: 0.92;
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.85em;
}
.skydb-country__city-stats .unit {
  opacity: 0.75;
}
.skydb-country__city-stats .sep {
  opacity: 0.55;
}

/*# sourceMappingURL=data-country.css.map */
