body {
    background-position: center;
}


/* ===== MENU ===== */
.newspageMemuSettingLayout {
    width: 100%;
    max-width: 1190px;
    padding: 0px 25px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: end;
    gap: 5px;
}

.soical_menu.active {
    box-shadow: 0px 0px 10px #ffbb00d8;
}

/* Sticky Menu */
.newspageMemuSlideLayout {
    position: sticky;
    top: 100px;
    right: 80px;

    width: 200px;
    min-width: 200px;
    height: fit-content;
    max-height: calc(100vh - 40px);
    padding: 30px 10px;

    background: #429d46;
    border-radius: 20px;
    border: 3px solid #ecd892;

    align-self: flex-start;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.newspageMemuSlide_object {
    position: absolute;
    top: -60px;
    width: 90px;
}

.newspageMemuSlide_searchLayout {
    position: relative;
    padding-top: 20px;
    width: 100%;
    display: flex;
}

.newspageMemuSlide_searchLayout input {
    width: 100%;
    height: 40px;
    background: #fff;
    border: 3px solid #234516;
    border-radius: 10px 0px 0px 10px;
    padding: 5px 5px;

    font-size: 12px;
}

.newspageMemuSlide_searchLayout button {
    width: 30px;
    min-width: 30px;
    height: 40px;
    background: #234516;
    color: #fff;
    border-radius: 0px 10px 10px 0px;
    border: 3px solid #234516;

    display: flex;
    align-items: center;
    justify-content: center;
}

.newspageMemuSlide_menuMainLayout {
    width: 100%;
    height: 100%;
    padding: 5px;
    background: #fdfdeb;
    border: 3px solid #47882e;
    border-radius: 10px;
}


.newspageMemuSlide_menuLayout {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: 3px dashed #e3c566;
    color: #000;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.newspageMemuSlide_menu {
    width: 100%;
    height: 35px;
    padding: 0px 20px;
    background: transparent;
    border: 0px solid transparent;

    color: #252525;
    font-weight: 700;
    font-size: 14px;

    transition: all .5s;
    text-align: center;
}

.newspageMemuSlide_menu:hover,
.newspageMemuSlide_menu.active {
    color: #ffda60;
}

.newspageMemuSlide_menuLayout hr {
    margin: 0px auto;
    width: 70%;
    border-top: 1px solid #ecd892;
    opacity: 1;
}

/* ===== Content List ===== */
.newspageMainLayout {
    position: relative;
    width: 100%;
    min-height: 100dvh;
    padding-top: 150px;

    display: flex;
    flex-direction: column;
}

.newspage_highlightMainLayout {
    width: 100%;
    min-height: 500px;
    padding: 40px 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    background: url("../images/background/newsDashboard_02.png");
    background-position: left;
    background-size: cover;
}

.newspageCardMainLayout {
    width: 100%;
    max-width: 450px;
    height: 490px;
    padding: 15px;

    background: #000;
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.newspageCardImg {
    height: 190px;
    min-height: 190px;
}

.newspageCardImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.newspageCardContent {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.newspageCardContent h5 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    max-height: calc(1.4em * 2);
}

.newspageCardMainLayout.horizontal {
    width: 100%;
    max-width: 100%;
    height: 320px;
    padding: 15px;

    background: #000;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.newspageCardMainLayout.horizontal .newspageCardImg {
    width: 510px;
    min-width: 510px;
    height: 285px;
    min-height: 285px;
}

.newspage_listMainLayoutMain {
    position: relative;
    width: 100%;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
}


.newspage_listMainLayout {
    position: relative;
    width: 100%;
    max-width: 1190px;
    padding: 20px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    gap: 20px;
}

.newspage_listMainLayout.vertical {
    flex-direction: row;
    flex-wrap: wrap;
    max-height: 100% !important;
    justify-content: center;
}

.newspageCardMainLayout.vertical {
    display: flex;
    min-width: 370px;
    max-width: 370px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


/* ===== Smooth Expand / Collapse ===== */
.newspage_listMainLayout {
    overflow: hidden;
    transition: max-height 0.6s ease, opacity 0.4s ease;
}

.newspage_listMainLayout.is-collapsing {
    opacity: 0;
}

.newspageCardMainLayout {
    animation: fadeUp 0.4s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ===== NEWS Detail Page ===== */
.newsDetailMainLayout {
    width: 100%;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;

    background: url("../images/background/newsDetail_bg.png");
    background-position: top;
    background-size: cover;
}

.newsDetail_coverTitle {
    position: relative;
    width: 100%;
    min-height: 550px;

    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    border-bottom: 6px solid #dbf8b9;
}

.newsDetail_coverTitleLayout {
    position: relative;
    z-index: 4;

    width: 100%;
    height: 100%;
    padding: 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.newsDetail_coverTitleLayout hr {
    width: 20%;
}

.newsDetail_coverTitleLayout small {
    color: #9e9e9e;
    text-transform: uppercase;
}

.newsDetail_coverTitleLayout span {
    font-size: 60px;
    line-height: 75px;
    font-weight: 600;
    max-width: 1150px;
}

.newsDetail_coverTitleLayout small span {
    font-size: 12px;
    line-height: 12px;
}

.newsDetail_coverImg {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    filter: blur(5px);
}

.newsDetail_coverImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.newsDetail_coverBg {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
    background: #000000c5;
}

.newsDetail_contentMainLayout {
    width: 100%;
    max-width: 1190px;
    padding: 20px;
    border-radius: 30px;
    margin: 25px auto;

    background: #fdfdeb;
    border: 5px solid #47882e;
}

.newsDetail_contentSubLayout {
    width: 100%;
    padding: 40px;
    border-radius: 30px;
    border: 5px dashed #e3c566;
    color: #000;
}

.newsDetail_btnNews {
    width: 300px;
    height: 105px;

    display: flex;
    align-items: center;
    gap: 10px;

    text-align: start;
    line-height: 18px;

    background: transparent;
    padding: 0px;
    border: 0px solid transparent;
}

.newsDetail_btnNewsImg {
    width: 50%;
}

.newspageMemuSlideLayout.mobile {
    display: none;
}