.a-decouvrir-ressource-flex {
    display: flex;
    flex-direction: column;
}

.chips-swiper-container {
    position: relative;
    width: 100%;
}

@media screen and (max-width:468px) {
	.accueilMetropol .chips-swiper{
	    padding-right: 0px !important;
	}
}

.chips-swiper .swiper-wrapper {
    display: flex;
    gap: 20px;
    justify-content: flex-start !important;
}

.chips-swiper .swiper-slide {
    width: auto !important;
    flex-shrink: 0;
    padding-bottom: 1px;
}

.metropole .chips-swiper-container::before {
 display: none;
}

/* Effet de flou à gauche */
.chips-swiper-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -2px;
    width: 30px;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,1), rgba(255,255,255,0));
    pointer-events: none;
    z-index: 2;
}

/* Effet de flou à droite */
.chips-swiper-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: -2px;
    width: 30px;
    height: 100%;
    background: linear-gradient(to left, rgba(255,255,255,1), rgba(255,255,255,0));
    pointer-events: none;
    z-index: 1;
}

@media (min-width: 1141px) {
    .chips-swiper .swiper-wrapper {
        justify-content: center;
    }
}

.chips-edit-mode {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 12px;
}

.chips {
    margin: 0;
    margin-top: 1px;
    padding: 17px 22px;
    border: 1px solid #EC6726;
    border-radius: 40px;
    font: 700 16px/1 "Brother-1816", sans-serif;
    text-align: center;
    color: #161616;
    transition: background-color .2s, color .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    box-sizing: border-box;
    max-width: 245px;
}

.center-text {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    margin: 0;
    line-height: 1.2;
    text-align: center;
    word-wrap: break-word;
    hyphens: auto;
}

.lien-chips {
    color: black;
    outline: none;
    display: block;
}

.lien-chips:hover {
    text-decoration: none;
}

.chips:hover  {
    background-color: #EC6726;
    color: #fff;
    cursor: pointer;
}

.chips:hover {
    background-color: #EC6726;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}