/* ==========================================================
   SECTION MM EVENT SLIDER STYLE
   ========================================================== */

.mm-event-slider-wrapper {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.mm-event-slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: grab;
}

.mm-event-slider-track.grabbing { 
    cursor: grabbing; 
}

.mm-event-slider-track img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
    pointer-events: none;
    -webkit-user-drag: none;
}

.mm-event-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    background: transparent;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    padding: 0;
}

.mm-event-arrow svg {
    width: 10px;
    height: 10px;
    stroke: #ffffff;
    stroke-width: 4;
    fill: none;
    filter: drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.5));
}

.mm-event-arrow:hover { 
    background: #D2B48C; 
}

.mm-event-arrow:active,
.mm-event-arrow:focus,
.mm-event-arrow:focus-visible {
    background: #D2B48C;
    outline: none;
    box-shadow: none;
}

.mm-event-arrow:active svg,
.mm-event-arrow:focus svg {
    transform: scale(1.1);
    filter: none;
}

.mm-event-prev { 
    left: 15px; 
}

.mm-event-next { 
    right: 15px; 
}

.mm-event-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
}

.mm-event-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.35s ease;
}

.mm-event-dot.active {
    width: 24px;
    border-radius: 4px;
    background: #D2B48C;
    border-color: #D2B48C;
}
