.cs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 1024px) {
  .cs-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .cs-grid { grid-template-columns: 1fr; }
}

.cs-item .ovr-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.cs-item img {
  width: 100%;
  height: auto;
  display: block;
}
.cs-item .overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cs-item .ovr-wrap:hover .overlay { opacity: 1; }

.cs-title {
  margin-top: 10px;
  font-size: 1.1rem;
  text-align: center;
}

.cs-loadmore-wrap {
  text-align: center;
  margin-top: 32px;
}
.cs-loadmore {
  padding: 12px 20px;
  border: 2px solid #000;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: .02em;
  border-radius: 0px;
}
.cs-loadmore:disabled { opacity: .6; cursor: not-allowed; }