:root {
    --navy: #001b4d;
    --navy-dark: #001333;
    --yellow: #f8b900;
    --white: #ffffff;
    --text-dark: #06184a;
    --soft-bg: #f4f7ff;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: Arial, sans-serif;
    background: var(--navy);
    color: var(--white);
}

body.mobile-menu-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ================= HERO ================= */
.hero-section {
    position: relative;
    min-height: 760px;
    background:
        linear-gradient(90deg, rgba(0,27,77,.95), rgba(0,27,77,.60), rgba(0,27,77,.20)),
        url('../images/nasdem-tower.jpg') center/cover no-repeat;
    overflow: visible;
}

.hero-overlay {
    display: none;
}

/* ================= HERO SLIDER ================= */
.hero-slider {
    position: relative;
    background: none !important;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.04);
    transition: opacity 1s ease, visibility 1s ease, transform 5s ease;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hero-gradient {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            20deg,
            rgba(0,27,77,.88),
            rgba(0,27,77,.55),
            rgba(0,27,77,.18)
        ),

        radial-gradient(
            circle at top right,
            rgba(255,255,255,.22),
            transparent 42%
        ),

        radial-gradient(
            circle at bottom left,
            rgba(255,255,255,.10),
            transparent 38%
        );

    z-index: 1;
}

.hero-navbar,
.hero-content,
.hero-slider-dots {
    position: relative;
    z-index: 5;
}

.hero-slider-dots {
    position: absolute;
    left: 70px;
    bottom: 42px;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.8);
    background: transparent;
    cursor: pointer;
}

.hero-dot.active {
    background: var(--yellow);
    border-color: var(--yellow);
}

/* ================= NAVBAR ================= */
.hero-navbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 38px 60px;
    gap: 40px;
}



.logo {
    flex-shrink: 0;
}

.logo img {
    height: 58px;
    width: auto;
}


/*
.logo {
    position: relative;
    z-index: 20;
    padding: 14px 18px;
    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.22),
            rgba(255,255,255,.05)
        );

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border: 1px solid rgba(255,255,255,.12);

    box-shadow:
        0 10px 30px rgba(0,0,0,.18),
        inset 0 1px 0 rgba(255,255,255,.18);

    transition: all .25s ease;
}

.logo::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;

    background:
        radial-gradient(
            circle at top left,
            rgba(255,255,255,.35),
            transparent 90%
        );

    opacity: .8;
    pointer-events: none;
}

.logo:hover {
    transform: translateY(-2px);

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.28),
            rgba(255,255,255,.08)
        );
}
*/


.logo img {
    position: relative;
    z-index: 2;
    height: 58px;
    width: auto;
    display: block;
}

/* MOBILE */
@media (max-width: 768px) {

    .logo {
        padding: 10px 14px;
        border-radius: 18px;
    }

    .logo img {
        height: 46px;
    }
}

.desktop-menu {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 26px;
    flex: 1;
}

/* ================= DESKTOP MENU ================= */
@media (min-width: 769px) {
    .mobile-menu-btn,
    .mobile-drawer,
    .mobile-backdrop {
        display: none !important;
    }

    .main-menu,
    .main-menu ul,
    .main-menu li {
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .main-menu {
        display: flex !important;
        align-items: center;
        justify-content: flex-end;
        gap: 24px;
        flex-wrap: nowrap;
    }

    .main-menu > li {
        position: relative !important;
        display: block !important;
        white-space: nowrap;
    }

    .main-menu > li > a {
        display: block;
        color: #fff;
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        line-height: 1.2;
        padding: 12px 0 18px;
    }

    .main-menu > li > ul,
    .main-menu .sub-menu,
    .main-menu .children {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 245px !important;
        background: rgba(0, 19, 51, .98);
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 10px;
        padding: 10px 0 !important;
        box-shadow: 0 20px 45px rgba(0,0,0,.30);
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: translateY(10px);
        transition: all .22s ease;
        z-index: 99999;
        display: block !important;
    }

    .main-menu > li:hover > ul,
    .main-menu li:hover > .sub-menu,
    .main-menu li:hover > .children {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateY(0);
    }

    .main-menu > li > ul li,
    .main-menu .sub-menu li,
    .main-menu .children li {
        position: relative !important;
        width: 100%;
        white-space: normal;
    }

    .main-menu > li > ul a,
    .main-menu .sub-menu a,
    .main-menu .children a {
        display: block;
        color: #fff;
        font-size: 13px;
        font-weight: 700;
        text-transform: none;
        padding: 11px 18px;
        line-height: 1.35;
    }

    .main-menu > li > ul a:hover,
    .main-menu .sub-menu a:hover,
    .main-menu .children a:hover {
        background: rgba(248,185,0,.13);
        color: var(--yellow);
    }

    .main-menu > li > ul ul,
    .main-menu .sub-menu .sub-menu,
    .main-menu .children .children {
        left: 100% !important;
        top: 0 !important;
        margin-left: 6px !important;
    }
}

/* ================= BUTTON ================= */
.btn-yellow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--yellow);
    color: #05133a;
    font-weight: 800;
    text-transform: uppercase;
    padding: 16px 28px;
    border-radius: 4px;
    font-size: 13px;
    border: 0;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.6);
    color: #fff;
    padding: 15px 28px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

/* ================= HERO CONTENT ================= */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    padding: 90px 0 0 70px;
}

.eyebrow {
    font-size: 17px;
    margin-bottom: 18px;
}

.eyebrow::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--yellow);
    margin-right: 10px;
    vertical-align: middle;
}

.hero-content h1 {
    margin: 0;
    font-size: 64px;
    line-height: .98;
    font-weight: 900;
    letter-spacing: -1px;
}

.hero-content h1 span {
    color: var(--yellow);
}

.hero-content p {
    margin-top: 28px;
    max-width: 440px;
    line-height: 1.7;
    font-size: 16px;
}

.hero-buttons {
    margin-top: 28px;
    display: flex;
    gap: 12px;
}

/* ================= VALUES ================= */
.values-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #001b4d;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.value-item {
    padding: 34px 38px;
    border-right: 1px solid rgba(255,255,255,.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    border: 2px solid var(--yellow);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 30px;
    margin-bottom: 18px;
}

.value-item h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.value-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

/* ================= FRONT PAGE NEWS ================= */
/* ================= FRONT PAGE NEWS ================= */
.news-section {
    background: linear-gradient(180deg, #ffffff 0%, #f4f7ff 100%);
    color: var(--text-dark);
    padding: 52px 70px;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.section-head h2 {
    text-transform: uppercase;
    font-size: 15px;
    margin: 0;
    color: #001b4d;
    font-weight: 900;
    letter-spacing: .04em;
}

.section-head a {
    color: var(--yellow);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
}

/* GRID 2 KOLOM = 5 KIRI + 5 KANAN */
.news-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 30px;
    width: 100%;
    max-width: 100%;
}

/* ITEM */
.news-item {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(0, 27, 77, 0.08);
    border-radius: 18px;
    padding: 12px;
    box-shadow: 0 12px 30px rgba(0, 27, 77, 0.06);
    transition: all .25s ease;
}

.news-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0, 27, 77, 0.12);
}

