.clubng-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.clubng-card {
    width: 320px;
}



.clubng-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 3px 12px rgba(0,0,0,.1);
    border-left: 6px solid #ddd;
}

/* Vert */
.clubng-card.team-success {
    border-left-color: #28a745;
}

/* Rouge */
.clubng-card.team-danger {
    border-left-color: #dc3545;
}

/* Orange */
.clubng-card.team-warning {
    border-left-color: #fd7e14;
}

/* Bleu */
.clubng-card.team-primary {
    border-left-color: #0d6efd;
}

/* Cyan */
.clubng-card.team-info {
    border-left-color: #0dcaf0;
}

/* Gris */
.clubng-card.team-secondary {
    border-left-color: #6c757d;
}

.clubng-card:hover {
    transform: translateY(-3px);
}

.clubng-card h3 {
    margin-top: 0;
    color: #0057b8;
}

.clubng-date {
    font-weight: bold;
    margin-bottom: 10px;
}

.clubng-location {
    color: #666;
}

.clubng-card h3 {
    margin: 0 0 8px 0;
    color: #0a6cff;
}

.clubng-card p {
    margin: 4px 0;
    line-height: 1.3;
}

.clubng-category {
    margin-top: 8px;
    display: inline-block;
    padding: 3px 8px;
    border-radius: 12px;
    background: #eef4ff;
    color: #0a6cff;
    font-size: 12px;
}


.clubng-sponsors {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.clubng-sponsor-card {
    width: 280px;
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,.1);
}



.clubng-sponsor-image {
    max-width: 100%;
    height: 120px;
    object-fit: contain;
    display: block;
    margin: 0 auto 10px;
}

.clubng-sponsor-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

