.custom-posts-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 130px;
    background: transparent;
}

.custom-post {
    flex: 1 1 387px;
    max-width: 387px;
    display: flex;
    flex-direction: column;
    color: white;
}

/* .custom-posts-container {
    display: flex;
    gap: 130px;
    justify-content: space-between;
    background: transparent;
}

.custom-post {
    flex: 1;
    display: flex;
    flex-direction: column;
    color: white;
} */

.custom-title {
    font-family: 'Public Sans', sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 38px;
    margin-bottom: 60px;
}

.custom-desc {
    font-family: 'Public Sans', sans-serif;
    font-size: 17px;
    font-weight: 300;
    line-height: 25px;
    color: #EAE5DC !important;
    margin-bottom: 60px;
    padding: 0px !important;
}

.custom-footer {
    margin-top: auto;
}

.custom-divider {
    width: 152px;
    height: 1px;
    background: #EAE5DC;
    margin-bottom: 20px;
}

.custom-btn {
    display: inline-flex;
    align-items: center;
    font-family: 'Public Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.custom-btn .custom-arrow {
    width: 25px;
    height: 11px;
    margin-right: 17px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.custom-btn:hover .custom-arrow {
    transform: scale(1.2) translateX(5px);
    filter: brightness(0) invert(1);
}


/* Pagination */
.pagination {
    margin-top: 60px;
    text-align: center;
}

.pagination ul {
    display: flex;
    justify-content: center;
    gap: 14px;
    list-style: none;
    padding: 0;
    flex-direction: unset !important;
}

.pagination li a,
.pagination li span {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px;
    height: 44px;
    text-decoration: none;
    font-family: 'Public Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: white;
    transition: all 0.3s ease;

}

.pagination li a:hover {
    color: #EAE5DC;
}

.pagination .pagination-arrow {
    width: 25px;
    height: 11px;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.pagination .pagination-arrow.prev {
    transform: scaleX(-1);
}

.pagination li .pagination-arrow:hover {
    filter: brightness(0) invert(1);
}

.page-numbers img {
    margin-bottom: 0px !important;
}

.custom-btn img {
    margin-bottom: 0px !important;
}


/* Media Queries */
@media (max-width: 1300px) {
    .custom-post {
        max-width: 500px;
    }

    .custom-posts-container {
        gap: 70px;
    }

    .custom-title {
        margin-bottom: 50px;
    }

    .custom-desc {
        margin-bottom: 50px;
    }
}


@media (max-width: 1000px) {
    .custom-posts-container {
        gap: 60px;
    }

    .custom-divider {
        margin-left: auto;
        margin-right: auto;
    }

    .custom-title {
        margin-bottom: 45px;
    }

    .custom-desc {
        margin-bottom: 45px;
    }
}

@media (max-width: 690px) {
    .custom-posts-container {
        gap: 45px;
    }

    .custom-title {
        margin-bottom: 30px;
    }

    .custom-desc {
        margin-bottom: 30px;
    }
}