.titre-veille {
    margin-top: 90px; /* Pour ne pas être caché par le menu fixe */
    text-align: center;
    color: #2c3e50;
}

.veille-container {
    max-width: 2000px;
    margin: 30px auto 40px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.veille-block {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(44,62,80,0.08);
    padding: 24px;
    width: 350px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s;
}
.veille-block:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 18px rgba(44,62,80,0.12);
}
.veille-block h2 {
    margin-top: 0;
    color: #2980b9;
    font-size: 22px;
    text-align: center;
}
.veille-block p {
    color: #555;
    font-size: 16px;
    line-height: 1.4;
    flex-grow: 1;
    margin-top: 12px;
    text-align: center;
}
.veille-block .img-exp {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.veille-block a {
    margin-top: 12px;
    color: #e67e22;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
}
.veille-block a:hover {
    text-decoration: underline;
}
