.post-carousel-container{
    margin-bottom: 20px;
    line-height: normal;
    
    .swiper-wrapper{
        overflow: visible !important;
        gap: initial !important;
    }
    
    .post-slide {
        background: white;
        border-radius: 10px;
        transition: transform 0.3s ease-in-out;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        height: 350px;
    }

    .post-slide:hover {
        transform: translateY(-5px);
    }

    .post-slide__link {
        text-decoration: none;
        color: inherit;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .post-slide__image {
        width: 100%;
        height: 180px;
        overflow: hidden;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

    .post-slide__image--img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .post-slide__text-container{
        padding: 10px;
    }

    .post-slide__category {
        font-size: 12px;
        font-weight: bold;
        color: #007AFF;
        margin-top: 10px;
    }

    .post-slide__title {
        font-size: 16px;
        font-weight: bold;
        margin-top: 8px;
        max-height: 50px;
        align-items: center;
        display: -webkit-box;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .post-slide__text {
        font-size: 14px;
        color: #666;
        max-height: 100px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        flex-grow: 1;
    }
    .swiper-pagination-post {
        position: relative !important;
        bottom: -40px;
        text-align: center;
        width: 100%;
        margin-bottom: 40px;
    }

    .swiper-pagination-post .swiper-pagination-bullet {
        width: 16px;
        height: 16px;
        background-color: rgba(0, 0, 0, 0.2);
        opacity: 0.5;
        transition: opacity 0.3s ease, background-color 0.3s ease;
        margin:6px
    }

    .swiper-pagination-post .swiper-pagination-bullet-active {
        background-color: #3a7bd5;
        opacity: 1;
        transform: scale(1.2);
    }
    .swiper-slide{
        height: auto;
    }

    .scopic-blog-card {
        background: #fff;
        border-radius: 10px;
        height: 100%;
    }

    .scopic-blog-card .scopic-blog-img img {
        width: 100%;
        height: 205px;
        object-fit: cover;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

    .scopic-blog-card .scopic-blog-img {
        position: relative;
    }

    .scopic-blog-card .scopic-blog-img ul {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        margin: 0;
    }
    .scopic-blog-card .scopic-blog-img ul li a {
        background: linear-gradient(225deg, #175BBB 0%, #0796DE 100%);
        text-decoration: none;
        padding: 5px 10px;
        color: #FFF;
        border-radius: 40px;
        font-size: 12px;
        font-weight: 600;
        line-height: 14px;
        min-width: 94px;
        text-align: center;
        display: block;
    }
    .scopic-blog-card .scopic-blog-img ul li span {
        background: rgb(205 220 236 / 80%);
        padding: 5px 10px;
        border-radius: 4px;
        font-size: 12px;
        font-weight: 400;
        line-height: 19px;
    }
    .scopic-blog-card .scopic-blog-card-caption {
        padding: 20px;
    }
    .scopic-blog-card .scopic-blog-card-caption h4 a {
        color: inherit;
        text-decoration: none;
        font-family: 'Inter Bold', Helvetica, Arial, Lucida, sans-serif;
        max-height: 60px;
        display: -webkit-box;
        text-overflow: ellipsis;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .scopic-blog-card .scopic-blog-card-caption h4 {
        margin: 0;
        font-size: 26px;
        font-weight: 500;
        line-height: 31px;
        color: #001F3E;
    }
    .scopic-blog-card .scopic-blog-card-caption p {
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        color: #001F3E;
        margin: 10px 0 20px 0;
    }
    .scopic-blog-card .scopic-blog-card-caption .read-more-btn {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        font-size: 16px;
        font-weight: 700;
        line-height: 19px;
        color: #007AFF;
        margin-top:20px;
        bottom: 10px;
        position: absolute;
    }
    .scopic-blog-card-caption p {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        height: 66px;
    }

    @media (min-width: 1025px) {
        .swiper-pagination-post {
            display: none !important;
        }
    }
  
}