/* THUMB */
.news-thumb {
    width: 130px;
    height: 82px;
    overflow: hidden;
    border-radius: 14px;
    background: #e7eaf0;
    flex-shrink: 0;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.news-item:hover .news-thumb img {
    transform: scale(1.05);
}

/* INFO */
.news-info {
    min-width: 0;
}

.news-info h3 {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.42;
    color: #001b4d;
    font-weight: 800;
}

.news-info h3 a {
    color: inherit;
}

.news-info h3 a:hover {
    color: #00338f;
}

.news-info span {
    display: inline-flex;
    align-items: center;
    margin-top: 4px;
    padding: 5px 10px;
    background: rgba(0, 27, 77, 0.06);
    border-radius: 999px;
    font-size: 12px;
    color: #52607a;
    font-weight: 700;
}

/* TABLET */
@media (max-width: 1024px) {
    .news-section {
        padding: 44px 34px;
    }

    .news-list {
        gap: 16px 18px;
    }

    .news-item {
        grid-template-columns: 120px minmax(0, 1fr);
    }

    .news-thumb {
        width: 120px;
        height: 78px;
    }

    .news-info h3 {
        font-size: 15px;
    }
}

/* MOBILE */
@media (max-width: 768px) {

    .news-section {
        padding: 36px 22px;
    }

    .section-head {
        margin-bottom: 20px;
    }

    .section-head h2 {
        font-size: 14px;
    }

    .section-head a {
        font-size: 12px;
    }

    .news-list {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .news-item {
        grid-template-columns: 104px minmax(0, 1fr);
        gap: 12px;
        padding: 10px;
        border-radius: 16px;
    }

    .news-thumb {
        width: 104px;
        height: 72px;
        border-radius: 12px;
    }

    .news-info h3 {
        font-size: 14px;
        line-height: 1.38;
        margin-bottom: 5px;
    }

    .news-info span {
        font-size: 11px;
        padding: 4px 8px;
    }
}

/* SMALL MOBILE */
@media (max-width: 420px) {

    .news-item {
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .news-thumb {
        width: 96px;
        height: 68px;
    }

    .news-info h3 {
        font-size: 13px;
    }
}
/* ================= ABOUT ================= */
.about-section {
    background: #f5f7fb;
    color: var(--text-dark);
    padding: 54px 70px 70px;
}

.section-label {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-section h2 {
    font-size: 42px;
    margin: 0 0 18px;
}

.about-section h2 span {
    color: var(--yellow);
}

.about-section p {
    max-width: 560px;
    line-height: 1.8;
}

.about-section .btn-outline {
    color: var(--text-dark);
    border-color: var(--text-dark);
    margin-top: 16px;
}

/* ================= CTA ================= */
.cta-section {
    display: none;
}

/* ================= FOOTER ================= */
.site-footer {
    background: #001333;
    color: #fff;
    padding: 38px 70px;
}

.footer-brand img {
    height: 54px;
    width: auto;
}

.footer-brand p {
    max-width: 320px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 14px;
    margin: 24px 0;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.footer-accordion {
    display: none;
}

.copyright {
    font-size: 13px;
    opacity: .8;
    text-align: center;
    margin-top: 26px;
}

/* =========================================================
   ALL NEWS PAGE
========================================================= */
.all-news-page-pro {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(248,185,0,.22), transparent 35%),
        linear-gradient(135deg, #001333 0%, #001b4d 44%, #002b7a 100%);
    color: #fff;
}

.all-news-hero-pro {
    padding: 92px 70px 58px;
    position: relative;
    overflow: hidden;
}

.all-news-hero-pro::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -130px;
    top: -130px;
    background: rgba(248,185,0,.16);
    border-radius: 50%;
    filter: blur(4px);
}

.all-news-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.all-news-hero-inner span,
.related-head span {
    display: inline-flex;
    color: var(--yellow);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 13px;
    margin-bottom: 14px;
}

.all-news-hero-inner h1 {
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.05;
    margin: 0 0 18px;
    letter-spacing: -1.4px;
}

.all-news-hero-inner p {
    max-width: 620px;
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255,255,255,.82);
}

.all-news-content-pro {
    width: min(1180px, calc(100% - 44px));
    margin: 0 auto;
    padding: 0 0 70px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
}

.all-news-grid-pro {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.all-news-card-pro {
    background: rgba(255,255,255,.96);
    color: var(--text-dark);
    border-radius: 5px; /* 22px */
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.35);
    box-shadow: 0 20px 42px rgba(0,0,0,.18);
    transition: transform .22s ease, box-shadow .22s ease;
}

.all-news-card-pro:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 55px rgba(0,0,0,.25);
}

.all-news-thumb-pro {
    display: block;
    height: 170px;
    overflow: hidden;
    background: #e8edf7;
}

.all-news-thumb-pro img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.all-news-card-pro:hover .all-news-thumb-pro img {
    transform: scale(1.05);
}

.all-news-body-pro {
    padding: 18px;
}

.news-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.news-card-meta span {
    display: inline-flex;
    align-items: center;
    padding: 5px 9px;
    background: rgba(0,27,77,.07);
    color: #53617c;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.all-news-body-pro h2 {
    font-size: 18px;
    line-height: 1.38;
    margin: 0 0 10px;
}

.all-news-body-pro p {
    margin: 0 0 14px;
    color: #5f6c84;
    font-size: 14px;
    line-height: 1.65;
}

.read-more-link {
    display: inline-flex;
    color: #001b4d;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.news-pagination-pro {
    margin-top: 28px;
}

.news-pagination-pro a,
.news-pagination-pro span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    margin: 0 5px 8px 0;
    background: rgba(255,255,255,.13);
    color: #fff;
    border-radius: 12px;
    font-weight: 800;
}

.news-pagination-pro .current {
    background: var(--yellow);
    color: #001333;
}

/* =========================================================
   SINGLE ARTICLE
========================================================= */
.single-news-page {
    background:
        radial-gradient(circle at top left, rgba(248,185,0,.16), transparent 32%),
        linear-gradient(135deg, #001333 0%, #001b4d 44%, #002a75 100%);
    color: var(--text-dark);
}

/* .single-hero-pro {
    position: relative;
    color: #fff;
    padding: 84px 70px 56px;
    overflow: hidden;
} */

.single-hero-pro {
    position: relative;
    color: #fff;
    padding: 84px 0 56px;
    overflow: hidden;
}

.single-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(0,19,51,.98), rgba(0,43,122,.76)),
        url('../images/nasdem-tower.jpg') center/cover no-repeat;
    opacity: .95;
}

/*
.single-hero-inner {
    position: relative;
    z-index: 2;
    width: min(1100px, 100%);
} */
.single-hero-inner {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 44px));
    margin: 0 auto;
}

.single-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,.72);
    margin-bottom: 22px;
}

.single-breadcrumb a:hover {
    color: var(--yellow);
}

.single-category-pill {
    display: inline-flex;
    padding: 8px 14px;
    background: var(--yellow);
    color: #001333;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.single-hero-pro h1 {
    max-width: 920px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.12;
    letter-spacing: -1.2px;
    margin: 0 0 22px;
}

.single-meta-pro {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.single-meta-pro span {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.88);
    font-size: 13px;
    font-weight: 700;
}

.single-layout-wrap {
    width: min(1180px, calc(100% - 44px));
    margin: -22px auto 0;
    padding-bottom: 58px;
    position: relative;
    z-index: 5;
}

.single-layout-wrap.has-sidebar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
}

.single-layout-wrap.full-article {
    display: block;
    max-width: 900px;
}

.single-article-card {
    background: #fff;
    border-radius: 10px; /* 24px; */
    overflow: hidden;
    box-shadow: 0 24px 65px rgba(0,0,0,.20);
}

.single-featured-pro {
    max-height: 430px;
    overflow: hidden;
    background: #e8edf7;
}

.single-featured-pro img {
    width: 100%;
    height: 100%;
    max-height: 430px;
    object-fit: cover;
}

