.kkv-wrap {
  max-width: 1320px;
  margin: 0 auto;
 padding-bottom:30px; */
}
.kkv-title {
 

}
.kkv-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 980px) {
  .kkv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .kkv-grid {
    grid-template-columns: 1fr;
  }
}
.kkv-item {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(10, 12, 16, 0.7);
  border: 1px solid rgba(0, 119, 145, 0.25);
  box-shadow: 0 0 30px rgba(0, 119, 145, 0.12);
  backdrop-filter: blur(6px);
}
.kkv-caption {
  padding: 10px 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}
.kkv-embed {
  position: relative;
  width: 100%;
  background: #000;
}
.kkv-ratio-16x9 {
  aspect-ratio: 16/9;
}
.kkv-ratio-9x16 {
  aspect-ratio: 9/16;
}
.kkv-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.kkv-empty {
  color: rgba(255, 255, 255, 0.7);
}

.kkv-thumb {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.kkv-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kkv-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 0;
  background: rgba(0, 119, 145, 0.85);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.kkv-thumb:hover .kkv-play {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Shorts grid: more columns (smaller cards) */
.kkv-section--short .kkv-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 980px) {
  .kkv-section--short .kkv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .kkv-section--short .kkv-grid {
    grid-template-columns: 1fr;
  }
}

/* Landscape grid: fewer columns (bigger cards) */
.kkv-section--landscape .kkv-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 980px) {
  .kkv-section--landscape .kkv-grid {
    grid-template-columns: 1fr;
  }
}

/* Single landscape video full width */
.kkv-section--landscape .kkv-grid-single {
  grid-template-columns: 1fr;
}
