/* ================================
   Videos Page Styles
=================================*/
.videos-page .header {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.videos-page .title {
  margin-right: auto;
}
.videos-page .filter .select {
  display: inline-block;
  padding: 10px 14px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  min-width: 220px;
}

/* Grid layout: 1col mobile, 2col tablet, 3col desktop */
.videos-page .grid {
  display: grid;
  gap: 22px;
  margin-top: 10px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 700px) {
  .videos-page .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .videos-page .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.videos-page .card {
  background: #fff;
  border: 1px solid #e6e8eb;
  border-radius: 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.videos-page .ratio-16x9 {
  position: relative;
  padding-top: 56.25%;
}
.videos-page .ratio-16x9 iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.videos-page .body {
  padding: 14px 16px 16px;
}
.videos-page .card-title {
  font-size: 1.06rem;
  line-height: 1.45;
  margin: 0 0 10px;
}
.videos-page .meta {
  display: flex;
  gap: 16px;
  align-items: center;
  color: #6b7280;
  font-size: 0.925rem;
}
.videos-page .meta .item {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.videos-page .pagination {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}
.kh-title {
  font-family: 'Battambang', sans-serif;
}