.single-share-row {
    padding: 18px 26px;
    border-bottom: 1px solid rgba(0,27,77,.08);
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

.single-share-row > span {
    font-weight: 900;
    color: #001b4d;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.share-buttons a,
.share-buttons button,
.single-bottom-share a {
    border: 0;
    background: linear-gradient(135deg, #001b4d, #00338f);
    color: #fff;
    padding: 9px 13px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.share-buttons a:nth-child(3),
.single-bottom-share a:nth-child(3) {
    background: linear-gradient(135deg, #128c7e, #25d366);
}

.single-content-pro {
    padding: 34px 48px 44px;
    font-size: 18px;
    line-height: 1.88;
    color: #25324a;
}

.single-content-pro p {
    margin: 0 0 24px;
}

.single-content-pro h2,
.single-content-pro h3,
.single-content-pro h4 {
    color: #001b4d;
    line-height: 1.25;
    margin: 34px 0 16px;
}

.single-content-pro img {
    border-radius: 10px; /* 18px */
    margin: 24px auto;
}

.single-content-pro blockquote {
    position: relative;
    margin: 34px 0;
    padding: 28px 30px 28px 34px;
    background:
        linear-gradient(135deg, rgba(0,27,77,.96), rgba(0,51,143,.92));
    border-left: 6px solid var(--yellow);
    border-radius: 20px;
    color: #fff;
    box-shadow: 0 18px 38px rgba(0,27,77,.18);
}

.single-content-pro blockquote::before {
    content: "“";
    position: absolute;
    top: -18px;
    left: 20px;
    font-size: 76px;
    color: rgba(248,185,0,.45);
    line-height: 1;
}

.single-content-pro blockquote p {
    margin: 0;
    font-size: 22px;
    line-height: 1.55;
    font-weight: 800;
}

.single-bottom-share {
    margin: 0 48px 44px;
    padding-top: 22px;
    border-top: 1px solid rgba(0,27,77,.08);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.single-bottom-share strong {
    color: #001b4d;
}

/* ================= SIDEBAR ================= */
.news-sidebar {
    display: grid;
    gap: 20px;
    align-content: start;
}

.sidebar-widget {
    background: rgba(255,255,255,.96);
    color: var(--text-dark);
    border-radius: 7px; /* 22px */
    padding: 22px;
    box-shadow: 0 20px 42px rgba(0,0,0,.18);
}

.gradient-widget {
    background:
        linear-gradient(150deg, rgba(255,255,255,.98), rgba(248,185,0,.13));
}

.sidebar-widget h3 {
    margin: 0 0 16px;
    color: #001b4d;
    font-size: 18px;
}

.sidebar-news-item {
    display: block;
    padding: 13px 0;
    border-bottom: 1px solid rgba(0,27,77,.08);
}

.sidebar-news-item:last-child {
    border-bottom: 0;
}

.sidebar-news-item span {
    display: block;
    font-size: 12px;
    color: #71809a;
    margin-bottom: 5px;
}

.sidebar-news-item strong {
    display: block;
    font-size: 14px;
    line-height: 1.45;
}

.sidebar-categories,
.sidebar-categories ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-categories li {
    border-bottom: 1px solid rgba(0,27,77,.08);
    padding: 10px 0;
    font-size: 14px;
    font-weight: 700;
}

.sidebar-categories a {
    color: #001b4d;
}

/* ================= RELATED NEWS ================= */
.related-news-section {
    width: min(1180px, calc(100% - 44px));
    margin: 0 auto;
    padding: 0 0 76px;
    color: #fff;
}

.related-head {
    margin-bottom: 22px;
}

.related-head h2 {
    margin: 0;
    font-size: 34px;
}

.related-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.related-card {
    background: rgba(255,255,255,.96);
    color: var(--text-dark);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 42px rgba(0,0,0,.18);
}

.related-thumb {
    height: 150px;
    overflow: hidden;
    display: block;
}

.related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-body {
    padding: 16px;
}

.related-body span {
    font-size: 12px;
    color: #71809a;
    font-weight: 800;
}

.related-body h3 {
    font-size: 16px;
    line-height: 1.4;
    margin: 8px 0 0;
}

/* ================= TABLET ================= */
@media (max-width: 1200px) and (min-width: 769px) {
    .hero-navbar {
        padding: 34px 45px;
        gap: 25px;
    }

    .main-menu {
        gap: 15px;
    }

    .main-menu > li > a {
        font-size: 11px;
    }

    .btn-yellow {
        padding: 14px 20px;
        font-size: 12px;
    }
}

@media (max-width: 1024px) {
    .all-news-content-pro,
    .single-layout-wrap.has-sidebar {
        grid-template-columns: 1fr;
    }

    .news-sidebar {
        grid-template-columns: repeat(2, 1fr);
    }

    .all-news-grid-pro {
        grid-template-columns: repeat(2, 1fr);
    }

    .single-content-pro {
        padding: 30px 34px 40px;
    }
}

/* ================= MOBILE ================= */
.mobile-backdrop {
    display: none;
}

@media (max-width: 768px) {
    body {
        background: var(--navy);
    }

    .hero-section {
        min-height: 690px;
        background:
            linear-gradient(180deg, rgba(0,27,77,.55), rgba(0,27,77,.96)),
            url('../images/nasdem-tower.jpg') center top/cover no-repeat;
    }

    .hero-slide {
        background-position: center top;
    }

    .hero-gradient {
        background: linear-gradient(
            180deg,
            rgba(0,27,77,.50),
            rgba(0,27,77,.98)
        );
    }

    .hero-slider-dots {
        left: 26px;
        bottom: 28px;
    }

    .hero-navbar {
        padding: 30px 26px;
        align-items: center;
    }

    .logo img {
        height: 50px;
    }

    .desktop-menu {
        display: none !important;
    }

    .mobile-menu-btn {
        display: block;
        background: none;
        border: 0;
        color: white;
        font-size: 34px;
        cursor: pointer;
        line-height: 1;
        z-index: 100001;
    }

    .mobile-backdrop.active {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.55);
        z-index: 99998;
    }

    .mobile-drawer {
        display: block !important;
        position: fixed !important;
        top: 0;
        right: 0;
        width: 84%;
        max-width: 390px;
        height: 100vh;
        background: #001333;
        z-index: 99999;
        padding: 0 26px 40px;
        overflow-y: auto;
        transform: translateX(105%);
        transition: transform .28s ease;
        box-shadow: -20px 0 50px rgba(0,0,0,.35);
    }

    .mobile-drawer.active {
        transform: translateX(0);
    }

    .mobile-drawer-head {
        height: 76px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid rgba(255,255,255,.12);
        margin-bottom: 16px;
    }

    .mobile-drawer-head span {
        color: #fff;
        font-size: 16px;
        font-weight: 800;
        text-transform: uppercase;
    }

    .mobile-close-btn {
        width: 42px;
        height: 42px;
        border: 1px solid rgba(255,255,255,.25);
        border-radius: 50%;
        background: transparent;
        color: #fff;
        font-size: 32px;
        line-height: 36px;
        cursor: pointer;
    }

    .mobile-menu,
    .mobile-menu ul,
    .mobile-menu li {
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .mobile-menu li {
        position: relative;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .mobile-menu a {
        display: block;
        padding: 15px 46px 15px 0;
        color: #fff;
        font-size: 15px;
        font-weight: 800;
        text-transform: uppercase;
    }

    .mobile-menu li > ul {
        display: none !important;
        padding-left: 14px !important;
        border-left: 1px solid rgba(248,185,0,.35);
        margin-bottom: 12px !important;
    }

    .mobile-menu li.open > ul {
        display: block !important;
    }

    .mobile-menu li > ul a {
        font-size: 13px;
        font-weight: 700;
        text-transform: none;
        color: rgba(255,255,255,.82);
        padding: 9px 36px 9px 0;
    }

    .submenu-toggle {
        position: absolute;
        top: 8px;
        right: 0;
        width: 34px;
        height: 34px;
        border: 0;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
        color: var(--yellow);
        font-size: 22px;
        cursor: pointer;
        z-index: 2;
    }

    .mobile-menu li.open > .submenu-toggle {
        transform: rotate(45deg);
    }

    .hero-content {
        padding: 70px 26px 0;
        max-width: 100%;
    }

    .eyebrow {
        font-size: 15px;
    }

    .hero-content h1 {
        font-size: 42px;
        line-height: 1.1;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 1.8;
        max-width: 330px;
    }

    .hero-buttons {
        display: flex;
        gap: 10px;
    }

    .btn-yellow,
    .btn-outline {
        padding: 14px 18px;
        font-size: 12px;
    }

    .values-section {
        grid-template-columns: repeat(4, 1fr);
        padding: 20px 0;
    }

    .value-item {
        padding: 18px 8px;
        text-align: center;
        border-right: 1px solid rgba(255,255,255,.08);
    }

    .value-icon {
        width: 64px;
        height: 64px;
        font-size: 28px;
        margin: 0 auto 14px;
    }

    .value-item h3 {
        font-size: 15px;
    }

    .value-item p {
        font-size: 12px;
        line-height: 1.6;
    }

    .news-section {
        padding: 36px 22px;
    }

    .news-list {
        width: 100%;
        max-width: 100%;
    }

    .news-item {
        grid-template-columns: 112px 1fr;
        gap: 12px;
        padding: 10px;
        border-radius: 4px;
    }

    .news-thumb {
        width: 112px;
        height: 78px;
        border-radius: 4px;
    }

    .news-info h3 {
        font-size: 14px;
        line-height: 1.38;
        margin-bottom: 5px;
    }

    .news-info span {
        font-size: 11px;
        padding: 4px 8px;
    }

    .about-section {
        background: var(--navy);
        color: #fff;
        padding: 34px 26px 44px;
        border-top: 1px solid rgba(255,255,255,.08);
    }

    .about-section h2 {
        font-size: 34px;
    }

    .about-section p {
        font-size: 14px;
    }

    .about-section .btn-outline {
        color: #fff;
        border-color: rgba(255,255,255,.7);
    }

    .cta-section {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        background: #00205a;
        padding: 36px 26px;
    }

    .cta-section h2 {
        font-size: 20px;
        line-height: 1.4;
        margin: 0;
    }

    .site-footer {
        padding: 36px 26px;
    }

    .footer-brand img {
        height: 52px;
    }

    .footer-social {
        margin: 28px 0;
    }

    .footer-accordion {
        display: block;
        margin-top: 26px;
    }

    .footer-acc-item {
        border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .footer-acc-item button {
        width: 100%;
        background: none;
        border: 0;
        color: #fff;
        padding: 18px 0;
        text-align: left;
        text-transform: uppercase;
        font-weight: 800;
        display: flex;
        justify-content: space-between;
        font-size: 15px;
    }

    .all-news-hero-pro {
        padding: 76px 22px 42px;
    }

    .all-news-content-pro,
    .single-layout-wrap,
    .related-news-section {
        width: min(100% - 28px, 560px);
    }

    .all-news-content-pro {
        padding-bottom: 54px;
    }

    .all-news-grid-pro {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .all-news-card-pro {
        display: grid;
        grid-template-columns: 112px 1fr;
        border-radius: 5px; /* 18px */
    }

    .all-news-thumb-pro {
        height: 100%;
        min-height: 130px;
    }

    .all-news-body-pro {
        padding: 13px;
    }

    .all-news-body-pro h2 {
        font-size: 15px;
        line-height: 1.38;
    }

    .all-news-body-pro p {
        display: none;
    }

    .read-more-link {
        font-size: 12px;
    }

    .single-hero-pro {
        padding: 72px 22px 46px;
    }

    .single-breadcrumb {
        font-size: 12px;
    }

    .single-meta-pro span {
        font-size: 12px;
        padding: 7px 10px;
    }

    .single-layout-wrap {
        margin-top: -16px;
        padding-bottom: 44px;
    }

    .single-article-card {
        border-radius: 6px;
    }

    .single-featured-pro {
        max-height: 260px;
    }

    .single-featured-pro img {
        max-height: 260px;
    }

    .single-share-row {
        padding: 16px;
        align-items: flex-start;
    }

    .single-content-pro {
        padding: 24px 18px 32px;
        font-size: 16px;
        line-height: 1.8;
    }

    .single-content-pro blockquote {
        margin: 28px 0;
        padding: 24px 20px 24px 24px;
        border-radius: 16px;
    }

    .single-content-pro blockquote p {
        font-size: 18px;
    }

    .single-bottom-share {
        margin: 0 18px 32px;
    }

    .news-sidebar {
        grid-template-columns: 1fr;
    }

    .sidebar-widget {
        border-radius: 8px; /* 18px */
        padding: 18px;
    }

    .related-news-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .related-card {
        display: grid;
        grid-template-columns: 112px 1fr;
    }

    .related-thumb {
        height: 100%;
        min-height: 112px;
    }

    .related-body {
        padding: 13px;
    }

    .related-body h3 {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .values-section {
        grid-template-columns: repeat(4, 1fr);
    }

    .value-icon {
        width: 54px;
        height: 54px;
        font-size: 22px;
    }

    .value-item h3 {
        font-size: 13px;
    }

    .value-item p {
        font-size: 11px;
    }

    .hero-content h1 {
        font-size: 39px;
    }

    .cta-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-section .btn-yellow {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .all-news-card-pro,
    .related-card {
        grid-template-columns: 100px 1fr;
    }

    .all-news-thumb-pro,
    .related-thumb {
        min-height: 118px;
    }

    .news-item {
        grid-template-columns: 100px 1fr;
    }

    .news-thumb {
        width: 100px;
        height: 72px;
    }

    .share-buttons a,
    .share-buttons button,
    .single-bottom-share a {
        font-size: 11px;
        padding: 8px 11px;
    }
}

/* ================= STANDARD PAGE ================= */
.standard-page {
    background:
        radial-gradient(circle at top left, rgba(248,185,0,.16), transparent 32%),
        linear-gradient(135deg, #001333 0%, #001b4d 44%, #002a75 100%);
    color: var(--text-dark);
}

/*
.standard-page-hero {
    position: relative;
    color: #fff;
    padding: 84px 70px 56px;
    overflow: hidden;
} */

.standard-page-hero {
    position: relative;
    color: #fff;
    padding: 84px 0 56px;
    overflow: hidden;
}

.standard-page-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(0,19,51,.98), rgba(0,43,122,.76)),
        url('../images/nasdem-tower.jpg') center/cover no-repeat;
    opacity: .95;
}

/*
.standard-page-hero-inner {
    position: relative;
    z-index: 2;
    width: min(980px, 100%);
}*/ 

.standard-page-hero-inner {
    position: relative;
    z-index: 2;
    width: min(940px, calc(100% - 44px));
    margin: 0 auto;
}

.standard-page-hero h1 {
    max-width: 980px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.12;
    letter-spacing: -1.2px;
    margin: 0 0 22px;
}

.standard-page-wrap {
    width: min(940px, calc(100% - 44px));
    margin: -22px auto 0;
    padding-bottom: 72px;
    position: relative;
    z-index: 5;
}

.standard-page-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 65px rgba(0,0,0,.20);
}

@media (max-width: 768px) {
    .standard-page-hero {
        padding: 72px 22px 46px;
    }

    .standard-page-wrap {
        width: min(100% - 28px, 560px);
        margin-top: -16px;
        padding-bottom: 48px;
    }

    .standard-page-card {
        border-radius: 20px;
    }
}


/* ================= SCROLL TO TOP ================= */
.scroll-top-btn {
    position: fixed;
    right: 26px;
    bottom: 26px;

    width: 54px;
    height: 54px;

    border: 0;
    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #f8b900,
            #ffcf33
        );

    color: #001b4d;

    font-size: 24px;
    font-weight: 900;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0 12px 30px rgba(0,0,0,.22),
        0 6px 14px rgba(248,185,0,.25);

    opacity: 0;
    visibility: hidden;

    transform: translateY(20px);

    transition:
        opacity .25s ease,
        transform .25s ease,
        visibility .25s ease;

    z-index: 9999;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    transform: translateY(-4px);
    box-shadow:
        0 18px 40px rgba(0,0,0,.28),
        0 10px 20px rgba(248,185,0,.35);
}

.scroll-top-btn:active {
    transform: scale(.96);
}

/* MOBILE */
@media (max-width: 768px) {

    .scroll-top-btn {
        right: 18px;
        bottom: 18px;

        width: 48px;
        height: 48px;

        font-size: 22px;
    }
}

.scroll-top-btn svg {
    width: 22px;
    height: 22px;
}


/* ================= SEARCH OVERLAY ================= */
.header-search-btn {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 50%;
    background: rgba(255,255,255,.10);
    color: #fff;
    cursor: pointer;
    font-size: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.header-search-btn:hover {
    background: rgba(248,185,0,.22);
    border-color: rgba(248,185,0,.55);
}

.mobile-search-btn {
    display: none;
}

.search-overlay {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(248,185,0,.24), transparent 35%),
        rgba(0,19,51,.94);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26px;
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-close-btn {
    position: absolute;
    top: 28px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 34px;
    cursor: pointer;
}

.search-box-wrap {
    width: min(760px, 100%);
    text-align: center;
}

.search-label {
    display: inline-flex;
    color: var(--yellow);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 13px;
    margin-bottom: 20px;
}

.search-overlay-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 12px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 24px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.search-overlay-form input {
    width: 100%;
    border: 0;
    outline: none;
    background: #fff;
    color: #001b4d;
    border-radius: 16px;
    padding: 18px 20px;
    font-size: 20px;
    font-weight: 700;
}

.search-overlay-form button {
    border: 0;
    border-radius: 16px;
    background: var(--yellow);
    color: #001333;
    padding: 0 30px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

@media (max-width: 768px) {
    .desktop-menu + .header-search-btn {
        display: none;
    }

    .mobile-search-btn {
        display: inline-flex;
        margin-left: auto;
        margin-right: 12px;
    }

    .search-overlay-form {
        grid-template-columns: 1fr;
    }

    .search-overlay-form input {
        font-size: 17px;
    }

    .search-overlay-form button {
        padding: 16px 20px;
    }

    .search-close-btn {
        top: 20px;
        right: 20px;
    }
}


@media (max-width: 768px) {
    .mobile-search-btn,
    #openSearchBtnMobile {
        display: none !important;
    }

    .mobile-drawer-search {
        margin: 0 0 18px;
        padding-bottom: 18px;
        border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .mobile-drawer-search form {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 8px;
        padding: 8px;
        background: rgba(255,255,255,.08);
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 18px;
    }

    .mobile-drawer-search input {
        width: 100%;
        border: 0;
        outline: none;
        background: #fff;
        color: #001b4d;
        border-radius: 12px;
        padding: 13px 14px;
        font-size: 14px;
        font-weight: 700;
    }

    .mobile-drawer-search button {
        border: 0;
        background: var(--yellow);
        color: #001333;
        border-radius: 12px;
        padding: 0 14px;
        font-size: 12px;
        font-weight: 900;
        text-transform: uppercase;
    }
}


.footer-acc-content {
    display: none;
    padding: 0 0 16px;
}

.footer-acc-item.active .footer-acc-content {
    display: block;
}

.footer-acc-item.active button span {
    transform: rotate(45deg);
}


.page-hero-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.page-hero-meta-row .single-meta-pro {
    margin: 0;
}

.page-hero-meta-row .page-hero-actions {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-hero-meta-row .page-back-home,
.page-hero-meta-row .page-search-action {
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    border: 1px solid rgba(255,255,255,.22);
    cursor: pointer;
}

.page-hero-meta-row .page-back-home {
    background: rgba(255,255,255,.12);
    color: #fff;
}

.page-hero-meta-row .page-search-action {
    background: var(--yellow);
    color: #001333;
    border-color: var(--yellow);
}

@media (max-width: 768px) {
    .page-hero-meta-row {
        align-items: flex-start;
        gap: 14px;
    }

    .page-hero-meta-row .single-meta-pro,
    .page-hero-meta-row .page-hero-actions {
        width: 100%;
    }

    .page-hero-meta-row .page-hero-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .page-hero-meta-row .page-back-home,
    .page-hero-meta-row .page-search-action {
        width: 100%;
    }
}

.svg-meta span,
.page-back-home,
.page-search-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.svg-meta svg,
.page-back-home svg,
.page-search-action svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.page-hero-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.page-hero-actions {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-back-home,
.page-search-action {
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    border: 1px solid rgba(255,255,255,.22);
    cursor: pointer;
}

.page-back-home {
    background: rgba(255,255,255,.12);
    color: #fff;
}

.page-search-action {
    background: var(--yellow);
    color: #001333;
    border-color: var(--yellow);
}

@media (max-width: 768px) {
    .page-hero-meta-row {
        align-items: flex-start;
        gap: 14px;
    }

    .page-hero-meta-row .single-meta-pro,
    .page-hero-actions {
        width: 100%;
    }

    .page-hero-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .page-back-home,
    .page-search-action {
        justify-content: center;
        width: 100%;
    }
}

.all-news-hero-pro {
    padding: 92px 0 58px;
}

.all-news-hero-inner {
    width: min(1180px, calc(100% - 44px));
    margin: 0 auto;
    max-width: none;
}

.category-hero-actions-row {
    margin-top: 24px;
}

.category-hero-actions-row .page-hero-actions {
    margin-left: auto;
}

@media (max-width: 768px) {
    .all-news-hero-pro {
        padding: 76px 0 42px;
    }

    .all-news-hero-inner {
        width: min(100% - 28px, 560px);
    }

    .category-hero-actions-row {
        display: block;
    }

    .category-hero-actions-row .page-hero-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-top: 18px;
    }
}



.category-hero-actions-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
}

.category-hero-actions-row .page-hero-actions {
    display: flex !important;
    gap: 10px;
    margin-left: auto;
}

.page-back-home,
.page-search-action {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    border: 1px solid rgba(255,255,255,.22);
    cursor: pointer;
}

.page-back-home {
    background: rgba(255,255,255,.12);
    color: #fff;
}

.page-search-action {
    background: var(--yellow);
    color: #001333;
    border-color: var(--yellow);
}

.page-back-home svg,
.page-search-action svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .category-hero-actions-row {
        display: block;
    }

    .category-hero-actions-row .page-hero-actions {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        margin-top: 18px;
    }
}

.search-close-btn svg {
    width: 22px;
    height: 22px;
    display: block;
}

/* PAGE HERO ALIGN WITH LEFT ARTICLE CARD */
.standard-page .single-hero-inner {
    width: min(1180px, calc(100% - 44px));
    margin: 0 auto;
}

.standard-page .standard-page-hero-inner {
    width: min(1180px, calc(100% - 44px));
    margin: 0 auto;
}

@media (max-width: 768px) {
    .standard-page .single-hero-inner,
    .standard-page .standard-page-hero-inner {
        width: min(100% - 28px, 560px);
    }
}



/* ================= MARS & HYMNE YOUTUBE SECTION ================= */
.anthem-section {
    position: relative;
    width: min(1180px, calc(100% - 44px));
    margin: 80px auto;
    padding: 56px;
    border-radius: 34px;
    overflow: hidden;
    background:
        radial-gradient(circle at right bottom, rgba(248,185,0,.22), transparent 35%),
        linear-gradient(135deg, #001333 0%, #001b4d 52%, #00338f 100%);
    color: #fff;
    box-shadow: 0 26px 70px rgba(0,0,0,.22);
}

.anthem-head {
    max-width: 720px;
    margin-bottom: 34px;
}

.anthem-head h2 {
    margin: 0 0 18px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.05;
    letter-spacing: -1px;
}

.anthem-head p {
    margin: 0;
    max-width: 680px;
    color: rgba(255,255,255,.78);
    line-height: 1.8;
    font-size: 16px;
}

.section-mini-title {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--yellow);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.anthem-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.anthem-video-card {
    border: 0;
    padding: 0;
    text-align: left;
    cursor: pointer;
    overflow: hidden;
    border-radius: 16px; /* 26px */
    background: rgba(255,255,255,.96);
    color: #001b4d;
    box-shadow: 0 18px 45px rgba(0,0,0,.22);
    transition: transform .25s ease, box-shadow .25s ease;
}

.anthem-video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 65px rgba(0,0,0,.30);
}

.anthem-thumb {
    position: relative;
    height: 260px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.anthem-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,19,51,.15), rgba(0,19,51,.75));
}

.anthem-play-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: var(--yellow);
    color: #001333;
    display: grid;
    place-items: center;
    font-size: 28px;
    font-weight: 900;
    box-shadow: 0 16px 40px rgba(248,185,0,.35);
}

.anthem-card-body {
    padding: 22px;
}

.anthem-card-body small {
    display: inline-flex;
    margin-bottom: 8px;
    color: #53617c;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.anthem-card-body h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.3;
    color: #001b4d;
}

/* ================= VIDEO MODAL ================= */

.video-modal {
    position: fixed;
    inset: 0;

    z-index: 999999;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 24px;
}

.video-modal.active {
    display: flex;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(0,19,51,.88);

    backdrop-filter: blur(8px);
}

.video-modal-content {
    position: relative;
    z-index: 2;

    width: min(980px, 100%);
    aspect-ratio: 16 / 9;

    border-radius: 24px;
    overflow: hidden;

    background: #000;

    box-shadow: 0 28px 80px rgba(0,0,0,.45);
}

.video-modal-content iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.video-modal-close {
    position: absolute;

    top: 18px;
    right: 18px;

    z-index: 10;

    width: 48px;
    height: 48px;

    border: 1px solid rgba(255,255,255,.22);
    border-radius: 50%;

    background: rgba(0,0,0,.45);

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    backdrop-filter: blur(10px);

    transition: .25s ease;
}

.video-modal-close:hover {
    background: rgba(248,185,0,.18);
    border-color: rgba(248,185,0,.4);

    transform: rotate(90deg);
}

.video-modal-close svg {
    width: 22px;
    height: 22px;
}

body.video-modal-open {
    overflow: hidden;
}

@media (max-width: 768px) {

    .video-modal {
        padding: 14px;
    }

    .video-modal-content {
        border-radius: 18px;
    }

    .video-modal-close {
        top: 10px;
        right: 10px;

        width: 42px;
        height: 42px;
    }

}


@media (max-width: 768px) {
    .anthem-section {
        width: min(100% - 28px, 560px);
        margin: 44px auto;
        padding: 30px 20px;
        border-radius: 24px;
    }

    .anthem-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .anthem-thumb {
        height: 190px;
    }

    .anthem-card-body h3 {
        font-size: 18px;
    }

    .video-modal-content {
        border-radius: 16px;
    }
}

.anthem-section {
    position: relative;
    width: min(1180px, calc(100% - 44px));
    margin: 80px auto;
    padding: 56px;
    border-radius: 34px;
    overflow: hidden;
    background: radial-gradient(circle at right bottom, rgba(248,185,0,.22), transparent 35%),
                linear-gradient(135deg, #001333 0%, #001b4d 52%, #00338f 100%);
    color: #fff;
    box-shadow: 0 26px 70px rgba(0,0,0,.22);
}

.anthem-head {
    max-width: 760px;
    margin-bottom: 34px;
}

.anthem-head h2 {
    margin: 0 0 18px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.05;
}

.anthem-head p {
    margin: 0;
    max-width: 680px;
    color: rgba(255,255,255,.78);
    line-height: 1.8;
}

.anthem-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.anthem-video-card {
    border: 0;
    padding: 0;
    text-align: left;
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px; /* 26px */
    background: #fff;
    color: #001b4d;
    box-shadow: 0 18px 45px rgba(0,0,0,.22);
    transition: .25s ease;
}

.anthem-video-card:hover {
    transform: translateY(-5px);
}

.anthem-thumb {
    position: relative;
    height: 260px;
    background-size: cover;
    background-position: center;
}

.anthem-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,19,51,.10), rgba(0,19,51,.75));
}

.anthem-play-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 74px;
    height: 74px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: var(--yellow);
    color: #001333;
    display: grid;
    place-items: center;
    box-shadow: 0 16px 40px rgba(248,185,0,.35);
}

.anthem-play-icon svg {
    width: 34px;
    height: 34px;
    margin-left: 4px;
}

.anthem-card-body {
    padding: 22px;
}

.anthem-card-body small {
    color: #53617c;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.anthem-card-body h3 {
    margin: 8px 0 0;
    font-size: 22px;
    line-height: 1.3;
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.video-modal.active {
    display: flex;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,19,51,.88);
    backdrop-filter: blur(8px);
}

.video-modal-content {
    position: relative;
    z-index: 2;
    width: min(980px, 100%);
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    overflow: hidden;
    background: #000;
}

.video-modal-content iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.video-modal-close {
    position: absolute;
    top: -62px;
    right: 0;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 50%;
    background: rgba(255,255,255,.10);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.video-modal-close svg {
    width: 22px;
    height: 22px;
}

@media (max-width: 768px) {
    .anthem-section {
        width: min(100% - 28px, 560px);
        margin: 44px auto;
        padding: 30px 20px;
        border-radius: 24px;
    }

    .anthem-grid {
        grid-template-columns: 1fr;
    }

    .anthem-thumb {
        height: 190px;
    }

    .anthem-card-body h3 {
        font-size: 18px;
    }
}


.mobile-close-btn {
    width: 42px;
    height: 42px;

    border: 0;
    border-radius: 50%;

    background: rgba(255,255,255,.08);

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition: .2s ease;
}

.mobile-close-btn:hover {
    background: rgba(248,185,0,.18);
    transform: rotate(90deg);
}

.mobile-close-btn svg {
    width: 20px;
    height: 20px;
}


.header-search-btn {
    width: 48px;
    height: 48px;

    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;

    background: rgba(255,255,255,.08);

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition: .25s ease;
}

.header-search-btn:hover {
    background: rgba(248,185,0,.18);
    border-color: rgba(248,185,0,.35);
    transform: translateY(-2px);
}

.header-search-btn svg {
    width: 20px;
    height: 20px;
}



/* ================= FINAL ICON BUTTON FIX ================= */

.header-search-btn,
.mobile-menu-btn,
.mobile-close-btn,
.search-close-btn {
    font-size: 0 !important;
}

.header-search-btn svg,
.mobile-menu-btn svg,
.mobile-close-btn svg,
.search-close-btn svg {
    width: 22px;
    height: 22px;
    display: block;
}

.header-search-btn,
.mobile-menu-btn {
    width: 48px !important;
    height: 48px !important;
    border: 1px solid rgba(255,255,255,.16) !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,.08) !important;
    color: #fff !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-search-btn {
    display: inline-flex !important;
}

.mobile-menu-btn {
    display: none !important;
}

.header-search-btn:hover,
.mobile-menu-btn:hover,
.mobile-close-btn:hover,
.search-close-btn:hover {
    background: rgba(248,185,0,.18) !important;
    border-color: rgba(248,185,0,.4) !important;
}

.mobile-close-btn,
.search-close-btn {
    width: 46px !important;
    height: 46px !important;
    border: 1px solid rgba(255,255,255,.18) !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,.08) !important;
    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
}

@media (max-width: 768px) {
    .header-search-btn {
        display: none !important;
    }

    .mobile-menu-btn {
        display: inline-flex !important;
    }
}



/* FINAL VIDEO MODAL FIX */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.video-modal.active {
    display: flex;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 19, 51, .9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.video-modal-content {
    position: relative;
    z-index: 2;
    width: min(980px, 100%);
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(0,0,0,.45);
}

.video-modal-content iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 1;
}

.video-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 30;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 50%;
    background: rgba(0,0,0,.58);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: .25s ease;
}

.video-modal-close:hover {
    background: rgba(248,185,0,.25);
    border-color: rgba(248,185,0,.5);
    transform: rotate(90deg);
}

.video-modal-close svg {
    width: 22px;
    height: 22px;
    display: block;
}

body.video-modal-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .video-modal {
        padding: 14px;
    }

    .video-modal-content {
        border-radius: 18px;
    }

    .video-modal-close {
        top: 10px;
        right: 10px;
        width: 42px;
        height: 42px;
    }

    .video-modal-close svg {
        width: 20px;
        height: 20px;
    }
}


