/* Video Widget Section - ICS 2026 */
.vw-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.vw-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a1a1a, #dc143c, #1a1a1a);
}

.vw-header {
    text-align: center;
    margin-bottom: 3rem;
}

.vw-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a1a1a 0%, #dc143c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.3);
}

.vw-icon i {
    font-size: 1.8rem;
    color: white;
}

.vw-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.vw-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.vw-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

.vw-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.vw-card:hover {
    box-shadow: 0 15px 50px rgba(220, 20, 60, 0.2);
}

.vw-card-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vw-card-header i {
    color: #dc143c;
    font-size: 1.2rem;
}

.vw-card-header span {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

.vw-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.vw-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.vw-card-footer {
    padding: 1.25rem;
    background: #fafafa;
    border-top: 1px solid #eee;
}

.vw-card-footer p {
    margin: 0;
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Video Widget Responsive */
@media (max-width: 900px) {
    .vw-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 600px;
    }
    
    .vw-section {
        padding: 3.5rem 0;
    }
    
    .vw-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .vw-section {
        padding: 2.5rem 0;
    }
    
    .vw-title {
        font-size: 1.5rem;
    }
    
    .vw-icon {
        width: 60px;
        height: 60px;
    }
    
    .vw-icon i {
        font-size: 1.5rem;
    }
    
    .vw-card-header {
        padding: 0.85rem 1rem;
    }
    
    .vw-card-footer {
        padding: 1rem;
    }
}
