/* ============================================================
.carousel-arrow {
    z-index: 999;
}
   SPOTLIGHT PAGE — WorthyTech Solutions
/* Instagram reel container */
.video-card1 {/* take full row */
    display: flex;
    justify-content: center;
}

/* Override Instagram limit */
.video-card1 blockquote.instagram-media {
    width: 100% !important;
    max-width: 100% !important;
}

/* Force iframe full width */
.video-card1 iframe {
    width: 100% !important;
    max-width: 100% !important;
    height: 500px !important;
    border-radius: 12px;
}
/* ---- Hero ---- */
.spotlight-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: #0a0f1a;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
}
.spotlight-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 60% 40%, rgba(45,70,109,0.55) 0%, transparent 70%),
        radial-gradient(ellipse 50% 70% at 90% 80%, rgba(120,147,177,0.2) 0%, transparent 60%),
        linear-gradient(to top, #0a0f1a 10%, transparent 70%);
    z-index: 1;
}
.spotlight-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/spotlight-hero-bg.jpg');
    background-size: cover;
    background-position: center top;
    filter: brightness(0.38) saturate(0.7);
    transform: scale(1.04);
    animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    from { transform: scale(1.04); }
    to   { transform: scale(1.10); }
}
.spotlight-hero-content {
    position: relative;
    z-index: 2;
    max-width: 740px;
    padding: 0 24px;
    margin-left: 5vw;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(45,70,109,0.7);
    border: 1px solid rgba(176,184,193,0.3);
    color: #B0B8C1;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}
.hero-eyebrow span.dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(1.5); }
}
.spotlight-hero-content h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}
.spotlight-hero-content h1 em {
    font-style: normal;
    color: #7893b1;
}
.spotlight-hero-content p {
    font-size: 1.08rem;
    color: rgba(176,184,193,0.85);
    line-height: 1.65;
    margin-bottom: 32px;
    max-width: 520px;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #0a0f1a;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 13px 26px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s;
    letter-spacing: 0.01em;
}
.btn-hero-primary:hover {
    background: #B0B8C1;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 13px 26px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s;
    backdrop-filter: blur(8px);
}
.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
    transform: translateY(-2px);
}
.hero-scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(176,184,193,0.5);
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.hero-scroll-hint i {
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(6px); }
}