.btn-with-icon {
    gap: 8px;
}

.btn-with-icon svg {
    width: 16px;
    height: 16px;
}

.value-icon svg {
    width: 30px;
    height: 30px;
}


.footer-social a svg {
    width: 18px;
    height: 18px;
}

.footer-acc-content a {
    display: block;
    color: rgba(255,255,255,.78);
    padding: 8px 0;
    font-size: 14px;
}

.footer-acc-content a:hover {
    color: var(--yellow);
}

/* ================= PREMIUM PAGE DEFAULT SIDEBAR ================= */
.sidebar-latest-widget {
    padding: 0 !important;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(244,247,255,.98)) !important;
    border: 1px solid rgba(0,27,77,.08);
}

.sidebar-widget-head {
    padding: 22px 22px 18px;
    background:
        radial-gradient(circle at top right, rgba(248,185,0,.20), transparent 38%),
        linear-gradient(135deg, #001333, #002b7a);
    color: #fff;
}

.sidebar-widget-head span {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--yellow);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.sidebar-widget-head h3 {
    margin: 0 !important;
    color: #fff !important;
    font-size: 20px !important;
    line-height: 1.2;
}

.sidebar-latest-list {
    padding: 12px;
}

.sidebar-thumb-news {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 13px;
    align-items: center;
    padding: 11px;
    border-radius: 16px;
    color: #001b4d;
    transition: .22s ease;
}

.sidebar-thumb-news + .sidebar-thumb-news {
    margin-top: 6px;
}

.sidebar-thumb-news:hover {
    background: rgba(0,27,77,.055);
    transform: translateX(3px);
}

.sidebar-thumb-img {
    width: 82px;
    height: 66px;
    border-radius: 14px;
    overflow: hidden;
    background: #e8edf7;
    display: block;
    position: relative;
    flex-shrink: 0;
}

.sidebar-thumb-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0,19,51,.16));
    pointer-events: none;
}

