/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.artistes-du-fond-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.artistes-du-fond-item {
    background-color: #fff;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.artiste-content-wrapper {
    flex: 1;
    min-width: 0;
}

.artiste-image-wrapper {
    flex-shrink: 0;
    width: 300px;
}

.artiste-featured-image {
    width: 100%;
    height: auto;
    display: block;
}

.artiste-title {
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 20px;
    color: #333;
    font-family: "Raleway", Sans-serif;
    /* Adjust as per theme */
}

.artiste-content {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    font-family: "Raleway", Sans-serif;
}

.artiste-content p {
    margin-bottom: 10px;
}

.read-more {
    color: #ff0000;
    /* Red color for read more */
    text-decoration: none;
    font-weight: bold;
    font-size: 12px;
}

.read-more:hover {
    text-decoration: underline;
}

/* Pagination */
.artistes-du-fond-pagination {
    margin-top: 30px;
    text-align: center;
}

.artistes-du-fond-pagination .page-numbers {
    display: inline-block;
    padding: 5px 10px;
    margin: 0 2px;
    border: 1px solid #ccc;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.artistes-du-fond-pagination .page-numbers.current {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

.artistes-du-fond-pagination .page-numbers:hover {
    background-color: #eee;
}