.gmsp-slider-shell {
    position: relative;
    margin: 28px 0 34px;
    background: #0f172a;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.22);
}
.gmsp-slider-track { position: relative; min-height: 460px; }
.gmsp-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity .5s ease, transform .7s ease;
    pointer-events: none;
}
.gmsp-slide.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    position: relative;
}
.gmsp-slide__media,
.gmsp-slide__media a,
.gmsp-slide__media img { display: block; width: 100%; height: 100%; }
.gmsp-slide__media img {
    object-fit: cover;
    min-height: 460px;
    max-height: 70vh;
}
.gmsp-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,23,42,.12) 0%, rgba(15,23,42,.42) 55%, rgba(2,6,23,.78) 100%);
}
.gmsp-slide__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: clamp(22px, 4vw, 40px);
    color: #fff;
    max-width: 900px;
}
.gmsp-slide__content h3 {
    margin: 0 0 10px;
    font-size: clamp(1.8rem, 3.6vw, 3.4rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
}
.gmsp-slide__content p {
    margin: 0;
    font-size: clamp(1rem, 1.6vw, 1.12rem);
    line-height: 1.65;
    opacity: .92;
    max-width: 60ch;
}
.gmsp-slide__credit {
    display: inline-flex;
    margin-top: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    backdrop-filter: blur(10px);
    font-size: .86rem;
}
.gmsp-slider-controls {
    position: absolute;
    inset-inline: 0;
    bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    z-index: 4;
}
.gmsp-nav {
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.16);
    color: #fff;
    backdrop-filter: blur(10px);
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
}
.gmsp-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(15,23,42,.35);
    backdrop-filter: blur(10px);
}
.gmsp-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 0;
    background: rgba(255,255,255,.4);
    cursor: pointer;
}
.gmsp-dot.is-active { background: #fff; transform: scale(1.15); }
@media (max-width: 640px) {
    .gmsp-slider-shell { border-radius: 22px; }
    .gmsp-slider-track,
    .gmsp-slide__media img { min-height: 380px; }
    .gmsp-slider-controls { padding: 0 12px; bottom: 12px; }
    .gmsp-nav { width: 42px; height: 42px; font-size: 24px; }
    .gmsp-slide__content p { max-width: 100%; }
}

.gmsp-slide__media video,
.gmsp-video-embed,
.gmsp-video-embed iframe {
    display:block;
    width:100%;
    height:100%;
}
.gmsp-slide__media video {
    min-height: 460px;
    max-height: 70vh;
    object-fit: cover;
    background:#000;
}
.gmsp-video-embed { position:relative; min-height:460px; background:#000; }
.gmsp-video-embed iframe { position:absolute; inset:0; border:0; }
.gmsp-slide__media--video { background:#000; }
@media (max-width: 640px) {
    .gmsp-slide__media video,
    .gmsp-video-embed { min-height: 380px; }
}