/* ---- Section Shells ---- */
.spotlight-section {
    padding: 80px 0 60px;
    background: #fff;
}
.spotlight-section.dark-bg {
    background: #0a0f1a;
}
.spotlight-section.soft-bg {
    background: #f4f6f9;
}
.section-header-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 36px;
}
.section-label {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #2D466D;
    margin-bottom: 4px;
}
.section-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: #1a2332;
    letter-spacing: -0.02em;
}
.dark-bg .section-label { color: #7893b1; }
.dark-bg .section-title { color: #fff; }
.see-all-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: #2D466D;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
    white-space: nowrap;
}
.see-all-link:hover { gap: 10px; color: #2D466D; }
.dark-bg .see-all-link { color: #7893b1; }

/* ---- YouTube API Notice (shown when API key not yet configured) ---- */
.yt-api-notice {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px dashed rgba(176,184,193,0.25);
    border-radius: 12px;
    padding: 28px 32px;
    color: #B0B8C1;
}
.yt-api-notice .fab.fa-youtube {
    font-size: 2.4rem;
    color: #ff0000;
    flex-shrink: 0;
    margin-top: 2px;
}
.yt-api-notice strong {
    color: #fff;
    display: block;
    margin-bottom: 6px;
    font-size: 1rem;
}
.yt-api-notice code {
    background: rgba(255,255,255,0.1);
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 0.82rem;
    color: #10b981;
}
.yt-api-notice a {
    color: #7893b1;
    text-decoration: underline;
    font-size: 0.85rem;
    display: inline-block;
    margin-top: 8px;
}
.yt-api-notice a:hover { color: #fff; }

/* ---- Video Carousel ---- */
.video-carousel-wrap {
    position: relative;
    overflow: hidden;
}
.video-carousel-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
    cursor: grab;
    user-select: none;
    /* Hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.video-carousel-track::-webkit-scrollbar { display: none; }
.video-carousel-track:active { cursor: grabbing; }
.video-card {
    flex: 0 0 calc(33.333% - 12px);
    scroll-snap-align: start;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #111827;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}
.video-card:hover {
    transform: scale(1.04);
    box-shadow: 0 20px 48px rgba(0,0,0,0.5);
    z-index: 2;
}
.video-thumb {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    background: #1a2332;
}
.video-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.video-card:hover .video-thumb img {
    transform: scale(1.05);
}
.video-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}
.video-card:hover .video-thumb-overlay { opacity: 0; }
.play-btn-overlay {
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0f1a;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    transition: transform 0.2s;
}
.video-card:hover .play-btn-overlay { transform: scale(1.1); }
.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.75);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 4px;
    letter-spacing: 0.04em;
}
.video-info {
    padding: 14px 16px 16px;
}
.video-info h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.video-meta {
    font-size: 0.72rem;
    color: rgba(176,184,193,0.6);
    display: flex;
    gap: 10px;
}

/* Carousel arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    z-index: 10;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    backdrop-filter: blur(6px);
}
.carousel-arrow:hover { background: rgba(255,255,255,0.2); }
.carousel-arrow.left  { left: -8px; }
.carousel-arrow.right { right: -8px; }

/* ---- Gallery ---- */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #2D466D 0%, #7893b1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
    font-size: 2rem;
}
/* Remove uneven layout */
.gallery-item:nth-child(4) {
    grid-column: span 1;
    aspect-ratio: 4/3;
}
.gallery-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,15,26,0.75) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* ---- Stats Bar ---- */
.stats-bar {
    background: linear-gradient(135deg, #2D466D 0%, #1a2d4a 100%);
    padding: 56px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.stat-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(176,184,193,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    font-size: 0.78rem;
    color: rgba(176,184,193,0.7);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ---- Lightbox ---- */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.lightbox-overlay.active { display: flex; }
.lightbox-inner {
    position: relative;
    max-width: 900px;
    width: 92%;
}
.lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-inner img {
    max-width: 100%;
    max-height: 85vh;   /* 🔥 IMPORTANT */
    width: auto;
    height: auto;
    object-fit: contain; /* 🔥 NO CROP */
    border-radius: 10px;
}
.lightbox-close {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 38px;
    height: 38px;
    background: white;
    border-radius: 50%;
    border: none;
    font-size: 18px;
    cursor: pointer;
}
.lightbox-caption {
    position: absolute;
    bottom: -30px;
    text-align: center;
    color: #ccc;
    font-size: 14px;
}
/* ---- Video Modal ---- */
.video-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}
.video-modal-overlay.active { display: flex; }
.video-modal-inner {
    position: relative;
    max-width: 860px;
    width: 94%;
}
.video-modal-inner iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    border-radius: 12px;
    display: block;
}
.video-modal-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 38px;
    height: 38px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0f1a;
    font-size: 1rem;
    cursor: pointer;
    border: none;
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
    .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
    .gallery-item:nth-child(4) { grid-column: span 1; aspect-ratio: 4/3; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item { border-bottom: 1px solid rgba(176,184,193,0.15); }
    .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
}
@media (max-width: 640px) {
    .spotlight-hero-content { margin-left: 0; }
    .gallery-masonry { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .section-header-row { flex-direction: column; gap: 8px; }
    .video-card { flex: 0 0 240px; }
    .yt-api-notice { flex-direction: column; gap: 12px; }
}
.video-card1 {
    flex: 0 0 calc(33.333% - 12px); /* 3 videos per row */
    scroll-snap-align: start;
}

/* ================= FULL HERO RIGHT VISUAL ================= */

.hero-visual {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

/* GRID BACKGROUND */
.grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(59,130,246,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59,130,246,0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: moveGrid 20s linear infinite;
}

/* GLOW LIGHT */
.glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59,130,246,0.35), transparent 70%);
    top: 30%;
    left: 40%;
    filter: blur(40px);
    animation: floatGlow 6s ease-in-out infinite;
}

/* FLOW LINES */
.flow-lines::before,
.flow-lines::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    opacity: 0.5;
    animation: flow 4s linear infinite;
}

.flow-lines::after {
    top: 50%;
    animation-delay: 2s;
}

/* ANIMATIONS */

@keyframes moveGrid {
    from { transform: translateY(0); }
    to { transform: translateY(60px); }
}

@keyframes floatGlow {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

@keyframes flow {
    from { transform: translateX(-50%); }
    to { transform: translateX(50%); }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-visual {
        display: none;
    }
}
/* ================= FRONT LAYER ANIMATION ================= */

/* SCANNING LIGHT */
.scan-beam {
    position: absolute;
    width: 120%;
    height: 200px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(59,130,246,0.2),
        transparent
    );
    top: -200px;
    left: -10%;
    transform: rotate(10deg);
    animation: scanMove 6s linear infinite;
}

/* DATA NODES */
.nodes span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #3b82f6;
    border-radius: 50%;
    box-shadow: 0 0 10px #3b82f6;
    animation: pulseNode 2s infinite ease-in-out;
}

/* NODE POSITIONS */
.nodes span:nth-child(1) { top: 20%; left: 30%; }
.nodes span:nth-child(2) { top: 40%; left: 70%; animation-delay: 0.5s; }
.nodes span:nth-child(3) { top: 65%; left: 40%; animation-delay: 1s; }
.nodes span:nth-child(4) { top: 30%; left: 80%; animation-delay: 1.5s; }

/* CONNECTING LINES */
.nodes span::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    top: 50%;
    left: 100%;
    opacity: 0.4;
    animation: linePulse 3s infinite;
}

/* ANIMATIONS */

@keyframes scanMove {
    0% { top: -200px; }
    100% { top: 120%; }
}

@keyframes pulseNode {
    0%,100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.6); opacity: 1; }
}

@keyframes linePulse {
    0%,100% { opacity: 0.2; }
    50% { opacity: 0.8; }
}
/* ================= 3D DEVICES ================= */
.hero-visual > *:not(.hero-devices) {
    z-index: 1;
}

