/* ===============================
   ENHANCED VIDEO TEXT STYLING ✨
   ===============================*/

/* Enhanced video info styling for better visibility */
.video-gallery-section .video-info {
    background: linear-gradient(135deg,
            rgba(253, 187, 45, 0.18) 0%,
            rgba(178, 31, 31, 0.18) 50%,
            rgba(26, 42, 108, 0.22) 100%) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.22) !important;
}

.video-gallery-section .video-info h3 {
    font-size: clamp(1.25rem, 2vw, 1.7rem) !important;
    font-weight: 700 !important;
    margin-bottom: 0.7rem !important;
    color: #fff !important;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 4px 8px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(253, 187, 45, 0.6) !important;
    /* Removed gradient text effect for better readability */
}

@keyframes textShimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.video-gallery-section .video-info p {
    color: #fff !important;
    line-height: 1.5 !important;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem) !important;
    font-weight: 500 !important;
    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.8),
        0 2px 6px rgba(0, 0, 0, 0.5) !important;
    background: rgba(255, 255, 255, 0.12) !important;
    padding: 1rem !important;
    border-radius: 10px !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    backdrop-filter: blur(8px) !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16) !important;
}

@media (max-width: 360px) {
    .video-gallery-section .video-info p {
        padding: 0.85rem !important;
        font-size: 0.92rem !important;
    }
}