/* ── Category Filter Bar ── */
.vh-categories {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem 0;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}
.vh-cat-pill {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    color: #374151;
    background: #f3f4f6;
    border-radius: 100px;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}
.vh-cat-pill:hover { background: #e5e7eb; color: #111827; }
.vh-cat-pill.active { background: #111827; color: #fff; }

/* ── Featured Video ── */
.vh-featured {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem 0;
}
.vh-featured-link {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    text-decoration: none;
    color: inherit;
    align-items: center;
}
.vh-featured-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: #f3f4f6;
}
.vh-featured-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}
.vh-featured-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: rgba(0,0,0,0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.vh-featured-link:hover .vh-featured-play { background: rgba(1,161,115,0.9); }
.vh-featured-play::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent #fff;
    margin-left: 3px;
}
.vh-featured-body {
    padding: 0;
}
.vh-featured-cat {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #01a173;
    margin-bottom: 0.5rem;
}
.vh-featured-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.25;
    color: #111827;
    margin: 0 0 0.6rem 0;
    transition: color 0.15s;
}
.vh-featured-link:hover .vh-featured-title { color: #01a173; }
.vh-featured-excerpt {
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.6;
    margin: 0 0 0.75rem 0;
}
.vh-featured-meta {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6b7280;
}
.vh-featured-meta .sep { margin: 0 0.4rem; }

/* ── Video Grid ── */
.vh-grid-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}
.vh-grid-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #111827;
}
.vh-grid-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
    border: none;
}
.vh-grid-count {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6b7280;
}
.vh-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.vh-card {
    text-decoration: none;
    color: inherit;
    display: block;
}
.vh-card:hover .vh-card-title { color: #01a173; }
.vh-card:hover .vh-card-play { background: rgba(1,161,115,0.9); }
.vh-card-thumb {
    position: relative;
    overflow: hidden;
    background: #f3f4f6;
    border-radius: 4px;
}
.vh-card-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}
.vh-card-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.vh-card-play::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 0 7px 12px;
    border-color: transparent transparent transparent #fff;
    margin-left: 2px;
}
.vh-card-body {
    padding: 0.6rem 0 0;
}
.vh-card-cat {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #01a173;
    margin-bottom: 0.25rem;
}
.vh-card-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    color: #111827;
    margin: 0 0 0.3rem 0;
    transition: color 0.15s;
}
.vh-card-meta {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6b7280;
}
.vh-card-meta .sep { margin: 0 0.3rem; }

/* ── Load More ── */
.vh-loadmore {
    text-align: center;
    padding: 1.5rem 0 2rem;
}
.vh-loadmore a {
    display: inline-block;
    padding: 0.75rem 2.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
    background: #fff;
    border: 2px solid #111827;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}
.vh-loadmore a:hover {
    background: #111827;
    color: #fff;
}

/* ── No Results ── */
.vh-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: #6b7280;
    font-size: 1rem;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .vh-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .vh-categories { padding: 1rem 1rem 0; overflow-x: auto; flex-wrap: nowrap; }
    .vh-featured { padding: 1.5rem 1rem 0; }
    .vh-featured-link { grid-template-columns: 1fr; gap: 1rem; }
    .vh-featured-title { font-size: 1.25rem; }
    .vh-grid-section { padding: 1.5rem 1rem; }
    .vh-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}
