.mv-horizontal {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 1rem;
    background: #f7f7fb;
}

@media (max-width: 768px) {
    .mv-horizontal {
        aspect-ratio: auto;
        height: 75vh;
        max-height: 650px;
    }
}

.mv-track {
    display: flex;
    height: 100%;
    transition: transform .3s ease;
}

.mv-slide {
    flex: 0 0 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mv-slide img,
.mv-slide video,
.mv-slide iframe {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f7f7fb;
}

[data-theme="dark"] .mv-horizontal {
    background: #161c29;
}

[data-theme="dark"] .mv-slide img,
[data-theme="dark"] .mv-slide video,
[data-theme="dark"] .mv-slide iframe {
    background: #161c29;
}

.mv-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(247 247 251);
    color: #161c29;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.4rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 1px 4px rgba(0,0,0,.15);
}

[data-theme="dark"] .mv-nav {
    background: rgb(22 28 41);
    color: #fff;
}

.mv-nav-prev { right: .6rem; }
.mv-nav-next { left: .6rem; }

.mv-dots {
    position: absolute;
    bottom: .7rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: .4rem;
    z-index: 5;
}

.mv-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    cursor: pointer;
}

.mv-dot.active {
    background: #fff;
    width: 18px;
    border-radius: 4px;
}

.mv-expand-btn {
    position: absolute;
    bottom: .6rem;
    right: .6rem;
    background: rgba(0,0,0,.5);
    color: #fff;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    cursor: pointer;
}

.mv-reel-overlay {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 2000;
    overflow: hidden;
}

.mv-reel-track {
    height: 100%;
    transition: transform .3s ease;
}

.mv-reel-slide {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mv-reel-slide img,
.mv-reel-slide video,
.mv-reel-slide iframe {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border: 0;
}

.mv-reel-close {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255,255,255,.15);
    color: #fff;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 1.8rem;
    line-height: 1;
    z-index: 2010;
    cursor: pointer;
}
