
/* CONTAINER */
.cs-container {
  max-width: 1100px;
  margin: auto;
}

/* GRID */
.cs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* CARD */
.cs-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
}

/* IMAGE */
.cs-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* OVERLAY */
.cs-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  color: #fff;
  text-align: center;
  transition: all 0.3s ease;
}

/* TEXT */
.cs-overlay h3 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
}

/* HOVER EFFECT */
.cs-card:hover img {
  transform: scale(1.1);
}

.cs-card:hover .cs-overlay {
  background: rgba(0, 0, 0, 0.7);
}

/* HOVER LIFT */
.cs-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cs-grid {
    grid-template-columns: 1fr;
  }

  .cs-card img {
    height: 220px;
  }
}