
/* INTEGRAZIONE PAGINA STORIA */

.storia-hero {
    position: relative;
    overflow: hidden;
}

.storia-hero img {
    width: 100%;
    display: block;
}

.storia-hero div {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    color: white;
}

.storia-blocco {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 70px 0;
}

.storia-blocco.reverse {
    flex-direction: row-reverse;
}

.storia-testo,
.storia-foto {
    flex: 1;
}

.storia-foto img {
    width: 100%;
    display: block;
}

.storia-citazione {
    background: #eeeeee;
    padding: 40px;
    font-size: 24px;
    font-style: italic;
    margin: 50px 0;
}

.storia-gallery {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.storia-gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

@media(max-width:800px){
    .storia-blocco,
    .storia-blocco.reverse {
        flex-direction: column;
    }
    .storia-gallery {
        grid-template-columns: repeat(2,1fr);
    }
}
