/* ==========================================================================
   Values Hotspot ("I nostri valori") — componente riutilizzabile
   Usato su: homepage (front-page), About Us.
   ========================================================================== */
:root {
    --lh-blue: #4992BB;
    --lh-blue-light: #DCEBF3;
    --lh-text: #565656;
    --lh-text-dark: #333;
    --lh-radius: 10px;
    --lh-vhs-font-heading: 'Inter', sans-serif;
}

.lh-vhs {
    color: var(--lh-text);
}

.lh-vhs *,
.lh-vhs *::before,
.lh-vhs *::after {
    box-sizing: border-box;
}

.lh-vhs__heading {
    font-family: var(--lh-vhs-font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--lh-text-dark);
    text-align: center;
    margin: 0 0 40px;
    line-height: 1.2;
}

.lh-vhs__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    background: var(--lh-blue-light);
    border-radius: var(--lh-radius);
    padding: 40px;
}

/* Immagine con hotspot overlay */
.lh-vhs__img-wrap {
    position: relative;
}

.lh-vhs__img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--lh-radius);
}

/* Hotspot button */
.lh-vhs__hotspot {
    position: absolute;
    width: 64px;
    height: 64px;
    transform: translate(-50%, -50%);
    background: var(--lh-blue-light);
    border: 2px solid transparent;
    border-radius: 50%;
    padding: 0;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(73, 146, 187, 0.4);
    animation: lh-vhs-pulse 2s ease-in-out infinite;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.lh-vhs__hotspot.is-active {
    border-color: var(--lh-blue);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), 0 0 0 4px rgba(73, 146, 187, 0.3);
    animation: none;
}

.lh-vhs__hotspot-icon {
    width: 38px;
    height: 38px;
    object-fit: contain;
    display: block;
}

.lh-vhs__hotspot-dot {
    display: block;
    width: 14px;
    height: 14px;
    background: var(--lh-blue);
    border-radius: 50%;
}

.lh-vhs__hotspot.is-active .lh-vhs__hotspot-dot {
    background: var(--lh-text-dark);
}

@keyframes lh-vhs-pulse {

    0%,
    100% {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(73, 146, 187, 0.4);
    }

    50% {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), 0 0 0 8px rgba(73, 146, 187, 0);
    }
}

/* Contenuto a lato */
.lh-vhs__content {
    padding: 10px 0;
}

.lh-vhs__title {
    font-family: var(--lh-vhs-font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--lh-blue);
    margin: 0 0 12px;
}

.lh-vhs__text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--lh-text);
}

.lh-vhs__text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .lh-vhs__layout {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .lh-vhs__heading {
        font-size: 24px;
    }

    .lh-vhs__hotspot {
        width: 48px;
        height: 48px;
    }

    .lh-vhs__hotspot-icon {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .lh-vhs__layout {
        padding: 24px;
    }
}
