.branded-content-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin: 20px 0;
}
.branded-video-item {
text-align: center;
}
.branded-video-item img {
width: 100%;
cursor: pointer;
}
.video-title {
margin-top: 10px;
font-weight: bold;
}
.video-popup-overlay {
position: fixed;
top: 0; left: 0; right: 0; bottom: 0;
background: rgba(0,0,0,0.8);
z-index: 10000;
display: flex;
justify-content: center;
align-items: center;
}
.video-popup {
background: white;
padding: 20px;
max-width: 90%;
width: 600px;
text-align: center;
position: relative;
}
.video-popup iframe {
width: 100%;
height: 315px;
}
.close-popup {
position: absolute;
top: 10px;
right: 10px;
background: #000;
color: #fff;
border: none;
font-size: 20px;
padding: 5px 10px;
cursor: pointer;
}
.video-popup-overlay {
position: fixed;
top: 0; left: 0; right: 0; bottom: 0;
background: rgba(0, 0, 0, 0.85);
z-index: 10000;
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
box-sizing: border-box;
}
.video-popup {
background: #000;
padding: 20px;
width: 100%;
max-width: 800px;
text-align: center;
position: relative;
border-radius: 8px;
overflow: hidden;
}
.video-popup iframe {
width: 100%;
height: 450px;
border: none;
display: block;
}
.video-popup h2 {
color: #fff;
margin-bottom: 15px;
font-size: 22px;
}
.close-popup {
position: absolute;
top: 10px;
right: 10px;
background: #fff;
color: #000;
border: none;
font-size: 22px;
font-weight: bold;
padding: 5px 10px;
cursor: pointer;
border-radius: 50%;
line-height: 1;
}