  .kece-tv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .kece-tv-card {
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    text-decoration: none;
    display: block;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
  }

  .kece-tv-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
  }

  .kece-tv-card .thumb {
    position: relative;
    display: block;
    height: 170px;
    background: #000;
  }

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

  .kece-tv-card .durasi {
    position: absolute;
    right: 8px;
    bottom: 8px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 12px;
    padding: 2px 7px;
    border-radius: 4px;
  }

  .kece-tv-card .body {
    padding: 14px 16px;
  }

  .kece-tv-card h5 {
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.4;
    color: inherit;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .kece-tv-card .meta {
    font-size: 13px;
    color: #888;
  }

  @media (max-width: 991px) {
    .kece-tv-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 575px) {
    .kece-tv-grid {
      grid-template-columns: 1fr;
    }
  }

/* Judul + filter kategori (ditambahkan 2026-08-18) */
.content-area .kece-tv-title {
  font-size: 26px;
  font-weight: 700;
  color: #0b4d70;
  margin: 0 0 6px;
}
.content-area .kece-tv-filter {
  margin: 0 0 18px;
  font-size: 14px;
  color: #6b7280;
}
.content-area .kece-tv-filter a {
  color: #0b4d70;
  text-decoration: none;
}
.content-area .kece-tv-filter a:hover { text-decoration: underline; }
.widget_categories li.current-cat > a { font-weight: 700; color: #0b4d70; }

/* Kategori sebagai chip/label ringkas (2026-08-18) */
.kece-cat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.kece-cat-chips .kece-cat-chip {
  display: inline-block;
  padding: 3px 10px;
  font-size: 12px;
  line-height: 1.5;
  color: #374151;
  background: #f1f5f7;
  border: 1px solid #e2e8ec;
  border-radius: 999px;
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
}
.kece-cat-chips .kece-cat-chip:hover {
  background: #e2edf2;
  color: #0b4d70;
}
.kece-cat-chips .kece-cat-chip.active {
  background: #0b4d70;
  border-color: #0b4d70;
  color: #fff;
  font-weight: 600;
}