.hero-devices {
    z-index: 10;
}
.hero-devices {
    position: absolute;
    right: 18%;   /* moved left */
    top: 50%;
    transform: translateY(-50%);
    width: 520px;
    height: 320px;
    perspective: 1200px;
     z-index: 5; /* VERY IMPORTANT */
}
.hero-devices::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 60px;
    background: radial-gradient(circle, rgba(59,130,246,0.4), transparent);
    filter: blur(20px);
}
/* COMMON DEVICE */
.device {
    position: absolute;
    border-radius: 18px;

    /* 3D fix */
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform;

    /* REMOVE background tint (important for image clarity) */
    background: transparent;

    /* CLEAN border (blue glow style) */
    border: 1px solid rgba(59,130,246,0.35);

    /* CLEAN shadow */
    box-shadow:
        0 0 25px rgba(59,130,246,0.25),
        0 20px 60px rgba(0,0,0,0.6);
}

/* ================= MONITOR ================= */
.monitor {
    width: 260px;
    height: 160px;
    top: 90px;
    left: 140px;
    animation: floatMain 6s ease-in-out infinite;
}
.monitor .screen {
    background: linear-gradient(135deg, #1e3a8a, #020617);
}

.monitor .screen::after {
    content: "";
    position: absolute;
    bottom: 12px;
    left: 20px;
    width: 120px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 4px;
}

/* ================= MOBILE ================= */
.mobile {
    width: 120px;
    height: 240px;
    top: 40px;
    left: 20px;
    transform: rotateY(18deg);
    animation: floatLeft 6s ease-in-out infinite;
}
.mobile .screen {
    background: linear-gradient(180deg, #0f172a, #020617);
}

.mobile .screen::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 40%;
    width: 6px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
}

.reel-ui .dot {
    width: 10px;
    height: 10px;
    background: #3b82f6;
    border-radius: 50%;
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.reel-ui .line {
    width: 60px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    position: absolute;
    bottom: 40px;
    left: 20px;
}

/* ================= SIDE CARD ================= */
.card {
    width: 170px;
    height: 210px;
    top: 110px;
    right: 10px;
    transform: rotateY(-12deg);
    animation: floatRight 6s ease-in-out infinite;
}
.card .screen {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
}

.card .screen::after {
    content: "";
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 60px;
    height: 6px;
    background: rgba(255,255,255,0.2);
    border-radius: 6px;
}
.mobile {
    transform: rotateY(18deg) translateZ(0);
}

.monitor {
    transform: rotateY(0deg) translateZ(0);
}

.card {
    transform: rotateY(-12deg) translateZ(0);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-devices {
        display: none;
    }
}

/* IMAGE INSIDE SCREEN */
.screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;

    filter: none !important;   /* 🔥 remove color tint */
    opacity: 1 !important;     /* 🔥 ensure full visibility */
}
.screen {
    width: 100%;
    height: 100%;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    background: none; /* IMPORTANT */
}
/* ================= MOBILE FIX START ================= */

@media (max-width: 768px) {

    /* -------- HERO FIX -------- */
    .spotlight-hero {
        height: auto;
        min-height: auto;
        padding: 80px 20px 40px;
        align-items: center;
        text-align: center;
    }

    .spotlight-hero-content {
        margin: 0 auto;
        max-width: 100%;
        padding: 0;
    }

    .spotlight-hero-content h1 {
        font-size: 1.9rem;
        line-height: 1.3;
    }

    .spotlight-hero-content p {
        font-size: 0.95rem;
        margin: 16px auto 24px;
    }

    .hero-actions {
        justify-content: center;
        gap: 10px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    /* REMOVE HEAVY VISUALS */
    .hero-visual,
    .hero-devices {
        display: none !important;
    }


    /* -------- SECTION FIX -------- */
    .spotlight-section {
        padding: 50px 16px;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .section-label {
        font-size: 0.6rem;
    }

    .section-header-row {
        align-items: center;
        text-align: center;
    }

    .see-all-link {
        margin-top: 6px;
    }


    /* -------- VIDEO CAROUSEL -------- */
    .video-card {
        flex: 0 0 80%;
    }

    .video-carousel-track {
        gap: 12px;
    }


    /* -------- INSTAGRAM FIX -------- */
    .video-card1 {
        flex: 0 0 80%;
    }

    .video-card1 iframe {
        height: 420px !important;
    }


    /* -------- GALLERY FIX -------- */
    .gallery-masonry {
        grid-template-columns: 1fr;
        gap: 12px;
    }


    /* -------- MODAL FIX -------- */
    .video-modal-inner {
        width: 95%;
    }

    .video-modal-close {
        top: -10px;
        right: -10px;
    }

}


/* EXTRA SMALL DEVICES */
@media (max-width: 480px) {

    .spotlight-hero-content h1 {
        font-size: 1.6rem;
    }

    .video-card {
        flex: 0 0 92%;
    }

    .video-card1 iframe {
        height: 360px !important;
    }

}

/* ================= MOBILE FIX END ================= */