.home-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 53px;
}

.home-banner-slides {
    position: relative;
    width: 100%;
}

.home-banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.home-banner-slide.active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
}

.home-banner-slide picture,
.home-banner-slide img {
    display: block;
    width: 100%;
    height: auto;
}

.home-banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 10;
}

.home-banner:hover .home-banner-arrow {
    opacity: 1;
}

.home-banner-arrow:hover {
    background: rgba(241, 155, 0, 0.9);
}

.home-banner-arrow.prev {
    left: 20px;
}

.home-banner-arrow.next {
    right: 20px;
}

.home-banner-arrow svg {
    width: 20px;
    height: 20px;
}

.home-banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.home-banner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.home-banner-dot.active {
    background: #fff;
    width: 28px;
    border-radius: 5px;
}

@media screen and (max-width: 768px) {
    .home-banner-arrow {
        width: 32px;
        height: 32px;
        font-size: 14px;
        opacity: 0.8;
    }

    .home-banner-arrow.prev {
        left: 10px;
    }

    .home-banner-arrow.next {
        right: 10px;
    }

    .home-banner-arrow svg {
        width: 14px;
        height: 14px;
    }

    .home-banner-dots {
        bottom: 12px;
        gap: 6px;
    }

    .home-banner-dot {
        width: 8px;
        height: 8px;
    }

    .home-banner-dot.active {
        width: 20px;
    }
}

@media screen and (max-width: 768px) {
    .home-banner {
        margin-top: 39px;
    }
}