.sidebar-thumb-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .28s ease;
}

.sidebar-thumb-news:hover .sidebar-thumb-img img {
    transform: scale(1.06);
}

.sidebar-thumb-text {
    min-width: 0;
    display: block;
}

.sidebar-thumb-text small {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 6px;
    color: #6c7890;
    font-size: 11px;
    font-weight: 800;
}

.sidebar-thumb-text small svg {
    width: 13px;
    height: 13px;
}

.sidebar-thumb-text strong {
    display: -webkit-box;
    color: #001b4d;
    font-size: 13.5px;
    line-height: 1.38;
    font-weight: 900;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-thumb-news:hover .sidebar-thumb-text strong {
    color: #00338f;
}

@media (max-width: 1024px) {
    .sidebar-latest-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .sidebar-thumb-news + .sidebar-thumb-news {
        margin-top: 0;
    }
}

@media (max-width: 640px) {
    .sidebar-latest-list {
        grid-template-columns: 1fr;
    }

    .sidebar-thumb-news {
        grid-template-columns: 78px minmax(0, 1fr);
    }

    .sidebar-thumb-img {
        width: 78px;
        height: 62px;
    }
}



/* ================= SOFT BLUE + WHITE GRADIENT FIX ================= */

/* HERO DESKTOP */
.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            20deg,
            rgba(0,27,77,.84),
            rgba(0,27,77,.52),
            rgba(0,27,77,.16)
        ),
        radial-gradient(
            circle at top right,
            rgba(255,255,255,.28),
            transparent 42%
        ),
        radial-gradient(
            circle at bottom left,
            rgba(255,255,255,.12),
            transparent 38%
        );
    z-index: 1;
}

