.header-obra-escultorica {
    background-color: #efebe9;
    border-radius: 8px;
    width: 100%;
}

.header-obra-escultorica h2 {
    font-family: sans-serif;
    font-weight: bold;
    color: #5d4037;
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.card-huergo-full {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

.card-huergo-full:hover {
    transform: translateY(-5px);
}

.card-huergo-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.card-huergo-body {
    padding: 20px;
    text-align: center;
}

/* Título con la negrita suave (500) y tamaño de cards.css */
.card-huergo-titulo {
    font-family: sans-serif;
    font-weight: 500;
    /* ESTO ES NEGRITA SUAVE */
    color: #5d4037;
    /* Marrón */
    font-size: 1.2rem;
    margin: 0;
    transition: color 0.3s;
}

/* Cambio a azul al pasar el mouse */
.card-huergo-full:hover .card-huergo-titulo {
    color: #004080;
}

@media (max-width: 768px) {
    .card-huergo-img {
        height: 250px;
    }

    .card-huergo-titulo {
        font-size: 1.1rem;
    }

    .header-obra-escultorica h2 {
        font-size: 1.5rem;
    }
}