.art-slider {
    position: relative;
    /* height: 100vh; */
    width: 100%;
    overflow: hidden;
}

.art-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 1s ease-in-out;
    opacity: 0;
}

.art-title,
.art-slide-description {
    margin: 0;
}
.art-btn{
    display: inline-block;
}

.art-slide.art-active {
    opacity: 1;
}
.art-content {
    width: 400px;
    max-width: 100%;
}
.art-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.art-content {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    color: white;
    z-index: 10;
}

.art-circle-carousel-wrapper {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
    z-index: 20;
}

.art-circle-carousel {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.art-thumb {
    position: absolute;
    width: 50px;
    height: 50px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid white;
    transition: transform 0.5s, left 0.5s, top 0.5s;
}

.art-arrow-container {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.art-arrow {
    color: white;
    font-size: 2rem;
    cursor: pointer;
    user-select: none;
}

.art-slide-counter {
    color: white;
    font-size: 1rem;
    font-weight: bold;
}

@media (max-width: 1024px) {
    .art-circle-carousel-wrapper {
        display: none;
    }
}