/* ========================
   Thèses récentes
   ======================== */
   .theses-recents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.these-item {
    background: #fff;
    padding: 18px 20px;
    margin-bottom: 18px;
    border-left: 5px solid var(--primary);
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.these-item strong {
    color: var(--primary);
}

/* Effet au survol */
.these-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .these-item {
        padding: 15px;
        font-size: 0.95rem;
    }
}
