/* veille.css */

/* Bloc principal pour chaque section */
.veille-bloc {
    background: rgba(20, 20, 20, 0.85);
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    border: 1.5px solid #007bff;
    margin: 2.5rem 0;
    padding: 2rem 2.5rem;
    max-width: 800px;
    width: 100%;
    text-align: left;
    transition: box-shadow 0.2s;
}

.veille-bloc:hover {
    box-shadow: 0 8px 28px rgba(0,123,255,0.18);
}

/* Titres sobres, police par défaut */
.veille-bloc h1, .veille-bloc h2 {
    font-family: inherit;
    font-weight: bold;
    color: #fff;
    margin-top: 0;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.veille-bloc p, .veille-bloc em {
    font-family: inherit;
    font-size: 1.08rem;
    line-height: 1.7;
    color: #e9e9e9;
}

.veille-bloc em {
    color: #b3e0ff;
}

/* Listes de liens */
.veille-links {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
}

.veille-links li {
    margin: 1rem 0;
    background: rgba(255,255,255,0.06);
    border-left: 4px solid #007bff;
    padding: 1rem 1.5rem;
    border-radius: 6px;
    transition: background 0.2s;
}

.veille-links li:hover {
    background: rgba(0,123,255,0.13);
}

.veille-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.08rem;
    transition: color 0.2s;
}

.veille-links a:hover {
    color: #00d8ff;
    text-decoration: underline;
}

/* Pour les colonnes avantages/inconvénients */
.veille-flex {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.veille-col {
    flex: 1 1 250px;
    min-width: 220px;
    background: rgba(0,0,0,0.08);
    padding: 1rem 1.2rem;
    border-radius: 8px;
}
.veille-col h3 {
    margin-top: 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Bloc essais non concluants */
.veille-essais {
    margin: 1rem 0;
    padding: 0.7rem 1rem;
    background: rgba(255,255,255,0.07);
    border-left: 4px solid #ff9800;
    border-radius: 6px;
}
.veille-essais h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.03rem;
    color: #ff9800;
}

.veille-links i {
    margin-right: 0.5em;
    color: #00d8ff;
}
.veille-logos-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.veille-image-bloc {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px); /* effet glassmorphism */
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 1.5rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    flex: 1 1 280px;
    max-width: 320px;
    box-shadow: 0 8px 24px rgba(0, 123, 255, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.veille-image-bloc:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 123, 255, 0.35);
}

.veille-image-bloc h2 {
    color: #00bfff;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    text-shadow: 0 0 6px rgba(0, 191, 255, 0.6);
}

.veille-logo {
    max-width: 180px;
    max-height: 130px;
    margin: 0 auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
    background: #fff;
    padding: 0.8rem;
    transition: filter 0.3s ease;
}

.veille-logo:hover {
    filter: drop-shadow(0 0 8px #00bfff);
}

/* Responsive */
@media (max-width: 900px) {
    .veille-logos-container {
        gap: 2rem;
    }
    .veille-image-bloc {
        max-width: 90vw;
        flex: 1 1 100%;
    }
}


/* Responsive */
@media (max-width: 900px) {
    .veille-bloc {
        max-width: 98vw;
        padding: 1.2rem 1vw;
    }
}
