/* Columna de cada bloque */
.trabajo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Título */
.trabajo-item p {
    margin-bottom: 18px;
    font-size: 14px;
    letter-spacing: 0.08em;
    color: #555;
}

/* Imagen */
.img-wrapper {
    width: 378px;
    aspect-ratio: 378 / 540;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Imagen interior */
.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
    .img-wrapper {
        width: 100%;
        max-width: 360px;
    }
}
