/* ==========================================================================
   Видео — список и страница ролика
   ========================================================================== */

/* — detail.html — */
.uv-video-hero {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--uv-radius-lg);
    margin-bottom: 1.25rem;
    background: var(--uv-text-dark);
}
.uv-video-hero iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
}
.uv-article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .3rem;
    margin: 1rem 0;
}
.uv-article-tags a {
    display: inline-block;
    padding: .2rem .55rem;
    border-radius: var(--uv-radius-sm);
    font-size: var(--uv-fs-xs);
    font-weight: var(--uv-fw-medium);
    text-decoration: none;
    color: var(--uv-text);
    background: var(--uv-bg-warm);
    border: 1px solid var(--uv-border);
    transition: all var(--uv-duration-base);
}
.uv-article-tags a:hover { border-color: var(--uv-primary); color: var(--uv-text-muted); }
.uv-comments-section { margin-top: 1.5rem; }
.uv-comments-title {
    font-size: var(--uv-fs-h4);
    font-weight: var(--uv-fw-semibold);
    color:var(--uv-text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .4rem;
}
/* — list.html — */
.uv-category-pills a sup {
    font-size: var(--uv-fs-micro);
    color: var(--uv-primary);
    font-weight: var(--uv-fw-bold);
}
