@charset "utf-8";

/* ── video_row 스킨 ─────────────────────────── */

.vr-list {
    display: flex;
    flex-direction: column;
}

.vr-item {
    border-bottom: 1px solid #e0e5ed;
}

.vr-item:first-child {
    border-top: 2px solid #236dc7;
}

.vr-link {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 22px 6px;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
}

.vr-link:hover,
.vr-link:focus {
    background: #f4f8ff;
    text-decoration: none;
}

/* ── Thumbnail ── */
.vr-thumb {
    position: relative;
    flex-shrink: 0;
    width: 260px;
    aspect-ratio: 16 / 9;
    background: #1a2540;
    overflow: hidden;
    border-radius: 4px;
}

.vr-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.vr-link:hover .vr-thumb img,
.vr-link:focus .vr-thumb img {
    transform: scale(1.05);
}

/* ── Play button ── */
.vr-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: background 0.2s, transform 0.2s;
    pointer-events: none;
}

.vr-link:hover .vr-play,
.vr-link:focus .vr-play {
    background: #236dc7;
    transform: translate(-50%, -50%) scale(1.12);
}

.vr-play-icon {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9px 0 9px 16px;
    border-color: transparent transparent transparent #236dc7;
    margin-left: 4px;
    transition: border-left-color 0.2s;
}

.vr-link:hover .vr-play-icon,
.vr-link:focus .vr-play-icon {
    border-left-color: #fff;
}

/* ── Content body ── */
.vr-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4px 0;
}

.vr-title {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: #1a2e50;
    line-height: 1.5;
    margin-bottom: 10px;
    word-break: keep-all;
    transition: color 0.2s;
}

.vr-link:hover .vr-title,
.vr-link:focus .vr-title {
    color: #236dc7;
}

.vr-excerpt {
    font-size: 14px;
    color: #555;
    line-height: 1.75;
    margin: 0 0 16px;
    word-break: keep-all;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* ── Meta info ── */
.vr-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    color: #777;
}

.vr-meta-label {
    display: inline-block;
    margin-right: 4px;
    color: #aaa;
    font-size: 12px;
    font-weight: 600;
}

/* ── No data ── */
.vr-list .nodata {
    padding: 60px 0;
    color: #999;
    font-size: 15px;
    text-align: center;
    width: 100%;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .vr-thumb { width: 220px; }
}

@media (max-width: 768px) {
    .vr-link { gap: 16px; padding: 18px 4px; }
    .vr-thumb { width: 160px; }
    .vr-title { font-size: 15px; }
    .vr-excerpt { display: none; }
    .vr-meta { font-size: 12px; gap: 0 14px; }
}

@media (max-width: 480px) {
    .vr-link {
        flex-direction: column;
        gap: 12px;
        padding: 16px 0;
    }
    .vr-thumb { width: 100%; }
    .vr-excerpt { display: none; }
}
