.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.destination-card {
  position: relative;
  background-color: var(--ui-bg);
  color: var(--ui-text);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.destination-card:hover {
  transform: translateY(-5px);
}

.card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.country-outline-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 80px;
  height: 80px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.country-outline-overlay img {
  max-width: 60%;
  max-height: 60%;
  filter: invert(1);
}

.destination-name {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background-color: rgba(0,0,0,0.6);
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: bold;
}

.container h2 {
  font-size: 1.75rem;
  margin-top: 2rem;
  border-bottom: 2px solid var(--ui-border);
  padding-bottom: 0.5rem;
  color: var(--ui-text-muted);
}
