.news-container{
    background-color: var(--bg-section-news);
    margin-top: 2rem;
    padding-bottom: 2rem;
}

.news-container-row {
    margin-right: 1%;
}

.latest-news-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #D2D6DB33;
    padding:10px;
    border-radius: 16px;
    cursor: pointer;    
    margin: 13px 0;
    box-shadow: 0px 4px 8px -2px rgba(16, 24, 40, 0.1), 0px 2px 4px -2px rgba(16, 24, 40, 0.06);
    height: 150px;
}

.latest-news-card-one {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #D2D6DB33;
    padding:10px;
    border-radius: 16px;
    cursor: pointer;    
    margin: 10px 0;
    height: 479px;
    position: relative;
    box-shadow: 0px 4px 8px -2px rgba(16, 24, 40, 0.1), 0px 2px 4px -2px rgba(16, 24, 40, 0.06);
}
.latest-news-card-one img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.latest-news-card-one .latest-news-card-body  {
    position: absolute;
    bottom: 0;
    background-color: var(--bg-card) ;
    padding: 30px;
    border-radius: 16px;    
    width: 100%;
}

.latest-news-card-img {
    width: 151px;
    height: 116px;
    border-radius: 16px;
}


.latest-news-card-body h4 {
    font-size: 16px;
}
.latest-news-card-body h5 {
    font-size: 18px;
    text-align: justify;
    padding-left: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.latest-news-card-body p {
    font-size: 14px;
    text-align: justify;
    padding-left: 10px;
}

.section-button-news {
    background-color: var(--btn-primary);
    color: var(--color-main);
    padding: 5px 15px;
    border-radius: 5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.latest-news-card-all .latest-news-card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #D2D6DB33;
    padding:10px;
    border-radius: 16px;
    cursor: pointer;    
    margin: 10px 0;
    box-shadow: 0px 4px 8px -2px rgba(16, 24, 40, 0.1), 0px 2px 4px -2px rgba(16, 24, 40, 0.06);
    gap: 20px;
    height: 380px;
    background-image: url(../../assets/services/pattren.svg);
    background-position: bottom left;
    background-repeat: no-repeat;
}

.page-title-section h1 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-post-content h2 {
    text-align: justify;
}
.blog-post-content div {
    border-radius: 16px;
}

.latest-news-card-all .latest-news-card-body  img {
    height: 250px !important;
    object-fit: cover;
 }

@media screen and (max-width: 768px) {
    .latest-news-card-one {
        height: 350px;
    }
}