/* Hotspot slider */
.hotspot-slider .swiper-slide {
    background: transparent;
    border: 0;
    padding: 0;
    border-radius: 0;
    text-align: left;
}

.hotspot-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.hotspot-left {
    flex: 1 1 auto;
}

.custom-hotspot-wrapper {
    position: relative;
}

.custom-hotspot-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.custom-hotspot-wrapper .hotspot {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #000;
    cursor: pointer;
    transform: translate(-50%, -50%);
}

.hotspot-right {
    flex: 0 0 320px;
    max-width: 320px;
}

@media (max-width: 768px) {
    .hotspot-container {
        flex-direction: column;
    }

    .hotspot-right {
        flex: 1 1 auto;
        max-width: 100%;
    }
}
