/* Hero map (taller than homepage) */
.evgi-travel-map-container--hero {
  height: 650px;
}

@media (max-width: 640px) {
  .evgi-travel-map-container--hero {
    height: 380px;
  }
}

/* Filter form */
.evgi-travel-map-filters {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  flex-wrap: wrap;
  padding: 16px;
  background: #F0E3DE;
  border-radius: 8px;
}

.evgi-filter-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 200px;
  flex: 1;
}

.evgi-filter-label {
  font-size: 13px;
  font-weight: 600;
  color: #1d2327;
}

.evgi-filter-select {
  padding: 8px 10px;
  border: 1px solid #c3c4c7;
  border-radius: 4px;
  background: #ffffff;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
}

.evgi-filter-select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.evgi-filter-reset {
  white-space: nowrap;
}

/* Place cards */
.evgi-place-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  background: #ffffff;
  border: 1px solid #f0e3de;
  border-radius: 6px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
}

.evgi-place-card:hover {
  border-color: #C08080;
  box-shadow: 0 2px 8px rgba(192, 128, 128, 0.12);
}

.evgi-place-card__pin-btn {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  font-size: 16px;
  transition: background-color 0.15s ease;
}

.evgi-place-card__pin-btn:hover {
  background: #F0E3DE;
}

.evgi-place-card__body {
  flex: 1;
  min-width: 0;
}

.evgi-place-card__name {
  font-weight: 700;
  color: #1d2327;
  margin-bottom: 2px;
  font-size: 14px;
}

.evgi-place-card__meta {
  font-size: 12px;
  color: #646970;
  margin-bottom: 4px;
}

.evgi-place-card__category {
  text-transform: capitalize;
}

.evgi-place-card__source {
  font-size: 12px;
  color: #646970;
}
