/* ===== PAGE ANNONCES ===== */

/* Carte annonce */
.annonce-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-left: 4px solid #d4af37;
}

.annonce-card:hover {
    transform: translateX(5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.annonce-type {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.annonce-type.emploi { background: #10b98120; color: #10b981; }
.annonce-type.stage { background: #3b82f620; color: #3b82f6; }
.annonce-type.appel { background: #f59e0b20; color: #f59e0b; }

.annonce-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #0a2a3a;
}

.annonce-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 15px 0;
    color: #64748b;
    font-size: 0.85rem;
}

.annonce-meta i {
    width: 16px;
    margin-right: 5px;
    color: #d4af37;
}

.annonce-description {
    color: #475569;
    margin: 15px 0;
    line-height: 1.6;
}

/* Animation au scroll */
.annonce-card {
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInLeft 0.6s ease forwards;
}

.annonce-card:nth-child(1) { animation-delay: 0.1s; }
.annonce-card:nth-child(2) { animation-delay: 0.2s; }
.annonce-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 60px;
    background: white;
    border-radius: 20px;
}