.custom-page-posts-container {
    margin: 20px 0;
}

#custom-page-posts-search {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    box-sizing: border-box;
    text-transform: none; /* Respecter la casse de la saisie */
}

.filter-dropdown {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}

.filter-dropdown span {
    font-weight: bold;
}

.filter-dropdown label {
    font-weight: bold;
}

.filter-dropdown select {
    padding: 5px;
    border-radius: 3px;
    border: 1px solid #ccc;
}

.custom-page-posts-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.custom-page-post {
    flex: 1 1 calc(20% - 10px);
    max-width: calc(20% - 10px);
    box-sizing: border-box;
    text-align: center;
    position: relative;
}

.custom-page-post img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.custom-page-post:hover img {
    transform: translateY(-5px);
}

.custom-page-posts-pagination {
    text-align: right;
    margin-top: 20px;
}

.custom-page-posts-pagination a {
    margin: 0 5px;
    text-decoration: none;
    color: #fff; /* Texte blanc */
    border: 1px solid #ccc;
    padding: 5px 10px;
    border-radius: 3px;
    background: #f0f0f0;
}

.custom-page-posts-pagination a.active {
    font-weight: bold;
    color: #fff;
    background: linear-gradient(to right, #BE094F, #647FE4);
}

.custom-page-posts-pagination a:hover {
    text-decoration: underline;
}
