﻿/* =========================================
   LAYOUT FULL ARCHIVIO
========================================= */

.equipaggio-full {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 30px 30px 70px;
    box-sizing: border-box;
}

    /* titolo */

    .equipaggio-full h1 {
        text-align: center;
        font-size: 42px;
        color: #243f54;
        margin-bottom: 8px;
        font-family: Georgia, serif;
        font-weight: normal;
    }

/* intro */

.equipaggio-intro {
    max-width: 1100px;
    margin: 0 auto 28px;
    text-align: center;
}

    .equipaggio-intro p {
        font-size: 15px;
        line-height: 1.5;
        color: #3a3a3a;
        margin: 0 0 4px;
    }

        /* secondo capoverso */

        .equipaggio-intro p:last-child {
            font-size: 12px;
            color: #777777;
            font-style: italic;
        }
/* =========================================
   GRIGLIA FOTO
========================================= */

.equipaggio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 18px;
}

/* card */

.equipaggio-card {
    background: #f7f3ea;
    border: 1px solid #d7cfbc;
    padding: 8px;
    box-sizing: border-box;
    transition: transform 0.2s ease;
}

    .equipaggio-card:hover {
        transform: translateY(-3px);
    }

    /* foto */

    .equipaggio-card img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        object-position: center top;
        display: block;
        border: 1px solid #d5cab3;
        background: #ece4d2;
    }

/* nome */

.equipaggio-nome {
    margin-top: 8px;
    text-align: center;
    font-size: 12px;
    line-height: 1.35;
    color: #1f4664;
    font-weight: bold;
}
