.hkml-side {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hkml-filters {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #eee;
}

.hkml-filters input {
  flex: 1;
  padding: 0.35rem 0.5rem;
  font-size: 13px;
}


.hkml-wrapper {
  display: flex;
  gap: 1rem;
  height: 80vh;
  max-height: 900px;
}

/* Liste */
.hkml-list {
  flex: 1;
  overflow-y: auto;
}

.hkml-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}

.hkml-item:hover {
  background: #f7f7f7;
}

.hkml-item-image {
  width: 90px;
  min-width: 90px;
  height: 70px;
  overflow: hidden;
  border-radius: 6px;
  background: #ddd;
}

.hkml-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hkml-item-content h3 {
  margin: 0 0 0.25rem;
  font-size: 14px;
}

.hkml-item-city {
  margin: 0 0 0.25rem;
  font-size: 12px;
  color: #555;
}

.hkml-item-desc {
  margin: 0 0 0.35rem;
  font-size: 12px;
  color: #666;
}

.hkml-item-content a {
  font-size: 12px;
  color: #0073aa;
  text-decoration: none;
}

.hkml-item-content a:hover {
  text-decoration: underline;
}

/* Carte */
.hkml-map {
  flex: 2;
}

/* Popup Leaflet */
.hkml-popup img {
  width: 100%;
  max-height: 150px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 6px;
}

.hkml-popup h3 {
  margin: 0 0 4px;
  font-size: 14px;
}

.hkml-popup-city {
  margin: 0 0 4px;
  font-size: 12px;
  color: #555;
}

.hkml-popup-desc {
  margin: 0 0 6px;
  font-size: 12px;
  color: #666;
}

.hkml-popup a {
  font-size: 12px;
  color: #0073aa;
  text-decoration: none;
}

.hkml-popup a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .hkml-wrapper {
    flex-direction: column;
  }
  .hkml-map {
    height: 50vh;
  }
}
