.psl-latest-posts-widget {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px;
}

.psl-highlighted-post, .psl-post {
    overflow: hidden;
    position: relative;
}

.psl-highlighted-post {
    background-color: #fff;
    border-radius: 20px;
}
.psl-highlighted-post .psl-posts_widgetcontent {
    padding: 30px;
}
.psl-latest-posts-widget a{
    display: block;
    position: relative;
    padding: 0;
    width: 100%;
}
.psl-other-posts {
    width: 54%;
    min-width: 54%;
}

.psl-other-posts .psl-post-list{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -40px;
    grid-row-gap: 70px;
}
.psl-highlighted-post .psl-posts_widgetcontent h5 {
    font-size: 26px;
    font-weight: 500;
    line-height: 34px;
    margin: 0 0 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 68px;
}
.psl-highlighted-post .psl-posts_widgetcontent p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    height: 52px;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
}
.psl-other-posts .psl-post-list .psl-post {
    width: 50%;
    padding: 0 40px;
}
.psl-highlighted-post .psl-category-badge {
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-accent);
    font-family: "Poppins", Sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 22px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 20px;
    padding: 8px 20px;
    z-index: 1;
}
.psl-latest-posts-widget a p {
    margin: 0;
}
.psl-post-image img {
    max-height: 320px;
    object-fit: cover;
}
.psl-latest-posts-widget .psl-read-more {
    display: flex;
    align-items: center;
    background-color: #ff9900;
    color: #fff;
    padding: 10px 20px;
    margin: 25px 0 0;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    flex-direction: row-reverse;
    text-align: left;
    border:2px solid #ff9900;
}
.psl-post-image {
    position: relative;
}
.psl-post-image-inner {
    display: block;
    position: relative;
}
.psl-post-image-inner img {
    aspect-ratio: 1.60652;
    display: block;
    object-fit: cover;
    width: 100%;
    object-position: top;
}
.psl-read-more i{
    margin-right: 20px;
}

.psl-read-more:hover {
    background-color: #cc7a00; /* Adjust to a darker shade for hover effect */
}
@media (min-width: 1024px) and (max-width: 1199px) {
    .psl-highlighted-post .psl-posts_widgetcontent {
        padding: 25px;
    }
    .psl-latest-posts-widget {
        grid-gap: 30px;
    }
}
@media (max-width: 1023px) {
    .psl-highlighted-post .psl-posts_widgetcontent h5 {
        font-size: 22px;
        line-height: 30px;
        margin: 0 0 10px;
        height: 60px;
    }
}
@media (max-width: 767px) {
    .psl-highlighted-post .psl-posts_widgetcontent {
        padding: 25px;
    }
    .psl-latest-posts-widget {
        grid-gap: 30px;
    }
}
@media (max-width: 575px) {
    .psl-latest-posts-widget {
        grid-template-columns: repeat(1, 1fr);
        max-width: 400px;
        margin: 0 auto;
        grid-gap: 25px;
    }
}