
/* قائمة المقالات */
.articles-list {
    padding: 50px 0;
    padding-top: 100px;
}

.articles-list h1 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: right;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.article-card {
    background: #f4f4f4;
    border-radius: 10px;
    overflow: hidden;
    text-align: right;
    position: relative;
}

.article-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-content {
    position: absolute;
    bottom: 1px;    
}

.article-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.article-content p {
    font-size: 16px;
    margin-bottom: 15px;
}

.article-content .btn {
    background: #333;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    line-height: 45px;
}

.navigation {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination span {
    margin: 0 5px;
}

.pagination a{
    padding: 8px 12px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #333;
    border-radius: 4px;
    background-color: white; /* Ajout d'une couleur de fond */
}
.pagination span.current  {
    padding: 8px 12px 8px 12px !important;
    margin: 0;
    position: relative;
    top: -8px;
}
.pagination a:hover {
    background-color: #f0f0f0;
}

.pagination span.current {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.pagination span.disabled {
    color: #999;
    border-color: #ddd;
    pointer-events: none;
}