/* =============================================================
   Video Center — page-video-center.php
   ============================================================= */

.vc__body-wrap {
    background-color: #ffffff;
}

.vc__body {
    display: grid;
    grid-template-columns: 324px 1fr;
    gap: 0 63px;
    align-items: start;
    max-width: 1252px;
    margin: 0 auto;
    padding: 60px 15px 80px;
}

@media (max-width: 1024px) {
    .vc__body { grid-template-columns: 260px 1fr; gap: 0 40px; }
}

@media (max-width: 768px) {
    .vc__body { grid-template-columns: 1fr; padding: 40px 15px 50px; }
}

/* ---- Sections ------------------------------------------------ */
.vc__section {
    padding-bottom: 56px;
}

.vc__section:not(:last-child) {
    border-bottom: 1px solid #d8d8d8;
    margin-bottom: 48px;
}

.vc__section--heading {
    font-size: 2.8rem;
    font-weight: 600;
    color: #1d1d1d;
    margin-bottom: 8px;
}

.vc__section--description {
    font-size: 1.7rem;
    color: #1d1d1d;
    line-height: 1.55;
    margin-bottom: 28px;
    max-width: 680px;
}

/* ---- Video card grid ----------------------------------------- */
.vc__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

@media (max-width: 900px) {
    .vc__grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ---- Individual card ----------------------------------------- */
.vc__card {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e4e4e4;
    background: #fff;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.vc__card:hover {
    box-shadow: 0 6px 24px rgba(0, 85, 164, 0.12);
    transform: translateY(-2px);
}

/* Thumbnail button */
.vc__card--thumb-wrap {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: #000;
    cursor: pointer;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    flex-shrink: 0;
}

.vc__card--thumb {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.2s ease;
}

.vc__card--thumb-wrap:hover .vc__card--thumb { opacity: 0.85; }

/* Play overlay */
.vc__card--play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.vc__card--play svg {
    width: 52px;
    height: 52px;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
    transition: transform 0.2s ease;
}

.vc__card--thumb-wrap:hover .vc__card--play svg { transform: scale(1.1); }

/* Playlist badge */
.vc__card--playlist-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #409985;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    font-family: "franklin-gothic-atf", sans-serif;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

/* Card body */
.vc__card--body {
    padding: 16px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vc__card--title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1d1d1d;
    line-height: 1.3;
    margin: 0;
}

.vc__card--description {
    font-size: 1.5rem;
    color: #444;
    line-height: 1.5;
    margin: 0;
}

/* Inline iframe player */
.vc__card--player { background: #000; }

.vc__card--iframe-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.vc__card--iframe-wrap iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}
