/* Wrapper for the entire block */
.hover-featured-posts-block {
    display: flex;
    gap: 30px; /* Slightly increased gap between columns */
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left column: Featured image fills column */
.hover-featured-posts-block .featured-image-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
    max-width: 50%;
    height: auto;
    margin: 0;
}

.hover-featured-posts-block .featured-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: bottom right; /* Always shows bottom-right corner */
    display: block;
    transition: transform 0.3s ease-in-out;
}


/* Right column: Post titles and content */
.hover-featured-posts-block .post-titles {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 20px;
    color: #fff;
}

.hover-featured-posts-block .post-title {
    padding-bottom: 15px;
    border-bottom: 1px solid #fff;
}

.hover-featured-posts-block .post-title:last-child {
    border-bottom: none;
}

.hover-featured-posts-block .post-title h3 {
    margin: 0 0 10px; /* Add spacing below the title */
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.3;
}

/* Categories and Read More Link: Flexbox for same-line alignment */
.hover-featured-posts-block .post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
}

.hover-featured-posts-block .post-meta .post-category {
    font-size: 0.875rem;
    color: #fff;
    font-weight: normal;
    margin: 0;
}

.hover-featured-posts-block .post-meta .post-link {
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hover-featured-posts-block .post-meta .post-link:hover {
    text-decoration: underline;
}
.post-title-link {
line-height:1.3;
}
.post-title-link,
.post-category,
.post-link {
    color: #ffffff; /* White text */
    text-decoration: none; /* Remove underline */
}

.post-title-link:hover,
.post-category:hover,
.post-link:hover {
    text-decoration: underline; /* Underline on hover */
}