/* HERO MOBILE */
@media (max-width: 768px) {
    .hero-gradient {
        background:
            linear-gradient(
                180deg,
                rgba(0,27,77,.38),
                rgba(0,27,77,.74)
            ),
            radial-gradient(
                circle at top center,
                rgba(255,255,255,.26),
                transparent 42%
            ),
            radial-gradient(
                circle at bottom right,
                rgba(255,255,255,.10),
                transparent 38%
            );
    }
}

/* MARS & HYMNE SECTION */
.anthem-section {
    background:
        radial-gradient(
            circle at top right,
            rgba(255,255,255,.32),
            transparent 34%
        ),
        radial-gradient(
            circle at bottom left,
            rgba(248,185,0,.18),
            transparent 36%
        ),
        linear-gradient(
            135deg,
            #001b4d 0%,
            #00338f 48%,
            #4f8dff 100%
        ) !important;
}

/* FOOTER */
.site-footer {
    background:
        radial-gradient(
            circle at top left,
            rgba(255,255,255,.22),
            transparent 38%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(248,185,0,.16),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #001333 0%,
            #001b4d 46%,
            #2f6fe6 100%
        ) !important;
}

/* FOOTER MOBILE LEBIH TERANG */
@media (max-width: 768px) {
    .site-footer {
        background:
            radial-gradient(
                circle at top center,
                rgba(255,255,255,.22),
                transparent 42%
            ),
            linear-gradient(
                180deg,
                #001b4d 0%,
                #00338f 100%
            ) !important;
    }

    .anthem-section {
        background:
            radial-gradient(
                circle at top right,
                rgba(255,255,255,.26),
                transparent 38%
            ),
            radial-gradient(
                circle at bottom left,
                rgba(248,185,0,.16),
                transparent 38%
            ),
            linear-gradient(
                160deg,
                #001b4d 0%,
                #00338f 58%,
                #5b94ff 100%
            ) !important;
    }
}

