.swimrun-banner-container {
    background-color: #fedd02; /* Jaune Swimrun */
    border-radius: 15px; /* Arrondi léger */
    padding: 28px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.swimrun-banner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    color: #000 !important;
    gap: 10px;
    flex: 1;
    transition: transform 0.2s ease;
}

.swimrun-banner-item:hover {
    transform: translateY(-3px);
}

.swimrun-banner-icon {
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swimrun-banner-icon img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    /* Si tes SVG ne sont pas noirs, décommente la ligne suivante pour forcer le noir */
    /* filter: brightness(0); */
}

.swimrun-banner-label {
    font-family: 'Antonio', sans-serif;
font-weight:600;
    font-size: 18px;
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.2;
}

/* Séparateur vertical fin */
.swimrun-banner-separator {
    width: 1px;
    height: 40px;
    background-color: rgba(0,0,0,0.1);
    margin: 0 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .swimrun-banner-container {
        flex-wrap: wrap;
        padding: 20px;
        gap: 32px;
        justify-content: center;
    }


.swimrun-banner-icon {
    height: 30px;
    width: 30px;
}

    .swimrun-banner-item {
        flex: 1 1 40%; /* 2 items par ligne */
        min-width: 120px;
    }

    .swimrun-banner-separator {
        display: none; /* On cache les traits en mobile */
    }
}