/* ── Chi Siamo / About ── */
.container {
    padding: 30px 50px;
    max-width: 680px;
    margin: 0 auto;
    min-height: 60vh;
}

/* Usato solo se si referenzia direttamente un <img class="about-photo"> */
.about-photo {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    object-position: center;
    margin-top: 30px;
    display: block;
}

/* Wrapper <picture> generato dalla shortcode {% image %} */
picture.about-photo-wrap {
    display: block;
    width: 100%;
    max-height: 500px;
    margin-top: 30px;
    overflow: hidden;
}

picture.about-photo-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.about-text {
    font-size: 0.9rem;
    font-weight: 300;
    margin-top: 30px;
    text-align: justify;
    color: #666;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.4em;
}

.about-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .container {
        padding: 25px 20px;
    }
}