<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.spot {
    width: 275px;
    height: 375px;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
}

.spot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

/* Nuovo stile per icona video */
.spot .fa-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    pointer-events: none;
    padding: 0.4rem;
    border-radius: 0.25rem;
    width: 50px !important;
    height: 60px !important;
}

/* Nuovo stile per icona galleria */
.spot .fa-ellipsis {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 0.4rem;
    border-radius: 0.25rem;
    font-size: 1.2rem;
    color: white;
    pointer-events: none;
}

#spots-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
    gap: 20px;
    width: 100%;
    justify-items: center;
    align-items: center;
}

.icon-carosello {
    position: absolute;
    bottom: 0;
    right: 0;
    margin-right: 5px;
    margin-bottom: 5px;
    border-radius: 0.25rem;
    width: 25px !important;
    height: 25px !important;
    background-image: url('https://media.laregione.ch/files/domains/laregione.ch/loghi/app/gallery-carosello.svg');
    background-color: rgba(0, 0, 0, 0.5);
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 5;
}

.ico-gallery-carosello {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 0.4rem;
    border-radius: 0.25rem;
    font-size: 1.2rem;
    color: white;
    pointer-events: none;
    width: 25px !important;
    height: 25px !important;
    z-index: 5;
}

.spot-video {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
}

.spot-video video {
    width: 100%;
    min-height: 100%;
}

@media (max-width: 768px) {
    .spot {
        width: 320px;
        height: 450px;
    }
}</pre></body></html>