.wy-tv-section {
    background: var(--wy-color-white);
}
.wy-tv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
@media (max-width: 600px) { .wy-tv-grid { grid-template-columns: 1fr; } }
.wy-tv-video-card { display: flex; flex-direction: column; gap: 1rem; }
.wy-tv-video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--wy-radius-sm);
    background: var(--wy-color-forest);
}
.wy-tv-video-wrap iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
    display: block;
}
.wy-tv-lazy { cursor: pointer; }
.wy-tv-thumb {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%; min-height: 100%;
    object-fit: cover;
}
.wy-tv-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1;
    padding: 0;
    transition: opacity 0.2s;
}
.wy-tv-lazy:hover .wy-tv-play { opacity: 0.85; }
.wy-tv-caption { padding: 0 0.2rem; }
.wy-tv-show {
    display: block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--wy-color-dark-teal);
    margin-bottom: 0.3rem;
    font-family: Arial, sans-serif;
}
.wy-tv-title {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--wy-color-forest);
    margin-bottom: 0.2rem !important;
    line-height: 1.4;
}
.wy-tv-meta {
    font-size: 0.8rem;
    color: var(--wy-color-slate);
    opacity: var(--wy-opacity-muted);
    margin: 0 !important;
}
