.news-details-section{
    margin-top: 70px;
}
.news-details-container{
    display: flex;
    gap:60px;
    width: 100%;
    padding: 40px 10px;
    margin-top: 70px !important;
}

.news-details-left{
    display: flex;
    flex-direction: column;
    gap:25px;
    width:30%;
}
.title-news{
    display: none;
}

.title-news p{
    text-transform: uppercase;
}
.title{
    margin-top: 15px;
}
.title h2{
    font-size:45px;
    font-weight: 700;
}

.title p{
    color: rgb(158, 157, 157);
    text-transform: uppercase;
}

.ago{
    font-size: 11px;
}

.other-news-title{
    margin: 0;
}

.other-news-items{
    display: flex;
    flex-direction: column;
    margin-top:40px;
}

.other-news-items a{
    text-decoration: none;
    color:var(--black);
}

.other-news-items a:hover h5{
    color: var(--blue);
}

.other-news-items span{
    color: rgb(158, 157, 157);
    text-transform: uppercase;
    font-weight: 500;
    font-size:15px;
}
.other-news-items span .before{
    font-size: 11px;
}

.other-news-items p{
    margin: 0;
    color: rgb(158, 157, 157);
}

.other-news-items-description{
    margin-top:15px;
}


.news-details-right{
    width: 70%;
    display: flex;
    flex-direction: column;
    gap:25px;
}

.news-image-container{
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-image-container img{
    width: 100%;
    border-radius: 5px;
}

.news-content p{
    font-size:22px;
}

#load-more {
    margin-top: 10px;
    display: inline-block; /* Initially shown */
    background: transparent;
    color: var(--blue);
    border: none;
    outline: none;
    text-align: left;
    width: 100px;
}

.social-share-container{
    margin-top: 25px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.social-share-buttons{
    margin-top:10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap:15px;
}

.social-share-buttons .btn{
    transition: 0.5s;
}
.social-share-buttons .btn:hover{
    transform: scale(1.03);
}

.btn-facebook,
.btn-facebook:hover,
.btn-facebook:focus{
    background: #1877F2;
    color:var(--white);
}

.btn-twitter,
.btn-twitter:hover,
.btn-twitter:focus{
    background:#000;
    color: var(--white);
}

.btn-linkedin,
.btn-linkedin:hover,
.btn-linkedin:focus{
    background: #0077B5;
    color: var(--white);
}

@media(max-width: 1200px){
    .title h2{
        font-size:35px;
    }
}

@media(max-width:991px){
    .news-details-container{
        flex-direction: column-reverse;
        gap:30px;
    }

    .news-details-left{
        gap:20px;
        width:100%;
    }

    .news-details-right{
        flex-direction: column;
        width: 100%;
    }
    .news-content p{
        font-size:18px;
    }

    .title{
        display: none;
    }

    .title-news{
        display: flex;
        flex-direction: column;
        gap:10px;
    }

    .title-news h2{
        font-weight: 700;
    }

    .breadcrumbs-container{
        display: none;
    }
}
@media(max-width:767px){
    .news-details-section{
        margin-top: 0px;
    }
    .news-details-container{
        padding: 10px;
        margin-top: 50px !important;
    }

    .container, .container-sm {
        max-width: 100% !important;
    }
}
@media(max-width:556px){
    .social-logo{
        display: none;
    }
    .social-share-buttons i{
        font-size:20px;
    }
}
@media(max-width:500px){
    .title-news h2{
        font-size:20px;
    }
    .title-news p{
        font-size: 15px;
    }

    .news-content p{
        font-size:15px;
    }

    .other-news-items{
        gap:5px;
    }
    
    .other-news-items h5{
        font-size: 16px;
    }
    
    .other-news-items span{
        font-size:13px;
    }
    
    .other-news-items p{
        font-size:14px;
    }
}