.crew {
    padding: 80px 2rem;
    background: #fff;
    scroll-margin-top: 110px;
}

.crew-container {
    max-width: 1200px;
    margin: 0 auto;
}

.crew-intro {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.crew-intro .section-title {
    margin-bottom: 1rem;
}

.crew-intro p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
}

.crew-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.crew-photo {
    height: 260px;
    margin: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background: #e0e0e0;
}

.crew-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.crew-photo:hover img {
    transform: scale(1.04);
}

@media (max-width: 900px) {
    .crew-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .crew-photo:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .crew {
        padding: 60px 1.25rem;
        scroll-margin-top: 230px;
    }

    .crew-grid {
        grid-template-columns: 1fr;
    }

    .crew-photo {
        height: 280px;
    }
}
