/* Design Global */
body { margin: 0; font-family: 'Segoe UI', sans-serif; background: #0a0a0a; color: #fff; }

/* Grille des soirées */
.soirees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    padding: 40px;
}

/* Cadre de soirée fixe */
.card {
    background: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    height: 520px;
    overflow: hidden;
    transition: 0.3s;
}

.card:hover { border-color: #D4AF37; transform: translateY(-5px); }

.card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card h2 {
    font-size: 1.3em;
    color: #D4AF37;
    margin: 0 0 10px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card p {
    font-size: 0.95em;
    line-height: 1.5;
    color: #ccc;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card .date {
    margin-top: auto;
    color: #888;
    font-size: 0.85em;
    font-weight: bold;
}