
/* Video Section Fixes */
.vid-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}
.vc {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}
.vc a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}
.vc img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
    transition: transform 0.5s ease;
}
.vc:hover img {
    transform: scale(1.05);
}
.vc.big {
    height: 480px; /* Explicit height for desktop big video */
}
.vid-right-col {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    height: 480px;
}
.vc.sm {
    height: calc(240px - 10px);
}

.playbtn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(30, 115, 190, 0.8) !important; /* Theme Blue Transparent */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important; /* White Icon */
    font-size: 18px;
    z-index: 5;
    transition: all 0.3s ease;
}

.vc.big .playbtn {
    width: 64px;
    height: 64px;
    font-size: 24px;
}

.vc:hover .playbtn {
    background: rgba(30, 115, 190, 0.9);
    transform: translate(-50%,-50%) scale(1.1);
}

.vc-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 15px;
    z-index: 2;
}

.vc-title {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.vc.big .vc-title {
    font-size: 18px;
}

@media(max-width:900px) {
    .vid-grid {
        grid-template-columns: 1fr;
    }
    .vc.big {
        height: 350px;
    }
    .vid-right-col {
        grid-template-columns: 1fr 1fr;
        height: auto;
    }
    .vc.sm {
        height: 200px;
    }
}
@media(max-width:640px) {
    .vid-right-col {
        grid-template-columns: 1fr;
    }
}
