.cps-completed-projects-section,
.cps-completed-projects-section * {
  box-sizing: border-box;
}
.cps-completed-projects-section {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 45px 15px 80px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.cps-projects-main-title {
  text-align: center;
  font-size: 38px;
  font-weight: 400;
  color: #000;
  margin: 0 0 35px;
  line-height: 1.25;
}
.cps-slider {
  width: 100%;
  position: relative;
  padding-bottom: 45px;
}
.cps-slider-viewport {
  width: 100%;
  overflow: hidden;
}
.cps-slider-track {
  display: flex;
  width: 100%;
  transition: transform .7s ease;
  will-change: transform;
}
.cps-slide {
  width: 100%;
  min-width: 100%;
  flex: 0 0 100%;
  margin: 0;
}
.cps-project-slide-layout {
  display: grid;
  grid-template-columns: minmax(0, 60%) minmax(0, 40%);
  align-items: center;
  gap: 85px;
}
.cps-project-gallery { width: 100%; min-width:0; }
.cps-project-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}
.cps-project-thumbs img,
.cps-project-main-image img {
  width: 100%;
  display: block;
  object-fit: cover;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}
.cps-project-thumbs img { height: 205px; }
.cps-project-main-image img { height: 660px; }
.cps-project-content { max-width: 470px; min-width:0; }
.cps-project-category {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.4;
}
.cps-project-desc {
  font-size: 14px;
  line-height: 1.75;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  margin-bottom: 75px;
}
.cps-project-desc p { margin: 0 0 12px; }
.cps-project-title {
  font-size: 48px;
  line-height: 1.28;
  font-weight: 400;
  color: #000;
  margin: 0;
}
.cps-nav {
  position: absolute;
  top: calc(50% - 25px);
  z-index: 5;
  width: 42px;
  height: 42px;
  border: 0;
  background: rgba(255,255,255,.85);
  color: #000;
  font-size: 25px;
  line-height: 42px;
  padding: 0;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(0,0,0,.08);
}
.cps-prev { left: 12px; }
.cps-next { right: 12px; }
.cps-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.cps-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: #000;
  opacity: .25;
  padding: 0;
  cursor: pointer;
}
.cps-dot.cps-active { opacity: 1; }
.cps-empty-image {
  min-height: 140px;
  background: #f1f1f1;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#777;
  font-size:13px;
}
.cps-no-project { text-align:center; }
@media (max-width: 1024px) {
  .cps-project-slide-layout { grid-template-columns: 1fr; gap: 35px; }
  .cps-project-content { max-width: 100%; }
  .cps-project-main-image img { height: 520px; }
  .cps-project-title { font-size: 38px; }
}
@media (max-width: 767px) {
  .cps-completed-projects-section { padding: 30px 12px 60px; }
  .cps-projects-main-title { font-size: 28px; margin-bottom: 22px; }
  .cps-project-thumbs { gap: 6px; }
  .cps-project-thumbs img { height: 105px; }
  .cps-project-main-image img { height: 360px; }
  .cps-project-category { font-size: 12px; margin-bottom: 18px; }
  .cps-project-desc { font-size: 12px; line-height: 1.6; margin-bottom: 30px; }
  .cps-project-title { font-size: 30px; }
  .cps-nav { display: none; }
}
