.cities-content {
  padding-bottom: 6rem;
}

/* Cities Grid */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

/* City Card */
.city-card-2 {
  width: 100%;
  height: 210px;
  position: relative;
  transition: all 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  display: block;
  text-decoration: none;
  padding: 0;
  color: #fff;
  .gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  border-radius: 1rem;
  pointer-events: none;
}

.city-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  color: white;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.5rem;
  z-index: 10;
}

.city-info {
  display: flex;
  flex-direction: column;

  span {
    font-size: 0.875rem;
    font-weight: 600;
  }

  h3 {
    font-weight: 800;
    font-size: 30px;
    color: #fff;
                line-height: 38px;
            margin-bottom: 6px;
  }
}

.arrow-icon {
  width: 2rem;
  height: 2rem;
  color: white;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.city-image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.city-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  transition: transform 0.5s, filter 0.5s;
}
.arrow-icon i {
  font-size: 1.125rem;
}
}

.city-card-2:hover .city-image {
  transform: scale(1.05);
  filter: blur(2px);
}


.city-card-2:hover .arrow-icon {
transform:translateX(2px);
}
