.lcs-latest-comments-slider-background {
    background-color: #2C3E50; /* Fond foncé */
}
.lcs-latest-comments-slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 30px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lcs-latest-comments-slider {
    display: flex;
    transition: transform 1s ease;
    width: 100%;
    align-items: center;
}

.lcs-comment-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.lcs-comment-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    width: 100%;
}

.lcs-comment-post-thumbnail {
  width: 85px !important;
  height: 85px !important;
  border-radius: 50% !important;
  margin-bottom: 20px;
  object-fit: cover;
}

.lcs-comment-text-wrapper {
    width: 80%;
}

.lcs-comment-content {
    font-size: 16px;
    margin: 10px 0;
    line-height: 1.4;
    color: white;
}

.lcs-comment-post-title {
    font-weight: bold;
    font-size: 18px;
    color: white;
    margin-top: 10px;
}

/* Supprimez les styles sur les liens */
.lcs-comment-post-title a,
.lcs-comment-content a,
.lcs-comment-post-thumbnail a {
    /* Propriétés de style à supprimer */
    color: inherit;
    text-decoration: none;
}

/* Réinitialise les styles au passage de la souris */
.lcs-comment-post-title a:hover,
.lcs-comment-content a:hover,
.lcs-comment-post-thumbnail a:hover {
    /* Réinitialise les styles au passage de la souris */
    color: inherit;
    text-decoration: none;
}

.lcs-slider-prev, .lcs-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: unset !important;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1;
    border-radius: 50%;
	font-size: 24px;
}

.lcs-slider-prev {
    left: 10px;
}

.lcs-slider-next {
    right: 10px;
}

.lcs-slider-prev:before {
    content: "\e811";
    font-family: "fontello2";
}
.lcs-slider-next:before {
    content: "\e812";
    font-family: "fontello2";
}

