.video-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 40px auto; max-width: 1200px; } .video-column { position: relative; display: block; overflow: hidden; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.2); transition: transform 0.3s ease, box-shadow 0.3s ease; } .video-column:hover { transform: scale(1.03); box-shadow: 0 6px 18px rgba(0,0,0,0.3); } .video-wrapper { position: relative; width: 100%; height: 0; padding-top: 56.25%; /* 16:9 aspect ratio */ } .video-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 12px; } /* Play button overlay */ .play-button { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 64px; height: 64px; background: rgba(255,255,255,0.8); border-radius: 50%; display: flex; align-items: center; justify-content: center; pointer-events: none; } .play-button:before { content: ''; display: inline-block; margin-left: 5px; border-style: solid; border-width: 12px 0 12px 20px; border-color: transparent transparent transparent #000; } /* Responsive */ @media (max-width: 991px) { .video-row { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 600px) { .video-row { grid-template-columns: 1fr; } } Your browser does not support the video tag. Your browser does not support the video tag. Your browser does not support the video tag.