.custom-post-navigation-slider {
    display: flex;
    flex-direction: row;
    overflow: hidden;
    gap: 20px;
    width: calc(100% - 120px);
    margin: 0 -10px;
}

.custom-post-navigation-slider .slick-slide {
    margin: 0 20px;
}

.slick-list.draggable {
    padding: 10px 0 !important;
}

.post-navigation-card {
    border-radius: 10px;
    box-shadow: 0px 0px 11.35px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

a.post-navigation-card-thumbnail img {
    width: 220px;
    height: 162px;
    object-fit: cover;
}


.nav-post-title {
    flex-basis: 60%;
    padding: 20px;
}

.nav-title {
    font-family: 'Inter Medium';
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5em;
    color: rgba(0, 31, 62, 1);
}

.slider-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.prev-slide,
.next-slide {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.nav-icon {
    width: 35px;
}


/* Responsive Styles */
@media only screen and (min-width: 1201px) {
    .post-navigation-card {
        height: 162px;
    }
}

@media only screen and (max-width: 1200px) {

    .post-navigation-card {
        width: 100%;
    }

    a.post-navigation-card-thumbnail img {
        width: 300px !important;
    }

    p.nav-title {
        font-size: 20px;
    }
}

@media only screen and (max-width: 1000px) {
    .post-navigation-card {
        width: 100%;
    }

    a.post-navigation-card-thumbnail img {
        width: 200px !important;
    }

    p.nav-title {
        font-size: 14px;
    }

    .nav-icon {
        width: 30px;
    }
}

@media only screen and (max-width: 600px) {

    .post-navigation-card {
        flex-direction: column-reverse;
        height: 276px;
    }

    a.post-navigation-card-thumbnail {
        width: 100% !important;
    }

    a.post-navigation-card-thumbnail img {
        width: 100% !important;
    }

    a.nav-post-title {
        padding: 10px 20px 20px 20px;
    }

    .nav-title {
        font-size: 14px;
        text-align: center;
        padding: 0;
    }

    .nav-icon {
        width: 20px;
    }
}