/* Simple Success Story Videos Section */
#success-videos {
    background: #f8f9fa;
}

/* Simple Video Card */
.video-card-simple {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Video Wrapper */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
}

.simple-video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    outline: none;
}

/* Video Info */
.video-info {
    padding: 20px;
}

.video-title-simple {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-desc-simple {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* No Videos Message */
.no-videos {
    padding: 60px 20px;
    color: #999;
}

.no-videos i {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.no-videos p {
    font-size: 16px;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .video-info {
        padding: 15px;
    }
    
    .video-title-simple {
        font-size: 16px;
    }
    
    .video-desc-simple {
        font-size: 13px;
    }
}
