        /* YouTube Video Grid */
        .yt-video-section {
                width: 100%;
                overflow: hidden;
        }

        .yt-video-section .section-title p {
                max-width: 980px;
                font-size: 15px;
                color: #555;
        }

        /* Video Box */
        .yt-video-box {
                position: relative;
                height: 300px;
                overflow: hidden;
                border-radius: 16px;
                background: #000;
                box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
        }

        .yt-video-box img {
                width: 100%;
                height: 100%;
                object-fit: cover;
        }

        /* Play Button */
        .yt-play-btn {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: 55px;
                height: 35px;
                line-height: normal;
                border-radius: 12px;
                background: #d9141b;
                background: #d9141b;
                color: #fff;
                text-align: center;
                font-size: 20px;
                text-decoration: none;
                animation: ytPulse 1.4s infinite;
        }

        .yt-play-btn span {
                display: flex;
                align-items: center;
                justify-content: center;
                height: 100%;
        }

        .yt-play-btn svg {
                width: 18px;
                height: 18px;
        }

        .yt-play-btn:hover,
        .yt-play-btn:focus {
                color: #fff;
        }

        /* Pulse Animation */
        @keyframes ytPulse {
                0% {
                        box-shadow: 0 0 0 0 rgba(217, 20, 27, 0.6);
                }

                100% {
                        box-shadow: 0 0 0 40px rgba(217, 20, 27, 0);
                }
        }