.recent-blog-posts-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-blog-post-item {
    border-bottom: 1px solid #e0e0e0;
    margin: 0;
    position: relative;
    padding-bottom: 20px; 
}

.recent-blog-post-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
    margin: 0 0 5px 0;
}

.recent-blog-post-categories {
    font-size: 0.875rem;
    color: #777;
    margin: 0 0 15px 0;
}

.recent-blog-read-more {
    font-size: 0.875rem;
    color: #1a7842;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    position: absolute;
    right: 0;
    bottom: 20px; 
}


.recent-blog-read-more:hover {
    text-decoration: underline;
}

/* Title and Categories Links Styling */
.recent-blog-post-title a,
.recent-blog-post-categories a {
    color: #000000; /* Black color */
    text-decoration: none; /* Remove underline */
}

.recent-blog-post-title a:hover,
.recent-blog-post-categories a:hover {
    text-decoration: underline; /* Add underline on hover */
}