/*
==========
News Home
==========
*/
/* Title Section */
.title{
    margin-top: 8rem;
    color: #fff;
}

a{
    color: #fff;
    text-decoration: none;
}

a:hover{
    color: #fff;
    text-decoration: none;
}

.title h1{
    padding: 0 3em;
    font-size: 3.5rem;
    line-height: 1.2;
    letter-spacing: 1px;
}
.title h1 span{
    color: #fca311;
    font-weight: 700;
}
/* News Component Section */
.news{
    color: #fff;
    text-align: center;
    padding-top: 7em;
    padding-bottom: 5em;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    margin-top: 5rem;
    margin-bottom: 3rem;
}
.newsContainer{
    padding: 0 5em;
}
.column-about .news-component .card{
    color: #fff;
    cursor: pointer;
}
.column-about .news-component .card .card-body{
    padding: 1rem 2rem;
}
.column-about .news-component .card .descTextNews{
    display: -webkit-box;
    text-align: justify;
    height: 90px;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.column-about .news-component .card .card-title{
    display: -webkit-box;
    font-weight: 700;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 30px;
}
.column-about .news-component .card img{
    width: 100%;
    height: 250px;
}
.column-about .news-component .card .addTextNews{
    padding-top: 5em;
    font-size: 20px;
}
@supports (backdrop-filter: blur(1rem)){
    .news{
        background-color: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(1rem);
    }
}
@media (max-width: 991.98px) {
    .title h1 {
        font-size: 3.2rem;
        padding: 0 2em;
    }
    .column-about .news-component .card img {
        height: 350px;
    }
}

@media screen and (max-width: 767.98px){
    .title h1 {
        font-size: 3rem;
        padding: 0 1.5em;
    }
    .column-about .news-component .card .card-title {
        font-size: 25px;
    }

}

@media screen and (max-width: 575.98px) {
    .title h1 {
        font-size: 2.2rem;
        padding: 0 .5em;
    }
    .newsContainer{
        padding: 0 1em;
    }
    .column-about .news-component .card .card-title {
        font-size: 18px;
    }
    .column-about .news-component .card .descTextNews {
        font-size: 14px;
        height: 65px;
        -webkit-line-clamp: 3;
    }
    .column-about .news-component .card img {
        height: 200px;
    }
}

/*
==========
News Detail
==========
*/
.headDetailNews {
    margin-top: 6rem;
    color: #fff;
}
.headDetailNews h1{
    font-size: 3.4rem;
}
.headDetailNews p small{
    font-size: 1.15em;
}
.headDetailNews img{
    width: 100%;
    height: 80vh
}
.newsDetail{
    color: #fff;
    text-align: justify;
    padding-top: 2em;
    padding-bottom: 3em;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    margin-top: 2rem;
    margin-bottom: 3rem;
}
.newsDetailContainer{
    padding: 0 2.5em;
}
.newsDetailContainer p{
    font-size: 1.1rem;
    overflow: hidden;
}
.newsDetailContainer p a{
    color: #fca311;
    font-weight: 700;
}
.newsDetailContainer img{
    width: 480px;
    height: 300px;
}
.imageCenter{
    display: block;
    margin: 0 auto;
    margin-bottom: 1.5rem;
}
.imageLeft{
    float: left;
    margin-right: 1.5rem;
}
.imageRight{
    float: right;
    margin-left: 1.5rem;
}
@supports (backdrop-filter: blur(1rem)){
    .newsDetail{
        background-color: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(1rem);
    }
}
@media (max-width: 991.98px) {
    .headDetailNews h1 {
        font-size: 2.8rem;
    }
    .headDetailNews p small{
        font-size: 1.05em;
    }
    .newsDetailContainer img{
        width: 280px;
        height: 180px;
    }
}

@media screen and (max-width: 767.98px){
    .headDetailNews h1 {
        font-size: 2.6rem;
    }
    .headDetailNews p small{
        font-size: .95em;
    }
    .headDetailNews img {
        height: 65vh;
    }
    .newsDetailContainer p {
        font-size: .95rem;
    }
}

@media screen and (max-width: 575.98px) {
    .headDetailNews h1 {
        font-size: 2.3rem;
    }
    .headDetailNews p small{
        font-size: .85em;
    }
    .headDetailNews img {
        height: 55vh;
    }
    .newsDetailContainer p {
        font-size: .85rem;
    }
    .newsDetailContainer img{
        display: block;
        margin: 0 auto;
        margin-bottom: 1.5rem;
        float: none;
    }
}

