.articles-block {
    padding: 0 10px;
    background-color: #fff;
    max-width: 840px;
    margin: 0 auto;
    border-radius: 10px;
}

.articles-block h2 {

    margin-top: 0;
    text-decoration: none;
}

.articles-block h2 a {
    text-decoration: none;
}

/* General Styles */
.articles-block .post-item {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.articles-block .post-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.articles-block .first-post img {
    border-radius: 20px 20px 20px 0;
}

.articles-block .post-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 5px;
}

.articles-block .post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.articles-block .category-pill {
    background-color: #fff;
    color: var(--wp--preset--color--pink-600);
    padding: 5px 10px;
    margin-right: 5px;
    border-radius: 0 20px 20px 20px;
    font-size: 11px;
}

.articles-block .read-time {
    background-color: rgba(226, 225, 224, 0.5);
    padding: 5px 10px 5px 0;
    border: 2px solid rgba(226, 225, 224, 0.5);
    border-radius: 0 20px 20px 20px;
    font-size: 11px;
}

.articles-block .read-more-button {
    border: 1px solid var(--wp--preset--color--pink-600);
    padding: 4px 10px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    color: var(--wp--preset--color--pink-600);
}

.articles-block .read-more-button i {
    margin-left: 5px;
}

/* Layout for Desktop */
.articles-block .other-posts {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.articles-block .first-post {
    margin-bottom: 40px;
    width: 100%;
}

.articles-block .first-post .post-excerpt {
    padding-left: 30px;
    padding-right: 30px;
}

.articles-block .first-post .post-meta {
    padding-left: 30px;
    padding-right: 30px;
}

.articles-block .other-posts .post-item {
    width: calc(50% - 10px);
    /* Two columns with a 20px gap */
}

/* Layout for Mobile */
@media (max-width: 768px) {
    .articles-block .other-posts {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .articles-block .post-item {
        width: 100% !important;
    }

    .articles-block .first-post {
        margin-bottom: 20px;
    }

    .articles-block .first-post .post-excerpt,
    .articles-block .first-post .post-meta {
        padding: 0;
    }
}


/* Style for the pagination */

.articles-block .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}


.page-numbers {
    display: flex;
    list-style: none;
    padding: 8px 16px;
    margin: 0 4px;
    background-color: transparent;
    color: #000;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s, color 0.3s;
}

.articles-block .page-numbers li {
    border-radius: 10px;
    margin-left: 5px;
}

.articles-block .page-numbers.current {
    background-color: var(--wp--preset--color--pink-600);
    color: #fff;
    border-color: var(--wp--preset--color--pink-600);
}

.articles-block .page-numbers li:hover {
    background-color: #f1f1f1;
    color: #000;
}

.articles-block .page-numbers.dots {
    background-color: transparent;
    color: #999;
    cursor: default;
}