/**************************
    TOP NEWS
***************************/
.dk_flex{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
}
.dk_menu {
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 1.5rem;
}
.top_news_dk{
    width: 80%;
}
.page_hero{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.page_hero_title{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.title_connection{
    padding: 0;
    margin: 3rem 0 3rem 0;
    width: fit-content
}
.page_description{
    max-width: 800px;
    width: 100%;
    text-align: justify;
    font-size: 18px;
    font-weight: 300;
    line-height: 2rem;
}
.space{
    height: 2rem;
    width: 100%;
}
/**************************
    NEWS CARDS
***************************/
.line{
    width: 50px;
    height: 3px;
    background-color: var(--violet);
    transition: all .3s linear;
}
.news_row{
    margin-top: 5rem;
    margin-bottom: 12rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 3rem;
    position: relative;
}
.news_col{
    width: calc((100% - 3rem * 2) / 3.33);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.news_col:hover .img_preview{
    border: 5px solid var(--green);
}
.news_col:hover .line{
    background-color: var(--green);
}
/* .news_col:hover  h2{
    color: var(--green);
} */
.news_content{
    margin-top: 1rem;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
}
.news_col h2{
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3rem;
    /* transition: all .3s linear; */
}
.img_preview{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 230px;
    max-height: 230px;
    border: 5px solid var(--tab_stroke);
    border-radius: 30px;
    transition: all .3s linear;
}
.news_date{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: .5rem;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 1.2rem;
    color: var(--tab_stroke);
}
.news_date i{
    font-size: 15px;
}
.news_txt{
    font-size: 12px;
    line-height: 1.2rem;
    font-weight: 300;
    text-align: justify;
    color: var(--black_logo);
}
.load_more{
    position: absolute;
    bottom: -8rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}
.load_more button{
    border: none;
    outline: none;
    background: none;
    font-family: var(--txt_title);
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
}
.load_more svg path{
    transition: all .3s linear;
}
.load_more:hover svg path{
    fill: var(--green);
}
.news_row p:last-child{
    position: absolute;
    bottom: -5rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--tab_stroke);
    font-weight: 500;
    font-size: 18px;
}

@media (max-width: 1280px){
    .page_description{
        max-width: 700px;
        text-align: justify;
        font-size: 16px;
        line-height: 2rem;
    }
    .space{
        height: 1rem;
    }
    .news_col{
        width: calc((100% - 3rem * 2) / 3);
    }
    .news_col h2{
        font-size: .85rem;
        line-height: 1.2rem;
    }
}
@media (max-width: 1130px){
    .dk_flex{
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
    }
    .top_news_dk{
        width: 100%;
        margin-top: 2rem;
    }
    .page_hero{
        margin-top: 2rem;
        align-items: center;
    }
    .dk_menu{
        width: 100%;
    }
    .dk_menu .logo_dk{
        display: none;
    }
    .page_description{
        max-width: 700px;
        text-align: justify;
        font-size: 1rem;
        line-height: 1.8rem;
    }
    .space{
        height: 1.5rem;
    }


    .news_row{
        gap: 1rem;
    }
    .news_col{
        width: calc((100% - 1rem * 2) / 3);
    }
    .img_preview{
        min-height: 200px;
        max-height: 200px;
    }
}
@media (max-width: 1024px){
    .news_row{
        gap: 2rem;
    }
    .news_col{
        width: calc((100% - 2rem) / 2);
    }
    .img_preview{
        min-height: 240px;
        max-height: 240px;
    }
}
@media (max-width: 768px){
    .page_description{
        max-width: 600px;
        text-align: justify;
        font-size: 1rem;
        line-height: 1.8rem;
    }
    .space{
        height: 1rem;
    }
    .img_preview{
        min-height: 200px;
        max-height: 200px;
    }
}
@media (max-width: 678px){
    .top_news_dk{
        margin-top: 1rem;
    }
    .news_row{
        margin-top: 3rem;
        gap: 2rem;
    }
    .news_col{
        width: 100%;
    }
    .img_preview{
        min-height: 320px;
        max-height: 320px;
    }
    .news_col h2{
        font-size: 21px;
        line-height: 1.8rem;
    }
    .news_txt{
        font-size: 14px;
        line-height: 1.3rem;
    }
}
@media (max-width: 530px){
    .page_description{
        max-width: 600px;
        font-size: .95rem;
        line-height: 1.5rem;
    }
    .img_preview{
        min-height: 230px;
        max-height: 230px;
    }
    .news_col h2{
        font-size: 1rem;
        line-height: 1.5rem;
    }
    .news_txt{
        font-size: 12px;
        line-height: 1.2rem;
    }
    .news_row p:last-child{
        font-size: 1rem;
    }
}
@media (max-width: 375px){
    .img_preview{
        min-height: 200px;
        max-height: 200px;
    }
}
@media (max-width: 320px){
    .top_news_dk{
        margin-top: 0;
    }
    .title_connection {
        padding: 0;
        margin: 2rem 0 2rem 0;
        width: fit-content;
    }
    .page_description{
        font-size: .85rem;
    }
    .img_preview{
        min-height: 180px;
        max-height: 180px;
    }
    .news_col h2{
        font-size: .85rem;
        line-height: 1.3rem;
    }
    .news_row p:last-child{
        font-size: .75rem !important;
    }
    .load_more button{
        font-size: 1rem;
    }
}
/**************************
    SHOW ARTICLE
***************************/
.top_article{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5rem;
}
.news_date_show{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: .5rem;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 1.2rem;
    color: var(--tab_stroke);
}
.news_date_sow i{
    font-size: 15px;
}
.back{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .85rem;

    font-family: var(--txt_title);
    color: var(--black_logo);
    font-weight: 500;
    font-size: 18px;
}
.back:hover svg path{
    fill: var(--green);
}
.article_contents{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}
.article_contents h1{
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    font-size: 38px;
    line-height: 3.5rem;
    text-align: center;
}
.article_body{
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8rem;
    font-weight: 300;
    text-align: justify;
    font-family: var(--txt_body) !important;
}
.article_body h1, .article_body h2, .article_body h3, .article_body h4, .article_body h5, .article_body h6,
.article_body p,
.article_body span{
    font-family: var(--txt_body) !important;
}

.img_preview_show{
    max-width: 750px;
    width: 100%;
    min-height: 420px;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    border: 10px solid var(--red);
    border-radius: 30px;
    box-shadow: var(--color_sdw);
    margin-bottom: 3rem;
}

@media screen and (max-width: 1024px){
    .article_contents{
        gap: 2rem;
    }
    .article_contents h1,
    .article_body,
    .img_preview_show{
        max-width: 700px;
    }
}
@media screen and (max-width: 768px){
    .top_article{
        margin-bottom: 3rem;
    }
    .back{
        font-size: 1rem;
    }
    .back svg{
        width: 20px;
    }
    .news_date_show,
    .news_date_sow i{
        font-size: .85rem;
    }
    .article_contents h1{
        font-size: 32px;
    }
    .article_contents h1,
    .article_body,
    .img_preview_show{
        max-width: 600px;
    }
    .img_preview_show{
        min-height: 360px;
    }
}
@media screen and (max-width: 625px){
    .top_article{
        margin-bottom: 2rem;
    }
    .article_contents h1{
        font-size: 21px;
        line-height: 2.3rem;
    }
    .article_contents h1,
    .article_body,
    .img_preview_show{
        max-width: 600px;
    }
    .article_body{
        font-size: .95rem;
        line-height: 1.5rem;
    }
    .img_preview_show{
        min-height: 300px;
    }
}
@media screen and (max-width: 375px){
    .back svg{
        width: 18px;
    }
    .news_date_show,
    .news_date_sow i{
        font-size: .75rem;
    }
    .article_contents h1{
        font-size: 18px;
        line-height: 2rem;
    }
    .article_contents h1,
    .article_body,
    .img_preview_show{
        max-width: 600px;
    }
    .article_body{
        font-size: .85rem;
    }
    .img_preview_show{
        min-height: 280px;
        margin-bottom: 2rem;
    }
}
@media screen and (max-width: 320px){
    .top_article{
        align-items: baseline;
    }
    .back{
        font-size: .95rem;
    }
    .article_contents{
        gap: 1.5rem;
    }
    .article_contents h1{
        font-size: 1rem;
        line-height: 1.8rem;
    }
    .img_preview_show{
        min-height: 250px;
    }
}