.recent-articles {
    padding: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.recent-articles .post-item {
    flex: 1 1 calc(33.33% - 10px);
    box-sizing: border-box;
    min-width: 280px;
    max-width: 430px;
    margin-bottom: 20px;
}

.recent-articles h3 {
    font-size: 24px;
    font-weight: 500;
    margin-top: 0;
    text-decoration: none;
}

.recent-articles a {
    text-decoration: none;
}

.recent-articles .post-image img {
    width: 100%;
    height: auto;
    border-radius: 20px 20px 0 20px;
    max-height: 160px;
    margin-bottom: 5px;
}

.recent-articles.home .post-image img {
    border-radius: 20px 20px 20px 0;
}

.recent-articles .post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.recent-articles .post-date {
    font-size: 14px;
}

.category-and-read-time {
    display: flex;
    gap: 10px;
}

.recent-articles .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;
}

.recent-articles .post-title {
    font-size: 24px;
    font-weight: 500;
    color: var(--wp--preset--color--grey-600);
    margin: 10px 0;
}

.recent-articles.home .post-title {
    font-weight: bold;
    margin: 0;
}

.recent-articles .post-excerpt {
    font-size: 16px;
    font-weight: 300;
    padding-right: 5px;
    color: var(--wp--preset--color--grey-400);
}

.recent-articles .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;
}

.recent-articles .post-excerpt-row {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.recent-articles .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);
}

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

.recent-articles.default .post-item {
    background-color: #fff;
}

.recent-articles.home .post-content {
    position: relative;
    background-color: #fff;
    margin-top: -40px;
    margin-left: 20px;
    padding: 10px;
    border-radius: 20px 0 20px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}