/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.artiste-permanent-list {
    max_width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.artiste-permanent-item {
    background-color: #fff;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.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 */
.artiste-pagination {
    margin-top: 30px;
    text-align: center;
}

.artiste-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;
}

.artiste-pagination .page-numbers.current {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

.artiste-pagination .page-numbers:hover {
    background-color: #eee;
}