/* ================= END SOFT BLUE + WHITE GRADIENT FIX ================= */

/* ================= SUBTLE ANIMATED GRADIENT ================= */
.hero-gradient,
.anthem-section,
.site-footer {
    background-size: 180% 180% !important;
    animation: softGradientMove 18s ease-in-out infinite;
}

@keyframes softGradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Respect user accessibility setting */
@media (prefers-reduced-motion: reduce) {
    .hero-gradient,
    .anthem-section,
    .site-footer {
        animation: none !important;
    }
}

/* ================= END SUBTLE ANIMATED GRADIENT ================= */

/* ================= PAGE HERO SOFT WHITE GRADIENT ================= */

.standard-page-hero,
.single-hero-pro,
.all-news-hero-pro {
    position: relative;
    overflow: hidden;
}

/* Background layer */
.standard-page-bg,
.single-hero-bg,
.all-news-hero-pro::before {
    background:
        linear-gradient(
            135deg,
            rgba(0,27,77,.82),
            rgba(0,51,143,.58),
            rgba(0,51,143,.20)
        ),

        radial-gradient(
            circle at top right,
            rgba(255,255,255,.28),
            transparent 42%
        ),

        radial-gradient(
            circle at bottom left,
            rgba(255,255,255,.12),
            transparent 38%
        ) !important;

    background-size: 180% 180% !important;

    animation: softGradientMove 28s ease-in-out infinite;
}

/* Hero content */
.standard-page-hero-inner,
.single-hero-inner,
.all-news-hero-inner {
    position: relative;
    z-index: 2;
}

/* MOBILE */
@media (max-width: 768px) {

    .standard-page-bg,
    .single-hero-bg,
    .all-news-hero-pro::before {

        background:
            linear-gradient(
                180deg,
                rgba(0,27,77,.52),
                rgba(0,51,143,.78)
            ),

            radial-gradient(
                circle at top center,
                rgba(255,255,255,.22),
                transparent 42%
            ),

            radial-gradient(
                circle at bottom right,
                rgba(255,255,255,.10),
                transparent 38%
            ) !important;
    }

}

/* ================= PAGE HERO SOFT WHITE GRADIENT ================= */


/* ================= FIX PAGE HERO: IMAGE + SOFT GRADIENT ================= */

.standard-page-bg,
.single-hero-bg {
    background:
        linear-gradient(
            135deg,
            rgba(0,27,77,.82),
            rgba(0,51,143,.55),
            rgba(0,51,143,.18)
        ),
        radial-gradient(
            circle at top right,
            rgba(255,255,255,.26),
            transparent 42%
        ),
        radial-gradient(
            circle at bottom left,
            rgba(255,255,255,.10),
            transparent 38%
        ),
        url('../images/nasdem-tower.jpg') center/cover no-repeat !important;

    opacity: 1 !important;
}

/* CATEGORY / BERITA PAGE HERO TANPA IMAGE, TETAP SOFT GRADIENT */
.all-news-hero-pro {
    background:
        linear-gradient(
            135deg,
            rgba(0,27,77,.86),
            rgba(0,51,143,.58),
            rgba(0,51,143,.20)
        ),
        radial-gradient(
            circle at top right,
            rgba(255,255,255,.26),
            transparent 42%
        ),
        radial-gradient(
            circle at bottom left,
            rgba(255,255,255,.10),
            transparent 38%
        ) !important;
}

/* MOBILE */
@media (max-width: 768px) {
    .standard-page-bg,
    .single-hero-bg {
        background:
            linear-gradient(
                180deg,
                rgba(0,27,77,.55),
                rgba(0,51,143,.76)
            ),
            radial-gradient(
                circle at top center,
                rgba(255,255,255,.22),
                transparent 42%
            ),
            radial-gradient(
                circle at bottom right,
                rgba(255,255,255,.10),
                transparent 38%
            ),
            url('../images/nasdem-tower.jpg') center/cover no-repeat !important;
    }

    .all-news-hero-pro {
        background:
            linear-gradient(
                180deg,
                rgba(0,27,77,.58),
                rgba(0,51,143,.78)
            ),
            radial-gradient(
                circle at top center,
                rgba(255,255,255,.22),
                transparent 42%
            ),
            radial-gradient(
                circle at bottom right,
                rgba(255,255,255,.10),
                transparent 38%
            ) !important;
    }
}


/* ================= DASHBOARD WIDGET SIDEBAR STYLE ================= */
.page-sidebar-widget-area .sidebar-widget,
.page-sidebar-widget-area .widget {
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(244,247,255,.98));
    border: 1px solid rgba(0,27,77,.08);
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 20px 42px rgba(0,0,0,.14);
    overflow: hidden;
}

.page-sidebar-widget-area .sidebar-widget + .sidebar-widget,
.page-sidebar-widget-area .widget + .widget {
    margin-top: 18px;
}

.page-sidebar-widget-area h3,
.page-sidebar-widget-area .widget-title {
    margin: -22px -22px 18px;
    padding: 18px 22px;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,.26), transparent 40%),
        linear-gradient(135deg, #001b4d 0%, #00338f 58%, #5b94ff 100%);
    color: #fff;
    font-size: 18px;
    line-height: 1.25;
}

.page-sidebar-widget-area ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-sidebar-widget-area li {
    padding: 11px 0;
    border-bottom: 1px solid rgba(0,27,77,.08);
    color: #001b4d;
    font-size: 14px;
    line-height: 1.5;
}

.page-sidebar-widget-area li:last-child {
    border-bottom: 0;
}

.page-sidebar-widget-area a {
    color: #001b4d;
    font-weight: 800;
}

.page-sidebar-widget-area a:hover {
    color: #00338f;
}

.page-sidebar-widget-area input,
.page-sidebar-widget-area select,
.page-sidebar-widget-area textarea {
    width: 100%;
    border: 1px solid rgba(0,27,77,.12);
    border-radius: 14px;
    padding: 12px 14px;
    outline: none;
}

.page-sidebar-widget-area button,
.page-sidebar-widget-area input[type="submit"] {
    border: 0;
    border-radius: 999px;
    background: var(--yellow);
    color: #001333;
    padding: 12px 18px;
    font-weight: 900;
    cursor: pointer;
}

.page-sidebar-widget-area img {
    border-radius: 14px;
}



/* ================= MOBILE STATIC IMAGE INSIDE NEWS ================= */

/* Desktop/tablet: static image disembunyikan */
.mobile-news-static {
    display: none;
}

/* Mobile only */
/* 
@media (max-width: 768px) {
    .mobile-news-static {
        display: block;
        width: 100%;
        height: 176px;
        border-radius: 18px;
        overflow: hidden;
        position: relative;
        box-shadow: 0 18px 40px rgba(0,27,77,.14);
        background: #e8edf7;
    }

    .mobile-news-static img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .mobile-news-static::after {
        content: "";
        position: absolute;
        inset: 0;
        background:
            linear-gradient(
                180deg,
                rgba(0,27,77,.05),
                rgba(0,27,77,.35)
            );
        pointer-events: none;
    }
}

@media (max-width: 420px) {
    .mobile-news-static {
        height: 243px;
    }
}
*/ 

@media (max-width: 768px) {
    .mobile-news-static {
        display: block;
        width: 100%;
        height: 250px;
        border-radius: 6px;
        overflow: hidden;
        position: relative;
        box-shadow: 0 18px 40px rgba(0,27,77,.14);
        background: #e8edf7;
    }

    .mobile-news-static img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }
}

@media (max-width: 420px) {
	object-fit: contain;
    background: #001b4d;
    .mobile-news-static {
        height: 250px;
    }

}


.footer-social {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
}

.footer-social a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    transition: .25s ease;
}

.footer-social a:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,.16);
    border-color: rgba(255,255,255,.24);
}

.footer-social svg {
    width: 22px;
    height: 22px;
}

/* ================= FOOTER CONTACT ================= */

.footer-acc-content {
    display: none;
    padding-top: 18px;
}

.footer-acc-item.active .footer-acc-content {
    display: block;
}

.footer-contact-item + .footer-contact-item {
    margin-top: 18px;
}

.footer-contact-item strong {
    display: block;
    color: #fff;
    font-size: 15px;
    margin-bottom: 8px;
    font-weight: 800;
}

.footer-contact-item p,
.footer-contact-item a {
    color: rgba(255,255,255,.78);
    line-height: 1.7;
    font-size: 14px;
}

.footer-contact-item a:hover {
    color: #fff;
}

/* ================= COMMENT FORM PREMIUM ================= */

