﻿.slider-container {
    width: 450px;
    height: 396px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #f5f5f5;
}

.slider {
    display: flex;
    transition: transform 0.6s ease;
}
.slide {
    width: 100%; 
    flex-shrink: 0;
}

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.slider-dots {
    text-align: center;
    margin-top: 15px;
}

.dot {
    width: 14px;
    height: 14px;
    margin: 0 6px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
}

    .dot::before {
        content: "";
        width: 10px;
        height: 10px;
        background: #1e146e;
        opacity: 0.3;
        border-radius: 50%;
        display: block;
    }

    .dot.active::before {
        opacity: 1;
    }

    .dot.active::after {
        content: "";
        position: absolute;
        width: 18px;
        height: 18px;
        border: 2px solid #1e146e;
        border-radius: 50%;
    }
