.ados-blog-slider,
.ados-blog-slider * {
    font-family: 'Poppins', sans-serif
}

.ados-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .15);
    transition: .3s;
}

.ados-card:hover {
    transform: translateY(-8px)
}

.ados-img img {
    width: 100%;
    height: 240px;
    object-fit: cover
}

.ados-content {
    padding: 20px 25px 45px;
}

.ados-content h3 {
    font-size: 24px;
    font-weight: 500;
    color: #111;
    margin-bottom: 12px;
    line-height: 1.4em;
}

.ados-more {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: #000;
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
}

@media(max-width:767px) {
    .ados-img img {
        height: 200px
    }
}



/* Blog Listing Grid */



/* Row wrappers */
.ados-row {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

.ados-blog-listing .ados-card {
    background: transparent;
    box-shadow: none;
}

.ados-blog-listing .ados-img img {
    width: 100%;
    height: 355px;
    object-fit: cover;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}

.ados-blog-listing .ados-content {
    padding-left: 0;
    padding-bottom: 25px;

}

.ados-blog-listing .ados-content h3 {
    font-size: 28px;
    color: #fff;
}

.ados-blog-listing .ados-more {
    color: #848484;
    border-bottom: 1px solid #848484;
}

/* 2 column row */
.ados-row-2 {
    grid-template-columns: repeat(2, 1fr);
}

/* 3 column row */
.ados-row-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Responsive */
@media (max-width: 1024px) {

    .ados-row-2,
    .ados-row-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {

    .ados-row-2,
    .ados-row-3 {
        grid-template-columns: 1fr;
    }
}




/* Pagination Style */
.ados-pagination {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 40px;
}

.ados-page-count {
    font-size: 14px;
    color: #aaa;
    letter-spacing: 1px;
}

.ados-arrow {
    width: 38px;
    height: 38px;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.ados-arrow:hover {
    background: #fff;
    color: #000;
}