.single-comments-inside {
    margin-top: 34px;
    padding-top: 30px;
    border-top: 1px solid rgba(0,27,77,.08);
}

.comments-modern-wrap {
    margin-top: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.comments-head span {
    display: inline-flex;
    color: var(--yellow);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 8px;
}

.comments-head h3,
.comment-reply-title {
    margin: 0 0 18px;
    color: #001b4d;
    font-size: 26px;
    line-height: 1.2;
}

.comment-notes {
    color: #66758f;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.comment-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 20px;
}

.comment-form p {
    margin: 0;
}

.comment-form-comment,
.comment-form-url,
.comment-form-cookies-consent,
.form-submit {
    grid-column: 1 / -1;
}

.comment-form label {
    display: block;
    color: #001b4d;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 8px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    border: 1px solid rgba(0,27,77,.12);
    border-radius: 16px;
    background: #f7f9ff;
    color: #001b4d;
    padding: 15px 16px;
    font-size: 15px;
    outline: none;
    transition: .22s ease;
}

.comment-form textarea {
    min-height: 150px;
    resize: vertical;
}

.comment-form input:focus,
.comment-form textarea:focus {
    background: #fff;
    border-color: rgba(0,51,143,.38);
    box-shadow: 0 0 0 4px rgba(0,51,143,.08);
}

.comment-form-cookies-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #66758f;
    font-size: 13px;
    line-height: 1.6;
}

.comment-form-cookies-consent input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.comment-form-cookies-consent label {
    margin: 0;
    font-weight: 600;
    color: #66758f;
}

.form-submit input[type="submit"],
.comment-form input[type="submit"] {
    border: 0;
    background: var(--yellow);
    color: #001333;
    padding: 15px 26px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    transition: .22s ease;
}

.form-submit input[type="submit"]:hover,
.comment-form input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(248,185,0,.28);
}

@media (max-width: 768px) {
    .comment-form {
        grid-template-columns: 1fr;
    }

    .comments-head h3,
    .comment-reply-title {
        font-size: 22px;
    }
}

.single-comments-inside {
    padding-left: 20px;
    padding-right: 20px;
	padding-bottom:20px;
}

/* ================= COMMENT FORM MOBILE FIX ================= */
@media (max-width: 768px) {
    .single-comments-inside {
        margin-top: 26px;
        padding: 24px 0 0;
	    padding-left: 10px;
	    padding-right: 10px;
		padding-bottom:10px;
    }

    .comments-modern-wrap {
        width: 100%;
    }

    .comment-form {
        display: block;
        margin-top: 18px;
    }

    .comment-form p {
        margin-bottom: 14px;
    }

    .comment-form label {
        font-size: 12px;
        margin-bottom: 7px;
    }

    .comment-form input[type="text"],
    .comment-form input[type="email"],
    .comment-form input[type="url"],
    .comment-form textarea {
        width: 100%;
        max-width: 100%;
        border-radius: 14px;
        padding: 14px;
        font-size: 14px;
        box-sizing: border-box;
    }

    .comment-form textarea {
        min-height: 130px;
    }

    .comment-form-cookies-consent {
        display: grid;
        grid-template-columns: 20px 1fr;
        gap: 10px;
        align-items: flex-start;
        font-size: 12px;
    }

    .form-submit input[type="submit"],
    .comment-form input[type="submit"] {
        width: 100%;
        padding: 15px 20px;
        border-radius: 16px;
    }
}

.front-news-loadmore {
	margin-top:10px;
    min-height: 56px;
    padding: 0 26px;
    border: 1px solid rgba(255,255,255,.12);

    border-radius: 999px;

    background:
        radial-gradient(circle at top right,
        rgba(255,255,255,.18),
        transparent 42%),

        linear-gradient(
            135deg,
            rgba(255,255,255,.96),
            rgba(244,247,255,.96)
        );

    color: #001b4d;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    font-size: 13px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;

    cursor: pointer;

    box-shadow:
        0 14px 34px rgba(0,27,77,.08),
        inset 0 1px 0 rgba(255,255,255,.8);

    transition: .24s ease;
}

.front-news-loadmore svg {
    width: 20px;
    height: 20px;
    opacity: .72;
    transition: .24s ease;
}

.front-news-loadmore:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 44px rgba(0,27,77,.14),
        inset 0 1px 0 rgba(255,255,255,.9);
}

.front-news-loadmore:hover svg {
    transform: translateY(2px);
    opacity: 1;
}

/* ================= PREMIUM LOAD MORE ================= */

.front-news-loadmore-wrap {
    display: flex;
    justify-content: center;
    margin-top: 54px;
    margin-bottom: 10px;
    position: relative;
}

.front-news-loadmore {
    position: relative;

    min-height: 64px;
    padding: 0 34px;

    border: 1px solid rgba(255,255,255,.75);

    border-radius: 999px;

    background:
        radial-gradient(
            circle at top right,
            rgba(255,255,255,.95),
            rgba(255,255,255,.15) 45%
        ),

        linear-gradient(
            135deg,
            #ffffff,
            #f4f7ff
        );

    color: #001b4d;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;

    cursor: pointer;

    box-shadow:
        0 18px 42px rgba(0,27,77,.08),
        0 4px 12px rgba(0,27,77,.04),
        inset 0 1px 0 rgba(255,255,255,.95);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;

    overflow: hidden;
}

.front-news-loadmore::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            120deg,
            transparent 0%,
            rgba(255,255,255,.55) 45%,
            transparent 100%
        );

    transform: translateX(-120%);
    transition: transform .7s ease;
}

.front-news-loadmore:hover::before {
    transform: translateX(120%);
}

.front-news-loadmore:hover {
    transform: translateY(-4px);

    box-shadow:
        0 24px 54px rgba(0,27,77,.12),
        0 10px 20px rgba(0,27,77,.06),
        inset 0 1px 0 rgba(255,255,255,1);
}

.front-news-loadmore span {
    position: relative;
    z-index: 2;
}

.front-news-loadmore svg {
    width: 20px;
    height: 20px;

    opacity: .75;

    position: relative;
    z-index: 2;

    transition:
        transform .25s ease,
        opacity .25s ease;
}

.front-news-loadmore:hover svg {
    transform: translateY(3px);
    opacity: 1;
}

.front-news-loadmore.loading svg {
    animation: premiumLoadMoreSpin 1s linear infinite;
}

.front-news-loadmore.finished {
    opacity: .7;
    cursor: default;
}

@keyframes premiumLoadMoreSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .front-news-loadmore-wrap {
        margin-top: 34px;
        padding: 0 8px;
    }

    .front-news-loadmore {
        width: 100%;
        min-height: 58px;

        border-radius: 22px;

        justify-content: center;

        font-size: 12px;
        letter-spacing: .06em;
    }

}



/* ================= HERO NEWS SLIDE TYPOGRAPHY FIX ================= */

/* Desktop khusus slide artikel */
@media (min-width: 769px) {
    .hero-section.is-news-slide .hero-content {
        max-width: 820px;
    }

    .hero-section.is-news-slide #heroTitle {
        max-width: 820px;
        font-size: clamp(52px, 4.7vw, 78px);
        line-height: 1.02;
        letter-spacing: -1.8px;
    }

    .hero-section.is-news-slide #heroDesc {
        max-width: 620px;
        font-size: 18px;
        line-height: 1.75;
    }
}

/* Mobile khusus slide artikel */
@media (max-width: 768px) {
    .hero-section.is-news-slide #heroTitle {
        font-size: clamp(38px, 10vw, 48px);
        line-height: 1.05;
        letter-spacing: -1px;
    }

    .hero-section.is-news-slide #heroDesc {
        font-size: 15px;
        line-height: 1.75;
        max-width: 100%;
    }

    .hero-section.is-news-slide .hero-buttons {
        margin-top: 24px;
    }
}


/* ================= HERO DOTS SPACING FIX ================= */

.hero-buttons {
    margin-bottom: 46px;
}

.hero-slider-dots {
    bottom: 28px;
    left: 60px;
    transform: none;
    z-index: 6;
}

@media (max-width: 768px) {
    .hero-buttons {
        margin-bottom: 38px;
    }

    .hero-slider-dots {
        bottom: 22px;
        left: 28px;
    }
}


/* HERO ARTICLE SLIDE */
.hero-section.is-news-slide .hero-content {
    padding-bottom: 70px;
}

.hero-section.is-news-slide .hero-slider-dots {
    bottom: 34px;
}

/* ================= HERO DESKTOP DRAG ================= */

.hero-section {
    cursor: grab;
    user-select: none;
}

.hero-section.dragging {
    cursor: grabbing;
}

.hero-buttons,
.hero-buttons a,
.hero-navbar,
.hero-navbar a,
.hero-navbar button,
.hero-slider-dots,
.hero-slider-dots button {
    cursor: pointer;
}