.featured-posts-grid {
    display: grid;
    gap: 19px;
    justify-content: flex-start;
}
.featured-posts-grid a{
    color: inherit;
    text-decoration: none !important;
}
.featured-posts-list {
    display: flex;
    flex-direction: column;
    gap: 19px;
}
.featured-card {
    background: #fff;
    border-radius:20px 20px 0 0;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}
.featured-image {
    position: relative;
    background: #eee;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}
.featured-image canvas{
    width: 100%;
    height: auto;
}
.featured-image img{
    object-position: center;
    object-fit: cover;
    display: block;
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    left: 0;
    top: 0;
    transition: var(--transition);
}
.featured-title {
    color: #00204a;
    font-weight: 600;
    font-size: 1.3rem;
    padding: 1.2rem 1.2rem 0.6rem 1.2rem;
}
.featured-desc {
    font-size: 1rem;
    color: #30405a;
    padding: 0 1.2rem 1.2rem 1.2rem;
}
.featured-readmore {
    margin: 0 1.2rem 1.2rem 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #00204a;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4em;
}
.featured-readmore i {
    font-size: 1em;
    margin-left: 0.1em;
}
.masonry-enabled {
    /* You can add your masonry JS/CSS here */
}


@media (max-width: 600px) {
    .featured-posts-grid{
        display: block;
    }

}