/* Slider */
.sv-slide-thumb {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}
.sv-slide-title {
  text-align:center;
  margin-top:10px;
}

/* Filter Buttons */
.sv-filter-controls {
  text-align:center;
  margin-bottom:20px;
}
.filter-btn {
  margin:0 5px;
  padding:8px 15px;
  border:none;
  background:#333;
  color:#fff;
  cursor:pointer;
  border-radius:5px;
}
.filter-btn:hover { background:#555; }

/* Grid */
.sv-projects-filter-grid {
  display:flex;
  flex-wrap:wrap;
  gap:20px;
}
.sv-columns-3 .sv-project-item { width:calc(33.333% - 20px); }
.sv-columns-2 .sv-project-item { width:calc(50% - 20px); }
.sv-columns-4 .sv-project-item { width:calc(25% - 20px); }
.sv-project-thumb {
  width:100%;
  height:200px;
  background-size:cover;
  background-position:center;
  border-radius:10px;
}
.sv-project-title {
  text-align:center;
  margin-top:8px;
}
@media(max-width:768px){
  .sv-projects-filter-grid .sv-project-item { width:100%; }
}
