/*
Theme Name: ArusMadura Child
Template: blocksy
Theme URI: https://arusmadura.com
Author: ArusMadura.com
Description: Custom theme ArusMadura.com
Version: 1.0.0
*/

/* ==================================================
   ARUS MADURA
   CSS DESAIN ASLI
================================================== */
/* =====================================================
   ARUSMADURA.COM
   MOBILE FIRST
   MODERN NEWS PORTAL
===================================================== */


/* =====================================================
   RESET
===================================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #ffffff;
    color: #17202a;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    line-height: 1.5;

    overflow-x: hidden;

    transition:
        background .3s ease,
        color .3s ease;
}

button,
input,
textarea {
    font-family: inherit;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    width: 100%;
}


/* =====================================================
   VARIABLES
===================================================== */

:root {

    --navy-dark: #061c32;
    --navy: #082b4c;
    --navy-light: #10456f;

    --gold-dark: #b88600;
    --gold: #d9a900;
    --gold-bright: #f2c300;

    --black: #111827;
    --white: #ffffff;

    --text: #17202a;
    --muted: #6b7280;

    --border: #e5e7eb;
    --surface: #f7f8fa;

    --radius: 10px;

    --shadow:
        0 5px 20px rgba(0,0,0,.07);
}


/* =====================================================
   DARK MODE
===================================================== */

body.dark {

    --text: #f2f2f2;
    --muted: #a5a5a5;

    --border: #2d3748;
    --surface: #151d27;

    background: #0b1118;
    color: #f2f2f2;
}


/* =====================================================
   HEADER
===================================================== */

.site-header {

    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;

    background:
        linear-gradient(
            135deg,
            #061c32,
            #082b4c 55%,
            #10456f
        );

    color: #ffffff;

    box-shadow:
        0 3px 15px rgba(0,0,0,.16);
}


.header-inner {

    width: 100%;
    min-height: 67px;

    padding:
        9px 14px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;
}


/* =====================================================
   MENU BUTTON
===================================================== */

.menu-button {

    width: 39px;
    height: 39px;

    flex: 0 0 39px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 5px;

    border: 0;
    background: transparent;

    padding: 0;
}

.menu-button span {

    display: block;

    width: 21px;
    height: 2px;

    background: #ffffff;

    border-radius: 5px;

    transition: .25s ease;
}


/* MENU ACTIVE */

.menu-button.active span:nth-child(1) {
    transform:
        translateY(7px)
        rotate(45deg);
}

.menu-button.active span:nth-child(2) {
    opacity: 0;
}

.menu-button.active span:nth-child(3) {
    transform:
        translateY(-7px)
        rotate(-45deg);
}


/* =====================================================
   LOGO
===================================================== */

.logo {

    min-width: 0;

    flex: 1;

    text-align: center;

    line-height: 1;
}

.logo strong {

    display: block;

    font-size: 21px;

    font-weight: 900;

    letter-spacing: -1px;

    white-space: nowrap;
}

.logo strong span {
    color: var(--gold-bright);
}

.logo strong b {

    color: #ffffff;

    font-weight: 800;
}

.logo small {

    display: block;

    margin-top: 5px;

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 1.1px;

    opacity: .9;

    white-space: nowrap;
}


/* =====================================================
   HEADER ACTIONS
===================================================== */

.header-actions {

    display: flex;
    align-items: center;

    gap: 2px;

    flex: 0 0 auto;
}


.theme-button,
.search-button {

    width: 39px;
    height: 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;

    background: transparent;

    color: #ffffff;

    border-radius: 50%;

    transition: background .2s ease;
}

.theme-button:hover,
.search-button:hover {

    background:
        rgba(255,255,255,.14);
}


.theme-icon {

    font-size: 17px;

    line-height: 1;
}


/* =====================================================
   SEARCH ICON
===================================================== */

.search-button span {

    position: relative;

    width: 16px;
    height: 16px;

    border:
        2px solid #ffffff;

    border-radius: 50%;
}

.search-button span::after {

    content: "";

    position: absolute;

    width: 7px;
    height: 2px;

    background: #ffffff;

    right: -6px;
    bottom: -3px;

    transform: rotate(45deg);

    border-radius: 3px;
}


/* =====================================================
   SEARCH PANEL
===================================================== */

.search-panel {

    position: sticky;
    top: 67px;

    z-index: 900;

    display: none;

    padding: 10px 14px;

    background: var(--white);

    border-bottom:
        1px solid var(--border);

    box-shadow:
        0 4px 12px rgba(0,0,0,.05);
}

.search-panel.show {
    display: block;
}

.search-form {

    display: flex;

    width: 100%;

    gap: 7px;
}

.search-form input {

    flex: 1;

    min-width: 0;

    height: 42px;

    padding: 0 13px;

    border:
        1px solid var(--border);

    border-radius: 7px;

    background: var(--surface);

    color: var(--text);

    outline: none;
}

.search-form input:focus {

    border-color: var(--gold);
}

.search-form button {

    height: 42px;

    padding:
        0 15px;

    border: 0;

    border-radius: 7px;

    background:
        linear-gradient(
            135deg,
            var(--navy-dark),
            var(--navy)
        );

    color: #ffffff;

    font-size: 11px;

    font-weight: 800;
}


/* =====================================================
   CATEGORY
===================================================== */

.category-nav {

    width: 100%;

    background: var(--white);

    border-bottom:
        1px solid var(--border);

    overflow: hidden;
}

.category-scroll {

    display: flex;
    align-items: center;

    width: max-content;

    gap: 22px;

    padding:
        10px 15px;

    overflow-x: auto;
    overflow-y: hidden;

    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;

    touch-action: pan-x;
}

.category-scroll::-webkit-scrollbar {
    display: none;
}

.category-scroll a {

    flex: 0 0 auto;

    position: relative;

    color: var(--muted);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .35px;

    white-space: nowrap;

    padding: 2px 0;
}

.category-scroll a.active {

    color: var(--navy);
}

.category-scroll a.active::after {

    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: -11px;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            var(--navy),
            var(--gold-bright)
        );
}


/* =====================================================
   BREAKING NEWS
===================================================== */

.breaking-news {

    width: 100%;

    height: 34px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            #061c32,
            #0b243d
        );

    color: #ffffff;
}

.breaking-window {

    width: 100%;

    overflow: hidden;
}

.breaking-track {

    display: flex;
    align-items: center;

    width: max-content;

    gap: 20px;

    white-space: nowrap;

    animation:
        breakingMove 32s linear infinite;
}

.breaking-track span {

    font-size: 10px;

    font-weight: 600;

    letter-spacing: .1px;
}

.breaking-track b {

    color: var(--gold-bright);

    font-size: 14px;
}

@keyframes breakingMove {

    from {
        transform: translateX(100vw);
    }

    to {
        transform: translateX(-100%);
    }

}


/* =====================================================
   MAIN
===================================================== */

main {

    width: 100%;

    max-width: 1180px;

    margin: 0 auto;
}


/* =====================================================
   HEADLINE
===================================================== */

.headline {

    position: relative;

    width: 100%;

    overflow: hidden;

    background: #111111;
}

.headline-link {

    display: block;

    position: relative;

    aspect-ratio: 1.18 / 1;
}

.headline-image {

    position: absolute;

    inset: 0;
}

.headline-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .5s ease;
}

.headline-link:hover
.headline-image img {

    transform: scale(1.03);
}


.headline-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0) 30%,
            rgba(0,0,0,.18) 45%,
            rgba(0,0,0,.92) 100%
        );
}


.headline-info {

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding:
        25px 16px 18px;
}

.headline-category {

    display: inline-block;

    margin-bottom: 7px;

    padding:
        4px 8px;

    background: var(--gold);

    color: #ffffff;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: .7px;
}

.headline-info h1 {

    max-width: 650px;

    color: #ffffff;

    font-size: 24px;

    line-height: 1.12;

    font-weight: 900;

    letter-spacing: -.6px;
}

.headline-info p {

    margin-top: 8px;

    color: rgba(255,255,255,.78);

    font-size: 11px;

    line-height: 1.45;
}


/* =====================================================
   SECTIONS
===================================================== */

.section,
.news-category,
.popular-section,
.video-section,
.report-section {

    padding:
        25px 15px;
}


/* =====================================================
   SECTION HEADING
===================================================== */

.section-heading {

    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 10px;

    margin-bottom: 15px;
}

.section-kicker {

    display: block;

    margin-bottom: 2px;

    color: var(--gold-dark);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.1px;
}

.section-heading h2 {

    color: var(--text);

    font-size: 18px;

    line-height: 1.1;

    font-weight: 900;

    letter-spacing: -.3px;
}

.section-more {

    flex: 0 0 auto;

    color: var(--navy);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: .4px;
}


/* =====================================================
   EDITOR
===================================================== */

.editor-card {

    overflow: hidden;

    background: var(--surface);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);

    box-shadow:
        var(--shadow);
}

.editor-image {

    aspect-ratio: 16 / 9;

    overflow: hidden;
}

.editor-image img {

    height: 100%;

    object-fit: cover;

    transition:
        transform .4s ease;
}

.editor-card:hover
.editor-image img {

    transform: scale(1.04);
}

.editor-info {

    padding:
        13px 14px 15px;
}

.editor-category {

    color: var(--gold-dark);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: .7px;
}

.editor-info h3 {

    margin-top: 5px;

    font-size: 18px;

    line-height: 1.2;

    font-weight: 900;

    color: var(--text);
}

.editor-info p {

    margin-top: 6px;

    color: var(--muted);

    font-size: 11px;
}


/* =====================================================
   DOTS
===================================================== */

.slider-dots {

    display: flex;

    justify-content: center;

    gap: 5px;

    margin-top: 12px;
}

.slider-dots span {

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #cfcfcf;
}

.slider-dots span.active {

    width: 16px;

    border-radius: 5px;

    background: var(--gold);
}


/* =====================================================
   LATEST
===================================================== */

.latest-list {

    display: flex;

    flex-direction: column;
}

.latest-item {

    border-bottom:
        1px solid var(--border);
}

.latest-item:last-child {
    border-bottom: 0;
}

.latest-item > a {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        104px;

    gap: 12px;

    padding:
        13px 0;
}

.latest-content {

    min-width: 0;
}

.category {

    display: inline-block;

    color: var(--navy-light);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: .7px;
}

.latest-content h3 {

    margin-top: 4px;

    color: var(--text);

    font-size: 14px;

    line-height: 1.28;

    font-weight: 800;
}

.latest-content time {

    display: block;

    margin-top: 7px;

    color: var(--muted);

    font-size: 9px;
}

.latest-image {

    width: 104px;

    height: 76px;

    overflow: hidden;

    border-radius: 7px;
}

.latest-image img {

    height: 100%;

    object-fit: cover;
}


/* =====================================================
   VIDEO
===================================================== */

.video-section {

    background:
        linear-gradient(
            180deg,
            var(--surface),
            var(--white)
        );
}

.video-scroll {

    display: flex;

    gap: 12px;

    overflow-x: auto;

    scrollbar-width: none;

    padding-bottom: 4px;

    -webkit-overflow-scrolling: touch;
}

.video-scroll::-webkit-scrollbar {
    display: none;
}

.video-card {

    flex:
        0 0 72%;

    max-width: 280px;
}

.video-image {

    position: relative;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    border-radius: 8px;

    background: #111;
}

.video-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.play-button {

    position: absolute;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(8,43,76,.94);

    color: #ffffff;

    font-size: 14px;

    padding-left: 2px;

    border: 2px solid var(--gold);
}

.video-card h3 {

    margin-top: 8px;

    color: var(--text);

    font-size: 13px;

    line-height: 1.3;

    font-weight: 800;
}


/* =====================================================
   NEWS GRID
===================================================== */

.news-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 16px 10px;
}

.grid-card {

    min-width: 0;
}

.grid-card img {

    aspect-ratio: 1.35 / 1;

    object-fit: cover;

    border-radius: 7px;
}

.grid-card h3 {

    margin-top: 5px;

    color: var(--text);

    font-size: 13px;

    line-height: 1.3;

    font-weight: 800;
}

.grid-card .category {

    margin-top: 7px;
}


/* =====================================================
   REPORT
===================================================== */

.report-section {

    background:
        linear-gradient(
            135deg,
            var(--navy-dark),
            var(--navy),
            var(--navy-light)
        );

    color: #ffffff;
}

.report-section .section-kicker,
.report-section .section-heading h2,
.report-section .section-more {

    color: #ffffff;
}

.report-box {

    padding: 16px;

    border:
        1px solid rgba(255,255,255,.18);

    border-radius:
        var(--radius);

    background:
        rgba(0,0,0,.14);

    backdrop-filter:
        blur(5px);
}

.report-intro {

    display: flex;

    gap: 11px;

    margin-bottom: 15px;
}

.report-icon {

    width: 32px;
    height: 32px;

    flex: 0 0 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--gold-bright);

    color: var(--navy-dark);

    font-weight: 900;
}

.report-intro h3 {

    font-size: 15px;

    line-height: 1.2;
}

.report-intro p {

    margin-top: 4px;

    color:
        rgba(255,255,255,.8);

    font-size: 10px;

    line-height: 1.5;
}

.report-box form {

    display: flex;

    flex-direction: column;

    gap: 9px;
}

.report-box input,
.report-box textarea {

    width: 100%;

    border: 0;

    outline: none;

    border-radius: 6px;

    background:
        rgba(255,255,255,.95);

    color: #171717;

    padding:
        11px 12px;

    font-size: 11px;
}

.report-box textarea {

    min-height: 100px;

    resize: vertical;
}

.security {

    display: flex;

    gap: 7px;

    align-items: flex-start;

    margin: 2px 0;

    color:
        rgba(255,255,255,.85);

    font-size: 9px;

    line-height: 1.4;
}

.security p {
    margin: 0;
}

.security strong {
    color: #ffffff;
}

.report-box button {

    height: 42px;

    border: 0;

    border-radius: 6px;

    background: var(--gold-bright);

    color: var(--navy-dark);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: .5px;
}

.report-box button:active {

    transform:
        scale(.98);
}


/* =====================================================
   POPULAR
===================================================== */

.popular-section {

    background: var(--surface);
}

.popular-list {

    display: flex;

    flex-direction: column;
}

.popular-list article {

    display: grid;

    grid-template-columns: 43px 1fr;

    gap: 10px;

    padding:
        13px 0;

    border-bottom:
        1px solid var(--border);
}

.popular-list article:last-child {
    border-bottom: 0;
}

.popular-number {

    color: var(--gold-dark);

    font-size: 26px;

    line-height: 1;

    font-weight: 900;

    letter-spacing: -1px;
}

.popular-list h3 {

    margin-top: 3px;

    color: var(--text);

    font-size: 13px;

    line-height: 1.3;

    font-weight: 800;
}

.popular-list time {

    display: block;

    margin-top: 5px;

    color: var(--muted);

    font-size: 9px;
}


/* =====================================================
   FOOTER
===================================================== */

.footer {

    padding:
        35px 18px 25px;

    background:
        linear-gradient(
            160deg,
            #061c32,
            #082b4c 55%,
            #10456f
        );

    color: #ffffff;

    text-align: center;
}

.footer-logo strong {

    display: block;

    font-size: 24px;

    font-weight: 900;

    letter-spacing: -1px;
}

.footer-logo span {
    color: var(--gold-bright);
}

.footer-logo b {
    color: #ffffff;
}

.footer-logo p {

    margin-top: 5px;

    font-size: 8px;

    letter-spacing: 1px;

    font-weight: 800;

    color: var(--gold-bright);
}

.footer-description {

    max-width: 330px;

    margin:
        15px auto 0;
}

.footer-description p {

    color:
        rgba(255,255,255,.75);

    font-size: 10px;

    line-height: 1.6;
}

.footer-divider {

    width: 100%;

    height: 1px;

    margin:
        22px 0;

    background:
        rgba(255,255,255,.15);
}

.footer h3 {

    font-size: 9px;

    letter-spacing: 1px;
}

.footer-links {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 10px;

    margin-top: 14px;
}

.footer-links a {

    color:
        rgba(255,255,255,.78);

    font-size: 10px;
}

.socials {

    display: flex;

    justify-content: center;

    gap: 8px;

    margin-top: 13px;
}

.socials a {

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(255,255,255,.25);

    border-radius: 50%;

    color: #ffffff;

    font-size: 13px;

    font-weight: 800;
}

.socials a:hover {
    border-color: var(--gold-bright);
    color: var(--gold-bright);
}

.copyright {

    color:
        rgba(255,255,255,.65);

    font-size: 9px;

    line-height: 1.5;
}

.copyright strong {
    color: var(--gold-bright);
}

.powered {

    margin-top: 8px;

    font-size: 8px;

    letter-spacing: 1px;

    font-weight: 800;

    color:
        var(--gold-bright);
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .headline-info h1 {
        font-size: 23px;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (min-width: 600px) {

    .header-inner {
        padding-left: 22px;
        padding-right: 22px;
    }

    .headline-link {
        aspect-ratio: 1.7 / 1;
    }

    .headline-info {
        padding:
            35px 25px 25px;
    }

    .headline-info h1 {
        font-size: 32px;
    }

    .section,
    .news-category,
    .popular-section,
    .video-section,
    .report-section {
        padding-left: 24px;
        padding-right: 24px;
    }

    .news-grid {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));
    }

}


/* =====================================================
   DESKTOP
===================================================== */

@media (min-width: 900px) {

    .site-header {
        position: relative;
    }

    .header-inner {
        max-width: 1180px;
        margin: auto;

        min-height: 78px;

        padding:
            12px 25px;
    }

    .logo strong {
        font-size: 27px;
    }

    .logo small {
        font-size: 8px;
    }

    .category-scroll {
        max-width: 1180px;
        margin: auto;

        justify-content: center;

        overflow-x: auto;
    }

    .headline-link {
        aspect-ratio: 2.1 / 1;
    }

    .headline-info {
        padding:
            50px 45px 35px;
    }

    .headline-info h1 {
        font-size: 42px;
    }

    .headline-info p {
        font-size: 13px;
    }

    .section,
    .news-category,
    .popular-section,
    .video-section,
    .report-section {
        padding:
            45px 30px;
    }

    .editor-card {
        max-width: 800px;
        margin: auto;
    }

    .video-scroll {
        justify-content: center;
        overflow-x: visible;
    }

    .video-card {
        flex: 0 0 30%;
    }

    .latest-item > a {
        grid-template-columns:
            1fr 180px;
    }

    .latest-image {
        width: 180px;
        height: 110px;
    }

    .footer {
        padding:
            50px 30px 30px;
    }

}


/* ==================================================
   MOBILE HEADER & CATEGORY
================================================== */

@media (max-width: 768px) {

    .site-header {
        position: relative;
        z-index: 1000;
    }


    .header-inner {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }


    /* LOGO BENAR-BENAR DI TENGAH */

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        white-space: nowrap;
    }


    .menu-button,
    .header-actions {
        position: relative;
        z-index: 2;
    }


/* =====================================================
   MOBILE MENU - STYLE ARUSMADURA
===================================================== */

.mobile-menu {
    position: fixed;

    top: 0;
    left: 0;

    width: 90%;
    max-width: 420px;

    height: 100vh;

    background: #fff;

    display: flex;
    flex-direction: column;

    transform: translateX(-105%);
    transition: transform .3s ease;

    z-index: 99999;

    box-shadow: 8px 0 30px rgba(0,0,0,.18);

    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}


/* HEADER MENU */

.mobile-menu-top {
    min-height: 140px;

    padding: 25px 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid #eee;

    background:
        linear-gradient(
            135deg,
            #061c32,
            #082b4c
        );
}


/* LOGO */

.mobile-menu-logo {
    display: flex;
    flex-direction: column;
}

.mobile-menu-logo strong {
    font-size: 25px;
    line-height: 1;

    font-weight: 900;

    color: #ffffff;
}

.mobile-menu-logo strong span {
    color: var(--gold-bright);
}

.mobile-menu-logo strong b {
    color: #ffffff;
}

.mobile-menu-logo small {
    margin-top: 7px;

    font-size: 9px;
    letter-spacing: 1.2px;

    font-weight: 700;

    color: rgba(255,255,255,.72);
}


/* TOMBOL X */

.mobile-menu-close {
    width: 54px;
    height: 54px;

    border: 0;
    border-radius: 50%;

    background: rgba(255,255,255,.12);

    color: #ffffff;

    font-size: 34px;
    font-weight: 300;

    line-height: 1;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close:hover {
    background: rgba(255,255,255,.2);
}


/* BODY */

.mobile-menu-body {
    padding: 28px 18px 40px;
}


/* BERANDA */

.menu-home {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 68px;

    background:
        linear-gradient(
            135deg,
            var(--navy-dark),
            var(--navy)
        );

    color: #fff !important;

    border-radius: 20px;

    text-decoration: none;

    font-size: 18px;
    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 38px;

    border: 1px solid rgba(217,169,0,.35);
}


/* GROUP */

.menu-group {
    margin-bottom: 35px;
}

.menu-group h3,
.menu-info h3 {
    margin: 0 0 18px;

    padding-left: 8px;

    font-size: 19px;

    font-weight: 900;

    color: #111827;

    letter-spacing: .5px;
}


/* GRID 2 KOLOM */

.menu-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 12px;
}


/* KOTAK MENU */

.menu-grid a {
    min-height: 68px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 10px;

    border-radius: 18px;

    background: #f8f9fb;

    border: 1px solid #edf0f4;

    color: #4b5563 !important;

    text-decoration: none;

    font-size: 15px;

    font-weight: 700;

    text-align: center;

    transition: .2s ease;
}

.menu-grid a:active {
    transform: scale(.97);
}

.menu-grid a:hover {
    background: #eef3f8;
    color: var(--navy) !important;
}


/* INFORMASI REDAKSI */

.menu-info {
    margin-top: 10px;

    padding-top: 35px;

    border-top: 1px solid #e5e7eb;
}

.menu-info h3 {
    color: #9ca3af;

    font-size: 14px;

    letter-spacing: 1.5px;

    margin-bottom: 20px;
}

.menu-info a {
    display: flex;

    align-items: center;

    gap: 15px;

    min-height: 52px;

    color: #4b5563 !important;

    text-decoration: none;

    font-size: 16px;

    font-weight: 600;
}

.menu-info a span {
    color: var(--gold-dark);

    font-size: 22px;
}


/* MODE GELAP */

.mobile-theme-button {
    width: 100%;

    min-height: 58px;

    margin-top: 20px;

    padding: 0 10px;

    display: flex;
    align-items: center;

    gap: 12px;

    border: 0;

    border-top: 1px solid #eee;

    background: #fff;

    color: #111;

    font-family: inherit;

    font-size: 15px;

    font-weight: 700;

    text-align: left;

    cursor: pointer;
}


/* MOBILE */

@media (max-width: 768px) {

    .mobile-menu {
        width: 90%;
    }

    .mobile-menu-top {
        min-height: 125px;

        padding: 20px 18px;
    }

    .mobile-menu-logo strong {
        font-size: 22px;
    }

    .mobile-menu-close {
        width: 50px;
        height: 50px;

        font-size: 31px;
    }

    .mobile-menu-body {
        padding: 24px 16px 35px;
    }

    .menu-home {
        min-height: 64px;

        border-radius: 18px;

        font-size: 17px;

        margin-bottom: 32px;
    }

    .menu-grid {
        gap: 10px;
    }

    .menu-grid a {
        min-height: 62px;

        font-size: 14px;

        border-radius: 16px;
    }
}


/* =========================
   KATEGORI SWIPE
========================= */

.category-nav {
    width: 100%;
    overflow: hidden;
}


.category-scroll {
    display: flex;

    flex-wrap: nowrap;

    width: 100%;

    overflow-x: auto;
    overflow-y: hidden;

    white-space: nowrap;

    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;

    touch-action: pan-x;
}


.category-scroll::-webkit-scrollbar {
    display: none;
}


.category-scroll a {
    flex: 0 0 auto;
    white-space: nowrap;
}

}


/* ==================================================
   HEADER TETAP SAAT SCROLL
================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
}

.logo strong,
.logo strong span,
.logo strong b {
    color: #ffffff !important;
}

.logo strong span {
    color: var(--gold-bright) !important;
}

.category-scroll a {
    color: #000 !important;
    font-weight: 600;
}


/* ==================================================
   ARTICLE PAGE
================================================== */

.article-page {
    padding: 25px 15px 10px;
    max-width: 850px;
    margin: 0 auto;
}

.article-category {
    display: inline-block;
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .8px;
    margin-bottom: 10px;
}

.article-page h1 {
    margin: 0;
    font-size: 30px;
    line-height: 1.18;
    color: var(--text);
}

.article-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
    font-size: 12px;
    color: var(--muted);
}


/* ==================================================
   SHARE
================================================== */

.article-share {
    margin-top: 18px;
    margin-bottom: 18px;
}

.article-share strong {
    display: block;
    font-size: 11px;
    letter-spacing: .8px;
    color: var(--muted);
    margin-bottom: 9px;
}

.share-buttons {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

.share-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 13px;
    border-radius: 6px;
    background: #f1f1f1;
    color: #222;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.share-whatsapp {
    background: #e9f8ee !important;
}

.share-facebook {
    background: #edf2ff !important;
}

.share-copy {
    background: #f3f3f3 !important;
}


/* ==================================================
   ARTICLE IMAGE
================================================== */

.article-image {
    margin: 0;
}

.article-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.article-image figcaption {
    margin-top: 7px;
    font-size: 11px;
    color: var(--muted);
}


/* ==================================================
   ARTICLE CONTENT
================================================== */

.article-content {
    margin-top: 22px;
}

.article-content p {
    margin: 0 0 17px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
}

.article-content h2 {
    margin: 28px 0 12px;
    font-size: 21px;
    line-height: 1.3;
}


/* ==================================================
   ARTICLE TAG
================================================== */

.article-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 25px;
    padding-top: 17px;
    border-top: 1px solid var(--border);
}

.article-tags span {
    font-size: 11px;
    font-weight: 800;
    color: var(--muted);
}

.article-tags a {
    font-size: 11px;
    color: var(--navy);
    text-decoration: none;
    font-weight: 700;
    background: #f5f7fa;
    padding: 5px 8px;
    border-radius: 4px;
}


/* ==================================================
   DESKTOP ARTICLE
================================================== */

@media (min-width: 769px) {

    .article-page {
        padding-top: 45px;
        padding-bottom: 20px;
    }

    .article-page h1 {
        font-size: 42px;
    }

    .article-content p {
        font-size: 17px;
    }

}
/* =========================================
   MENU GARIS 3 - DESKTOP & MOBILE
   ========================================= */

/* Menu utama selalu tersembunyi */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    max-width: 85%;
    height: 100vh;
    background: #ffffff;
    z-index: 10000;
    overflow-y: auto;
    transition: left 0.3s ease;
    box-shadow: 8px 0 25px rgba(0,0,0,0.15);
}

/* Saat tombol garis 3 ditekan */
.mobile-menu.active {
    left: 0;
}

/* Isi menu */
.mobile-menu-inner {
    padding: 25px 20px 40px;
}

/* Header menu */
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    margin-bottom: 15px;
    border-bottom: 2px solid #d9a900;
}

/* Semua daftar menu */
.mobile-menu nav,
.mobile-menu ul {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Item menu */
.mobile-menu li {
    display: block;
    width: 100%;
}

/* Link menu */
.mobile-menu a {
    display: block;
    width: 100%;
    padding: 13px 5px;
    color: #082b4c;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #eeeeee;
    transition: all 0.2s ease;
}

.mobile-menu a:hover {
    color: #d9a900;
    padding-left: 10px;
}

/* Judul kelompok menu */
.mobile-menu .menu-title {
    display: block;
    margin-top: 20px;
    margin-bottom: 5px;
    color: #d9a900;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

/* Overlay */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}
/* =========================================
   DESKTOP
   ========================================= */

@media (min-width: 900px) {

    /* Menu TETAP tersembunyi */
    .mobile-menu {
        left: -100%;
        visibility: hidden;
    }

    /* Hanya muncul ketika ☰ diklik */
    .mobile-menu.active {
        left: 0;
        visibility: visible;
    }

    /* Overlay juga hanya muncul ketika menu aktif */
    .menu-overlay {
        opacity: 0;
        visibility: hidden;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Tombol garis 3 tetap di dalam header */
    .menu-button {
        position: relative;
        z-index: 10001;
        flex-shrink: 0;
    }
}
.article-content{
    font-size:18px;
    line-height:1.9;
    color:#222;
}

.article-content p{
    margin-bottom:22px;
}

.article-content h2{
    margin:40px 0 20px;
    font-size:28px;
    line-height:1.4;
    color:#111;
}

.article-content blockquote{
    border-left:4px solid #c90000;
    background:#f8f8f8;
    padding:18px 22px;
    margin:25px 0;
    font-style:italic;
    font-size:18px;
}

.article-lead{
    font-size:22px;
    font-weight:500;
}

.footer-logo {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.footer-logo img {
    width: auto;
    height: 160px;
    display: block;
    object-fit: cover;
    object-position: center center;
}
/* =========================================
   FIX LAYOUT ARUSMADURA
========================================= */

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    display: block;
}

main {
    display: block;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    visibility: visible;
    opacity: 1;
}

main > section {
    display: block;
    visibility: visible;
    opacity: 1;
}

.headline,
.section,
.news-category,
.video-section,
.report-section,
.popular-section,
.footer {
    visibility: visible;
    opacity: 1;
}

/* Pastikan menu TIDAK menutupi halaman saat belum aktif */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    max-width: 85%;
    height: 100vh;

    background: #ffffff;

    transform: translateX(-105%);
    visibility: hidden;

    opacity: 1;

    z-index: 10000;

    overflow-y: auto;

    transition:
        transform .3s ease,
        visibility .3s ease;
}

/* MENU SAAT DIBUKA */
.mobile-menu.active {
    transform: translateX(0);
    visibility: visible;
}

/* DESKTOP */
@media (min-width: 900px) {

    .mobile-menu {
        transform: translateX(-105%);
        visibility: hidden;
    }

    .mobile-menu.active {
        transform: translateX(0);
        visibility: visible;
    }
}
/* ================================
   LOGO HEADER - LAPTOP / DESKTOP
================================ */

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    overflow: hidden;
}

.logo img {
    height: 108px;
    width: auto;
    display: block;
    object-fit: contain;
}
/* =====================================================
   ARUS MADURA
   MODERN MOBILE MENU
===================================================== */

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: min(390px, 92vw);
    height: 100vh;

    background: #ffffff;

    z-index: 99999;

    overflow-y: auto;
    overflow-x: hidden;

    transition:
        left .38s cubic-bezier(.77,0,.18,1);

    box-shadow:
        15px 0 50px rgba(0, 0, 0, .18);

    scrollbar-width: thin;
}

.mobile-menu.active {
    left: 0;
}


/* =====================================================
   HEADER
===================================================== */

.mobile-menu-header {
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 12px 20px;

    background:
        linear-gradient(
            135deg,
            #061c32 0%,
            #082b4c 60%,
            #10456f 100%
        );

    position: sticky;
    top: 0;
    z-index: 10;
}


.mobile-menu-brand {
    display: flex;
    align-items: center;

    width: 175px;
    height: 58px;

    overflow: hidden;
}


.mobile-menu-brand img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: left center;

    display: block;
}


.mobile-menu-close {
    width: 42px;
    height: 42px;

    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;

    background: rgba(255,255,255,.10);

    color: #ffffff;

    font-size: 28px;
    font-weight: 300;

    line-height: 1;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: .25s ease;
}

.mobile-menu-close:hover {
    background: #d9a900;
    border-color: #d9a900;
    transform: rotate(90deg);
}


/* =====================================================
   INTRO
===================================================== */

.mobile-menu-intro {
    padding: 28px 22px 22px;

    background:
        linear-gradient(
            to bottom,
            #f7f8fa,
            #ffffff
        );

    border-bottom: 1px solid #e8ebef;
}


.menu-overline {
    display: inline-block;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;

    color: #b88600;

    margin-bottom: 7px;
}


.mobile-menu-intro h2 {
    margin: 0 0 7px;

    font-size: 25px;
    line-height: 1.15;

    color: #061c32;

    letter-spacing: -.5px;
}


.mobile-menu-intro p {
    margin: 0;

    font-size: 13px;
    line-height: 1.6;

    color: #6b7280;

    max-width: 300px;
}


/* =====================================================
   SECTION
===================================================== */

.mobile-menu-section {
    padding: 22px 18px 4px;
}


.menu-section-title {
    margin: 0 4px 12px;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.8px;

    color: #8a929b;
}


/* =====================================================
   MENU ITEM
===================================================== */

.modern-menu-item {
    display: flex;
    align-items: center;

    min-height: 66px;

    padding: 9px 11px;

    margin-bottom: 6px;

    border-radius: 15px;

    text-decoration: none;

    color: #17202a;

    transition:
        background .2s ease,
        transform .2s ease;
}


.modern-menu-item:hover {
    background: #f5f7f9;
    transform: translateX(3px);
}


.modern-menu-item.active {
    background:
        linear-gradient(
            135deg,
            #061c32,
            #10456f
        );

    color: #ffffff;

    box-shadow:
        0 8px 20px rgba(8,43,76,.18);
}


.modern-menu-icon {
    width: 43px;
    height: 43px;

    flex: 0 0 43px;

    border-radius: 13px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eef2f5;

    margin-right: 13px;
}


.modern-menu-item.active .modern-menu-icon {
    background: rgba(255,255,255,.13);
}


.modern-menu-icon svg {
    width: 21px;
    height: 21px;

    fill: none;

    stroke: #082b4c;

    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.modern-menu-item.active .modern-menu-icon svg {
    stroke: #f2c300;
}


.modern-menu-text {
    flex: 1;

    display: flex;
    flex-direction: column;

    gap: 3px;
}


.modern-menu-text strong {
    font-size: 14px;
    font-weight: 750;
}


.modern-menu-text small {
    font-size: 11px;

    color: #8a929b;
}


.modern-menu-item.active .modern-menu-text small {
    color: rgba(255,255,255,.65);
}


.modern-menu-arrow {
    font-size: 25px;

    color: #aab1b8;

    margin-left: 8px;
}


.modern-menu-item.active .modern-menu-arrow {
    color: #f2c300;
}


/* =====================================================
   KABUPATEN
===================================================== */

.kabupaten-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 9px;
}


.kabupaten-card {
    position: relative;

    min-height: 105px;

    padding: 14px;

    border-radius: 15px;

    background: #f7f8fa;

    border: 1px solid #e8ebef;

    text-decoration: none;

    overflow: hidden;

    transition: .25s ease;
}


.kabupaten-card:hover {
    transform: translateY(-3px);

    border-color: #d9a900;

    box-shadow:
        0 8px 20px rgba(0,0,0,.08);
}


.kabupaten-card::after {
    content: "";

    position: absolute;

    width: 65px;
    height: 65px;

    right: -25px;
    bottom: -25px;

    border-radius: 50%;

    background: rgba(217,169,0,.10);
}


.kabupaten-number {
    display: block;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1px;

    color: #b88600;

    margin-bottom: 14px;
}


.kabupaten-card strong {
    display: block;

    font-size: 13px;

    color: #082b4c;

    margin-bottom: 4px;
}


.kabupaten-card small {
    font-size: 10px;

    color: #8a929b;
}


/* =====================================================
   RUBRIK
===================================================== */

.rubrik-grid {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;
}


.rubrik-grid a {
    display: inline-flex;

    align-items: center;

    min-height: 34px;

    padding: 0 12px;

    border-radius: 30px;

    background: #f4f6f8;

    border: 1px solid #e7eaed;

    color: #34404b;

    font-size: 11px;
    font-weight: 650;

    text-decoration: none;

    transition: .2s ease;
}


.rubrik-grid a:hover {
    background: #082b4c;

    border-color: #082b4c;

    color: #ffffff;
}


/* =====================================================
   MADURA FEATURE
===================================================== */

.mobile-menu-feature {
    margin: 22px 18px;

    padding: 22px;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #061c32,
            #10456f
        );

    color: #ffffff;

    position: relative;

    overflow: hidden;

    box-shadow:
        0 12px 28px rgba(6,28,50,.20);
}


.mobile-menu-feature::before {
    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    right: -50px;
    top: -50px;

    border-radius: 50%;

    border: 20px solid rgba(242,195,0,.12);
}


.feature-label {
    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.5px;

    color: #f2c300;

    margin-bottom: 9px;
}


.mobile-menu-feature h3 {
    position: relative;

    margin: 0 0 7px;

    font-size: 18px;
    line-height: 1.25;
}


.mobile-menu-feature p {
    position: relative;

    margin: 0 0 17px;

    color: rgba(255,255,255,.70);

    font-size: 11px;

    line-height: 1.6;
}


.mobile-menu-feature a {
    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #f2c300;

    text-decoration: none;

    font-size: 11px;

    font-weight: 800;
}


.mobile-menu-feature a span {
    font-size: 18px;

    transition: .2s ease;
}


.mobile-menu-feature a:hover span {
    transform: translateX(4px);
}


/* =====================================================
   INFORMASI
===================================================== */

.info-menu-list {
    border-top: 1px solid #e9ecef;
}


.info-menu-list a {
    min-height: 47px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 0 5px;

    border-bottom: 1px solid #e9ecef;

    color: #34404b;

    text-decoration: none;

    font-size: 12px;

    transition: .2s ease;
}


.info-menu-list a:hover {
    color: #082b4c;

    padding-left: 10px;
}


.info-menu-list b {
    font-size: 20px;

    font-weight: 400;

    color: #aab1b8;
}


/* =====================================================
   DARK MODE BUTTON
===================================================== */

.modern-theme-button {
    width: calc(100% - 36px);

    margin: 22px 18px;

    min-height: 67px;

    padding: 10px 13px;

    border: 1px solid #e2e6ea;

    border-radius: 16px;

    background: #f7f8fa;

    display: flex;

    align-items: center;

    text-align: left;

    cursor: pointer;

    transition: .25s ease;
}


.modern-theme-button:hover {
    border-color: #d9a900;

    transform: translateY(-2px);
}


.theme-button-icon {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: #082b4c;

    color: #f2c300;

    font-size: 19px;

    margin-right: 12px;
}


.theme-button-text {
    flex: 1;

    display: flex;
    flex-direction: column;

    gap: 3px;
}


.theme-button-text strong {
    font-size: 12px;

    color: #17202a;
}


.theme-button-text small {
    font-size: 10px;

    color: #8a929b;
}


.theme-button-arrow {
    font-size: 23px;

    color: #aab1b8;
}


/* =====================================================
   BOTTOM LOGO
===================================================== */

.mobile-menu-bottom {
    padding: 22px 20px 35px;

    text-align: center;

    border-top: 1px solid #e8ebef;

    margin-top: 5px;
}


.mobile-menu-bottom img {
    width: 145px;
    height: 55px;

    object-fit: contain;

    display: block;

    margin: 0 auto 5px;
}


.mobile-menu-bottom p {
    margin: 0;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;

    color: #9aa1a8;
}


/* =====================================================
   OVERLAY
===================================================== */

body.menu-open::before {
    content: "";

    position: fixed;

    inset: 0;

    background: rgba(2,12,22,.58);

    backdrop-filter: blur(3px);

    z-index: 99998;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 480px) {

    .mobile-menu {
        width: 92vw;
    }

    .mobile-menu-header {
        height: 76px;
    }

    .mobile-menu-brand {
        width: 155px;
    }

    .mobile-menu-intro {
        padding: 24px 19px 20px;
    }

    .mobile-menu-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .mobile-menu-feature {
        margin-left: 16px;
        margin-right: 16px;
    }

}


/* =====================================================
   DESKTOP - MENU TETAP HIDDEN
===================================================== */

@media (min-width: 900px) {

    .mobile-menu {
        left: -100% !important;

        visibility: hidden;

        pointer-events: none;
    }

    .mobile-menu.active {
        left: 0 !important;

        visibility: visible;

        pointer-events: auto;
    }

}
/* HAPUS OVERLAY HITAM MENU */
body.menu-open::before {
    display: none !important;
    content: none !important;
}
/* =========================================
   PERBAIKAN LOGO & BERANDA MENU MOBILE
   ========================================= */

/* Header logo menu */
.mobile-menu-header {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    min-height: 90px !important;
    padding: 12px 55px 12px 20px !important;
}

/* Logo lebih besar dan benar-benar di tengah */
.mobile-menu-header .mobile-menu-logo {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
}

.mobile-menu-header .mobile-menu-logo img {
    width: 190px !important;
    max-width: 75% !important;
    height: auto !important;
    display: block !important;
    object-fit: contain !important;
}

/* Tombol X tetap di kanan */
.mobile-menu-header .close-menu {
    position: absolute !important;
    right: 18px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}


/* =========================================
   BERANDA — ICON + TEKS DI TENGAH
   ========================================= */

.mobile-menu .menu-home,
.mobile-menu a[href="index.html"] {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 9px !important;
}

/* Icon rumah */
.mobile-menu .menu-home svg,
.mobile-menu a[href="index.html"] svg {
    width: 21px !important;
    height: 21px !important;
    flex: 0 0 auto !important;
}

/* Tulisan Beranda */
.mobile-menu .menu-home span,
.mobile-menu a[href="index.html"] span {
    text-align: center !important;
}
/* ==================================================
   HERO NEWS SLIDER — ARUSMADURA.COM
================================================== */

.hero-news {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 28px 18px 10px;
}

.hero-news-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
}

.hero-kicker {
    display: block;
    color: #d9a900;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.hero-news-header h2 {
    margin: 0;
    color: #082b4c;
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 900;
    line-height: 1;
}

.hero-counter {
    display: flex;
    align-items: baseline;
    gap: 5px;
    color: #9ca3af;
    font-size: 15px;
    font-weight: 700;
}

.hero-counter strong {
    color: #082b4c;
    font-size: 30px;
    font-weight: 900;
}


/* SLIDER */

.hero-slider {
    position: relative;
    width: 100%;
    height: clamp(430px, 58vw, 620px);
    overflow: hidden;
    border-radius: 20px;
    background: #061c32;
    box-shadow: 0 18px 45px rgba(6, 28, 50, .18);
}

.hero-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform .7s cubic-bezier(.77,0,.18,1);
}

.hero-slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide a {
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 5s ease;
}

.hero-slide.active img {
    transform: scale(1.06);
}


/* GRADIENT */

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(3, 16, 29, .96) 0%,
            rgba(3, 16, 29, .78) 28%,
            rgba(3, 16, 29, .20) 65%,
            rgba(3, 16, 29, .05) 100%
        );
    pointer-events: none;
}


/* CONTENT */

.hero-content {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;
    padding: clamp(25px, 5vw, 55px);
    color: #fff;
    max-width: 900px;
}

.hero-category {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    margin-bottom: 13px;
    border-radius: 5px;
    background: #d9a900;
    color: #082b4c;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
}

.hero-content h1 {
    margin: 0 0 12px;
    font-size: clamp(25px, 4.5vw, 48px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -.5px;
    max-width: 850px;
}

.hero-description {
    margin: 0;
    max-width: 700px;
    color: rgba(255,255,255,.82);
    font-size: clamp(13px, 1.6vw, 17px);
    line-height: 1.55;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 18px;
    color: rgba(255,255,255,.7);
    font-size: 12px;
}

.hero-meta-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #d9a900;
}


/* ARROW */

.hero-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    transform: translateY(-50%);

    width: 46px;
    height: 46px;

    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;

    background: rgba(6,28,50,.55);
    backdrop-filter: blur(8px);

    color: #fff;
    font-size: 20px;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition:
        background .2s ease,
        transform .2s ease;
}

.hero-arrow:hover {
    background: #d9a900;
    color: #082b4c;
    transform: translateY(-50%) scale(1.08);
}

.hero-prev {
    left: 18px;
}

.hero-next {
    right: 18px;
}


/* BOTTOM */

.hero-bottom {
    position: absolute;
    z-index: 6;
    left: clamp(25px, 5vw, 55px);
    right: clamp(25px, 5vw, 55px);
    bottom: 20px;

    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    cursor: pointer;
    transition: all .25s ease;
}

.hero-dot.active {
    width: 25px;
    border-radius: 10px;
    background: #d9a900;
}

.hero-progress {
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,.22);
    overflow: hidden;
}

.hero-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: #d9a900;
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {

    .hero-news {
        padding: 22px 14px 5px;
    }

    .hero-slider {
        height: 470px;
        border-radius: 15px;
    }

    .hero-content {
        padding: 25px 20px 48px;
    }

    .hero-content h1 {
        font-size: 27px;
        line-height: 1.1;
    }

    .hero-description {
        font-size: 13px;
    }

    .hero-arrow {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .hero-prev {
        left: 10px;
    }

    .hero-next {
        right: 10px;
    }

    .hero-bottom {
        left: 20px;
        right: 20px;
        bottom: 16px;
    }

}


/* ==================================================
   EXTRA SMALL PHONE
================================================== */

@media (max-width: 380px) {

    .hero-slider {
        height: 440px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-description {
        display: none;
    }

}
/* =================================
   SHARE BERITA
================================= */

.article-share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin: 28px 0;
    padding: 18px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.share-title {
    font-size: 14px;
    font-weight: 700;
    color: #17202a;
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 9px;
}

.share-btn {
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    transition: transform .25s ease, opacity .25s ease;
}

.share-btn svg {
    width: 21px;
    height: 21px;
    fill: #fff;
    display: block;
}

.share-btn:hover {
    transform: translateY(-3px);
    opacity: .88;
}

.share-btn.whatsapp {
    background: #25D366;
}

.share-btn.telegram {
    background: #229ED9;
}

.share-btn.copy-link {
    background: #082b4c;
}

.copy-message {
    display: none;
    font-size: 12px;
    font-weight: 600;
    color: #082b4c;
}

.copy-message.show {
    display: inline-block;
}

/* MOBILE */
@media (max-width: 600px) {
    .article-share {
        gap: 10px;
        margin: 22px 0;
    }

    .share-title {
        width: 100%;
    }

    .share-btn {
        width: 36px;
        height: 36px;
    }

    .share-btn svg {
        width: 19px;
        height: 19px;
    }
}
.share-btn.facebook {
    background: #1877F2;
}
/* ================================
   IKLAN ATAS HEADER
================================ */

.top-ad {
    width: 100%;
    min-height: 90px;
    padding: 10px 20px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 100;
}

.top-ad a {
    display: block;
    max-width: 970px;
    width: 100%;
}

.top-ad img {
    display: block;
    width: 100%;
    max-height: 100px;
    object-fit: cover;
    border-radius: 4px;
}

.top-ad-close {
    position: absolute;
    right: 12px;
    top: 8px;
    width: 25px;
    height: 25px;
    border: 0;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-size: 18px;
    line-height: 25px;
    cursor: pointer;
    z-index: 2;
}


/* ================================
   POP-UP IKLAN 10 DETIK
================================ */

.popup-ad {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: none;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.55);
    padding: 20px;
}

.popup-ad.show {
    display: flex;
}

.popup-ad-box {
    position: relative;
    width: min(520px, 100%);
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: popupAdIn .3s ease;
}

.popup-ad-box a {
    display: block;
}

.popup-ad-box img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 7px;
}

.popup-ad-label {
    font-size: 9px;
    color: #888;
    text-align: center;
    margin-bottom: 7px;
    letter-spacing: 1px;
}

.popup-ad-close {
    position: absolute;
    right: -12px;
    top: -12px;

    width: 34px;
    height: 34px;

    border: 3px solid #fff;
    border-radius: 50%;

    background: #111;
    color: #fff;

    font-size: 23px;
    line-height: 27px;

    cursor: pointer;
    z-index: 5;
}

.popup-ad-close:hover {
    transform: scale(1.08);
}

@keyframes popupAdIn {
    from {
        opacity: 0;
        transform: scale(.92) translateY(15px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}


/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {

    .top-ad {
        min-height: 60px;
        padding: 7px 35px 7px 8px;
    }

    .top-ad img {
        max-height: 70px;
    }

    .top-ad-close {
        right: 7px;
        top: 6px;
        width: 23px;
        height: 23px;
        font-size: 16px;
        line-height: 23px;
    }

    .popup-ad {
        padding: 16px;
    }

    .popup-ad-box {
        width: 100%;
        padding: 9px;
        border-radius: 10px;
    }

    .popup-ad-close {
        right: -8px;
        top: -8px;
        width: 32px;
        height: 32px;
    }
}
/* =========================================
   TOP ADS - ARUSMADURA
========================================= */

.top-ad {
    position: relative;
    width: 100%;
    height: 500px;

    background: #000;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0;
    padding: 0;
}


/* =========================================
   POSTER
========================================= */

.top-ad a {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    padding: 48px 15px 48px;

    box-sizing: border-box;
}

.top-ad img {
    display: block;

    width: auto;
    height: auto;

    max-width: 100%;
    max-height: 100%;

    object-fit: contain;
    object-position: center;

    margin: auto;
}


/* =========================================
   CLOSE ADS - BAR ATAS
========================================= */

.top-ad-close {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 48px;

    z-index: 20;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;

    background: linear-gradient(
        90deg,
        #061c32 0%,
        #082b4c 35%,
        #10456f 50%,
        #082b4c 65%,
        #061c32 100%
    );

    color: #fff;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 0.5px;

    cursor: pointer;

    box-sizing: border-box;
}


/* garis emas di bawah bar atas */
.top-ad-close::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 0;

    transform: translateX(-50%);

    width: 70px;
    height: 2px;

    background: #f2c300;
}


/* =========================================
   CLOSE ADS - BAR TIPIS
========================================= */

.top-ad-close {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 32px;

    z-index: 20;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    padding: 0 18px;
    box-sizing: border-box;

    border: none;
    border-radius: 0;

    background: linear-gradient(
        90deg,
        rgba(6, 28, 50, 0.75),
        rgba(8, 43, 76, 0.9)
    );

    color: #fff;

    font-size: 12px;
    font-weight: 600;

    cursor: pointer;
}


/* =========================================
   SCROLL - BAR TIPIS
========================================= */

.top-ad-scroll {
    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 32px;

    z-index: 20;

    display: flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    background: linear-gradient(
        90deg,
        rgba(6, 28, 50, 0.75),
        rgba(8, 43, 76, 0.9),
        rgba(6, 28, 50, 0.75)
    );

    color: #fff;

    font-size: 12px;
    font-weight: 500;

    letter-spacing: 0.2px;

    text-align: center;

    border: none;
}


/* MOBILE */
@media (max-width: 600px) {

    .top-ad-close {
        height: 30px;
        padding: 0 12px;
        font-size: 11px;
    }

    .top-ad-scroll {
        height: 30px;
        font-size: 11px;
    }

}
/* =========================================
   FLOATING VIDEO ADS
========================================= */

.floating-video-ad {
    position: fixed;

    right: 18px;
    bottom: 90px;

    width: 360px;

    background: #000;

    z-index: 99998;

    box-shadow: 0 8px 30px rgba(0,0,0,.28);

    display: none;
}

/* Saat muncul */
.floating-video-ad.show {
    display: block;
    animation: floatingAdIn .35s ease;
}

@keyframes floatingAdIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* VIDEO */

.floating-video-ad a {
    position: relative;

    display: block;

    width: 100%;

    text-decoration: none;
}

.floating-video-ad video {
    display: block;

    width: 100%;
    height: auto;

    max-height: 250px;

    object-fit: cover;

    background: #000;
}


/* TULISAN BACA SELENGKAPNYA */

.floating-video-text {
    position: absolute;

    top: 12px;
    right: 12px;

    padding: 7px 13px;

    background: rgba(6, 28, 50, .88);

    color: #fff;

    font-size: 14px;
    font-weight: 600;

    border-radius: 3px;
}


/* CLOSE */

.floating-video-close {
    position: absolute;

    top: -1px;
    right: -1px;

    width: 38px;
    height: 38px;

    z-index: 10;

    border: 1px solid #777;

    background: #fff;

    color: #555;

    font-size: 28px;
    font-weight: 300;

    line-height: 1;

    cursor: pointer;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .floating-video-ad {
        right: 10px;
        bottom: 75px;

        width: 340px;
        max-width: calc(100vw - 20px);
    }

    .floating-video-ad video {
        max-height: 230px;
    }

    .floating-video-text {
        font-size: 12px;
        padding: 6px 10px;
    }

    .floating-video-close {
        width: 34px;
        height: 34px;

        font-size: 25px;
    }

}
/* =========================================
   STICKY BOTTOM ADS
========================================= */

.sticky-bottom-ad {
    position: fixed;

    left: 50%;
    bottom: 0;

    transform: translateX(-50%);

    width: 100%;
    max-width: 500px;

    min-height: 70px;

    padding: 5px;

    box-sizing: border-box;

    background: #fff;

    border-top: 1px solid #ddd;

    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.18);

    z-index: 99990;

    display: block;
}


/* GAMBAR IKLAN */

.sticky-bottom-ad a {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;
    height: 70px;

    text-decoration: none;
}

.sticky-bottom-ad img {
    display: block;

    width: 100%;
    height: 70px;

    object-fit: contain;
    object-position: center;

    margin: 0 auto;
}


/* =========================================
   TOMBOL X
========================================= */

.sticky-bottom-close {
    position: absolute;

    right: 5px;
    top: -30px;

    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid #bbb;
    border-radius: 0;

    background: #fff;

    color: #555;

    font-size: 22px;
    font-weight: 400;

    line-height: 1;

    cursor: pointer;

    z-index: 10;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .sticky-bottom-ad {
        width: 100%;

        min-height: 65px;

        padding: 4px;
    }

    .sticky-bottom-ad a {
        height: 65px;
    }

    .sticky-bottom-ad img {
        height: 65px;

        max-width: 100%;
    }

    .sticky-bottom-close {
        top: -29px;

        right: 4px;

        width: 29px;
        height: 29px;

        font-size: 21px;
    }

}
/* ================================
   IKLAN BANNER DI ATAS JUDUL
================================ */

.article-top-ad {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 24px;
    padding: 0;
    box-sizing: border-box;
}

.article-ad-slider {
    position: relative;
    width: 460px;
    height: 120px;
    max-width: 100%;
    overflow: hidden;
    background: #f5f5f5;
}

.article-ad-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: opacity .6s ease;
}

.article-ad-slide.active {
    opacity: 1;
    visibility: visible;
}

.article-ad-slide img {
    display: block;
    width: 460px;
    height: 120px;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
}

/* MOBILE */
@media (max-width: 600px) {

    .article-top-ad {
        width: 100%;
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .article-ad-slider {
        width: 460px;
        max-width: 100%;
        height: auto;
        aspect-ratio: 460 / 120;
    }

    .article-ad-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

}
/* =========================================================
   IKLAN DI DALAM ARTIKEL
   Video setelah paragraf 2
   Banner 160x120 setelah paragraf 4, 6, 8
   ========================================================= */

.article-content-ad {
    width: 100%;
    margin: 32px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

/* Tulisan di atas setiap iklan */
.article-content-ad-label {
    width: 100%;
    margin: 0 0 10px;
    text-align: center;
    color: #6b7280;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: .2px;
}

/* =========================
   VIDEO IKLAN
   Rasio TikTok 9:16
   ========================= */

.article-video-ad {
    width: 300px;
    max-width: 100%;
    aspect-ratio: 9 / 16;
    background: #000;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,.15);
}

.article-video-ad video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: #000;
}

/* =========================
   BANNER 160 x 120
   ========================= */

.article-banner-ad {
    width: 160px;
    height: 120px;
    max-width: 100%;
    overflow: hidden;
    background: #f5f5f5;
}

.article-banner-ad a {
    display: block;
    width: 100%;
    height: 100%;
}

.article-banner-ad img {
    display: block;
    width: 160px;
    height: 120px;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
}

/* Desktop */
@media (min-width: 769px) {
    .article-content-ad {
        margin: 38px 0;
    }

    .article-video-ad {
        width: 300px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .article-content-ad {
        margin: 30px 0;
    }

    .article-video-ad {
        width: 280px;
    }
}

/* HP */
@media (max-width: 600px) {
    .article-content-ad {
        margin: 26px 0;
    }

    .article-content-ad-label {
        margin-bottom: 8px;
        font-size: 10px;
    }

    .article-video-ad {
        width: min(280px, 82vw);
        border-radius: 9px;
    }

    .article-banner-ad {
        width: 160px;
        height: 120px;
    }

    .article-banner-ad img {
        width: 160px;
        height: 120px;
    }
}
/* ==================================================
   AUTHOR
================================================== */

.article-author {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 18px 0 15px;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;

    background: var(--navy);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;
    font-weight: 800;

    flex: 0 0 42px;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-info strong {
    font-size: 14px;
    line-height: 1.3;
    color: var(--text);
}

.author-info span {
    font-size: 11px;
    color: var(--muted);
}


/* =========================================================
   ARTICLE TOOLBAR
   MODERN NEWS PORTAL STYLE
========================================================= */

.article-toolbar {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 18px 0 24px;
    padding: 0;
    box-sizing: border-box;
}


/* =========================================================
   SEMUA TOMBOL
========================================================= */

.article-toolbar .article-action {
    height: 40px !important;
    min-width: 42px !important;

    padding: 0 12px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;

    border: 0 !important;
    border-radius: 20px !important;

    background: #eeeeee !important;
    color: #555555 !important;

    box-shadow: none !important;

    cursor: pointer;

    transition:
        background-color .18s ease,
        transform .12s ease !important;

    -webkit-tap-highlight-color: transparent;
}


/* HOVER */

.article-toolbar .article-action:hover {
    background: #e7e7e7 !important;
}


/* ACTIVE / DITEKAN */

.article-toolbar .article-action:active {
    background: #dddddd !important;
    transform: scale(.96);
}


/* FOCUS */

.article-toolbar .article-action:focus {
    outline: none !important;
}


/* =========================================================
   ICON UMUM
========================================================= */

.article-toolbar .action-icon {
    width: 19px;
    height: 19px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;
}

.article-toolbar .action-icon svg {
    width: 19px;
    height: 19px;

    display: block;

    fill: none;
    stroke: #555555;

    stroke-width: 1.65;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   ANGKA
========================================================= */

.article-toolbar .action-value {
    font-family: Arial, sans-serif;

    font-size: 12px;
    font-weight: 600;

    line-height: 1;

    color: #555555;
}


/* =========================================================
   DILIHAT
========================================================= */

.article-toolbar .view-action {
    min-width: 58px !important;
}


/* Mata dibuat sedikit lebih tipis */

.article-toolbar .view-action .action-icon svg {
    stroke-width: 1.55;
}


/* =========================================================
   LIKE
========================================================= */

.article-toolbar .like-action {
    min-width: 58px !important;
}

.article-toolbar .like-action .action-icon svg {
    stroke-width: 1.55;
}


/* LIKE AKTIF — TETAP ABU-ABU */

.article-toolbar .like-action.save-active {
    background: #dedede !important;
    color: #444444 !important;
}

.article-toolbar .like-action.save-active .action-icon svg {
    stroke: #444444 !important;
}


/* =========================================================
   DUKUNG / HADIAH + RP
========================================================= */

.article-toolbar .support-action {
    width: 46px !important;
    min-width: 46px !important;

    padding: 0 !important;
}


/* wadah hadiah */

.article-toolbar .gift-icon {
    position: relative;

    width: 21px;
    height: 21px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* gambar hadiah */

.article-toolbar .gift-icon svg {
    position: absolute;

    width: 21px;
    height: 21px;

    display: block;

    fill: none;
    stroke: #555555;

    stroke-width: 1.45;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* RP kecil di tengah */

.article-toolbar .gift-icon span {
    position: relative;
    z-index: 2;

    margin-top: 4px;

    padding: 1px 2px;

    font-family: Arial, sans-serif;

    font-size: 6px;
    font-weight: 700;

    line-height: 1;

    color: #555555;

    background: #eeeeee;
}


/* =========================================================
   BAGIKAN
========================================================= */

.article-toolbar .share-action {
    min-width: 92px !important;

    padding-left: 14px !important;
    padding-right: 14px !important;

    gap: 7px !important;
}

.article-toolbar .share-action .action-icon {
    width: 18px;
    height: 18px;
}

.article-toolbar .share-action .action-icon svg {
    width: 18px;
    height: 18px;

    stroke-width: 1.55;
}

.article-toolbar .share-action .action-text {
    font-family: Arial, sans-serif;

    font-size: 12px;
    font-weight: 600;

    line-height: 1;

    color: #555555;
}


/* =========================================================
   KOMENTAR
========================================================= */

.article-toolbar .comment-action {
    min-width: 58px !important;
}

.article-toolbar .comment-action .action-icon svg {
    stroke-width: 1.55;
}


/* =========================================================
   SIMPAN
========================================================= */

.article-toolbar .save-action {
    width: 46px !important;
    min-width: 46px !important;

    padding: 0 !important;
}

.article-toolbar .save-action .action-icon {
    width: 19px;
    height: 19px;
}

.article-toolbar .save-action .action-icon svg {
    width: 19px;
    height: 19px;

    stroke-width: 1.6;
}


/* SIMPAN AKTIF — TETAP ABU-ABU */

.article-toolbar .save-action.save-active {
    background: #dedede !important;
}

.article-toolbar .save-action.save-active .action-icon svg {
    fill: #555555 !important;
    stroke: #555555 !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .article-toolbar {
        width: 100%;
        gap: 6px;

        justify-content: space-between;

        margin-top: 16px;
        margin-bottom: 22px;
    }

    .article-toolbar .article-action {
        height: 38px !important;

        min-width: 40px !important;

        padding: 0 9px !important;

        border-radius: 19px !important;
    }

    .article-toolbar .action-icon,
    .article-toolbar .action-icon svg {
        width: 18px;
        height: 18px;
    }

    .article-toolbar .action-value {
        font-size: 11px;
    }

    /* Mata */

    .article-toolbar .view-action {
        min-width: 52px !important;
    }

    /* Like */

    .article-toolbar .like-action {
        min-width: 52px !important;
    }

    /* Rp */

    .article-toolbar .support-action {
        width: 42px !important;
        min-width: 42px !important;
    }

    .article-toolbar .gift-icon,
    .article-toolbar .gift-icon svg {
        width: 20px;
        height: 20px;
    }

    /* Bagikan */

    .article-toolbar .share-action {
        min-width: 82px !important;

        padding-left: 11px !important;
        padding-right: 11px !important;
    }

    .article-toolbar .share-action .action-text {
        font-size: 11px;
    }

    /* Komentar */

    .article-toolbar .comment-action {
        min-width: 52px !important;
    }

    /* Simpan */

    .article-toolbar .save-action {
        width: 42px !important;
        min-width: 42px !important;
    }
}
/* =========================================
   SHARE PANEL
========================================= */

.share-panel {
    width: 100%;
    box-sizing: border-box;

    display: none;

    margin: -10px 0 24px;
    padding: 14px 16px;

    background: #f5f5f5;

    border-radius: 14px;
    border: 1px solid #e7e7e7;
}

.share-panel.show {
    display: block;
}

.share-panel-title {
    margin-bottom: 11px;

    font-size: 12px;
    font-weight: 600;

    color: #555;
}

.share-panel-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}


/* =========================================
   SHARE OPTION
========================================= */

.share-option {
    height: 36px;

    padding: 0 13px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    border: 0;
    border-radius: 18px;

    background: #e9e9e9;
    color: #555;

    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background .18s ease,
        transform .12s ease;
}

.share-option:hover {
    background: #dedede;
}

.share-option:active {
    background: #d7d7d7;
    transform: scale(.96);
}


/* ICON */

.share-option-icon {
    width: 17px;
    height: 17px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.share-option-icon svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: #555;

    stroke-width: 1.6;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .share-panel {
        padding: 12px;
        border-radius: 12px;
    }

    .share-panel-buttons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 7px;
    }

    .share-option {
        width: 100%;
        height: 38px;
    }
}
/* =========================================================
   WHATSAPP CHANNEL
========================================================= */

.whatsapp-channel-card {
    width: 100%;
    margin: 34px 0 38px;
    padding: 22px 24px;

    display: flex;
    align-items: center;
    gap: 18px;

    box-sizing: border-box;

    background: #f7f7f7;

    border: 1px solid #e5e5e5;
    border-radius: 16px;

    box-shadow: 0 4px 18px rgba(0,0,0,.04);
}


/* ICON */

.whatsapp-channel-icon {
    width: 54px;
    height: 54px;

    min-width: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e9e9e9;
}

.whatsapp-channel-icon svg {
    width: 27px;
    height: 27px;

    fill: none;

    stroke: #555;

    stroke-width: 1.5;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* CONTENT */

.whatsapp-channel-content {
    flex: 1;
    min-width: 0;
}

.whatsapp-channel-label {
    display: block;

    margin-bottom: 5px;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1px;

    color: #777;
}

.whatsapp-channel-content h3 {
    margin: 0 0 7px;

    font-size: 18px;
    line-height: 1.3;

    font-weight: 700;

    color: #17202a;
}

.whatsapp-channel-content p {
    margin: 0;

    max-width: 650px;

    font-size: 13px;
    line-height: 1.6;

    color: #6b7280;
}


/* BUTTON */

.whatsapp-channel-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    margin-top: 15px;
    padding: 10px 17px;

    border-radius: 20px;

    background: #082b4c;
    color: #fff;

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    transition:
        background .2s ease,
        transform .15s ease;
}

.whatsapp-channel-button:hover {
    background: #10456f;
}

.whatsapp-channel-button:active {
    transform: scale(.97);
}

.whatsapp-channel-button span {
    font-size: 16px;
    line-height: 1;
}


/* =========================================================
   KOMENTAR
========================================================= */

.article-comments {
    width: 100%;

    margin: 0 0 42px;
    padding: 0;
}


/* HEADER */

.comments-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    padding-bottom: 14px;

    border-bottom: 1px solid #e5e5e5;
}

.comments-label {
    display: block;

    margin-bottom: 4px;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1px;

    color: #888;
}

.comments-header h3 {
    margin: 0;

    font-size: 20px;
    line-height: 1.3;

    color: #17202a;
}

.comments-count {
    font-size: 11px;
    color: #888;
}


/* FORM */

.comment-form {
    display: flex;
    gap: 13px;

    margin-top: 18px;
    padding: 16px;

    background: #f7f7f7;

    border: 1px solid #e5e5e5;
    border-radius: 14px;
}


/* AVATAR */

.comment-avatar {
    width: 38px;
    height: 38px;

    min-width: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e3e3e3;

    color: #777;

    font-size: 14px;
    font-weight: 700;
}


/* FORM CONTENT */

.comment-form-content {
    flex: 1;
    min-width: 0;
}


/* TEXTAREA */

.comment-form textarea {
    width: 100%;
    min-height: 92px;

    padding: 13px 14px;

    box-sizing: border-box;

    resize: vertical;

    border: 1px solid #ddd;
    border-radius: 10px;

    background: #fff;

    color: #333;

    font-family: inherit;
    font-size: 13px;
    line-height: 1.5;

    outline: none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.comment-form textarea::placeholder {
    color: #999;
}

.comment-form textarea:focus {
    border-color: #aaa;

    box-shadow: 0 0 0 3px rgba(0,0,0,.04);
}


/* FORM BOTTOM */

.comment-form-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-top: 9px;
}

.comment-note {
    font-size: 10px;
    line-height: 1.4;

    color: #999;
}


/* SUBMIT */

.comment-submit {
    flex: 0 0 auto;

    height: 36px;

    padding: 0 16px;

    border: 0;
    border-radius: 18px;

    background: #082b4c;
    color: #fff;

    font-size: 11px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background .2s ease,
        transform .15s ease;
}

.comment-submit:hover {
    background: #10456f;
}

.comment-submit:active {
    transform: scale(.97);
}


/* =========================================================
   EMPTY COMMENTS
========================================================= */

.comments-list {
    margin-top: 16px;
}

.comments-empty {
    min-height: 150px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 25px;

    box-sizing: border-box;

    border: 1px dashed #ddd;
    border-radius: 14px;

    text-align: center;
}

.comments-empty-icon {
    width: 42px;
    height: 42px;

    margin-bottom: 9px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f0f0f0;
}

.comments-empty-icon svg {
    width: 21px;
    height: 21px;

    fill: none;

    stroke: #888;

    stroke-width: 1.5;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.comments-empty strong {
    margin-bottom: 4px;

    font-size: 13px;

    color: #555;
}

.comments-empty span {
    font-size: 11px;

    color: #999;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .whatsapp-channel-card {
        margin: 28px 0 32px;
        padding: 18px;

        align-items: flex-start;
        gap: 13px;
    }

    .whatsapp-channel-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .whatsapp-channel-icon svg {
        width: 23px;
        height: 23px;
    }

    .whatsapp-channel-content h3 {
        font-size: 16px;
    }

    .whatsapp-channel-content p {
        font-size: 12px;
        line-height: 1.5;
    }

    .whatsapp-channel-button {
        padding: 9px 14px;
        font-size: 11px;
    }


    .comments-header {
        align-items: center;
    }

    .comments-header h3 {
        font-size: 18px;
    }

    .comment-form {
        padding: 12px;
        gap: 9px;
    }

    .comment-avatar {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 12px;
    }

    .comment-form-bottom {
        align-items: flex-end;
        flex-direction: column;
        gap: 8px;
    }

    .comment-note {
        width: 100%;
    }

    .comment-submit {
        width: 100%;
    }
}
.support-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0,0,0,.58);
    box-sizing: border-box;
}

.support-modal.show {
    display: flex;
}

.support-modal-box {
    position: relative;
    width: min(430px, 100%);
    padding: 30px 26px 24px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 20px 70px rgba(0,0,0,.28);
    text-align: center;
    box-sizing: border-box;
    animation: supportModalIn .25s ease;
}

@keyframes supportModalIn {
    from {
        opacity: 0;
        transform: translateY(15px) scale(.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.support-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    background: #eeeeee;
    color: #555;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.support-modal-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #eeeeee;
    color: #555;
    font-size: 14px;
    font-weight: 800;
}

.support-modal-label {
    display: block;
    margin-bottom: 5px;
    color: #888;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.support-modal-box h3 {
    margin: 0 0 8px;
    color: #17202a;
    font-size: 22px;
}

.support-modal-box p {
    margin: 0 auto 20px;
    max-width: 350px;
    color: #777;
    font-size: 13px;
    line-height: 1.6;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.support-option {
    padding: 11px 6px;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    background: #f7f7f7;
    cursor: pointer;
}

.support-option strong {
    display: block;
    color: #555;
    font-size: 13px;
}

.support-option span {
    display: block;
    margin-top: 3px;
    color: #999;
    font-size: 9px;
}

.support-option:hover {
    background: #eeeeee;
}

.support-qris-button {
    width: 100%;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-radius: 22px;
    background: #082b4c;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.support-qris-button span {
    font-size: 17px;
}

.support-modal-box small {
    display: block;
    margin-top: 13px;
    color: #999;
    font-size: 9px;
    line-height: 1.5;
}

@media (max-width:600px) {

    .support-modal {
        padding: 15px;
    }

    .support-modal-box {
        padding: 27px 18px 20px;
    }

    .support-modal-box h3 {
        font-size: 20px;
    }

    .support-options {
        gap: 6px;
    }
}
/* =====================================================
   POPUP DUKUNG ARUSMADURA
===================================================== */

.support-modal {

    position: fixed;

    inset: 0;

    z-index: 999999;

    display: none;

    align-items: center;

    justify-content: center;

    padding: 20px;

    background: rgba(0,0,0,.60);

    box-sizing: border-box;

}


.support-modal.show {

    display: flex !important;

}


.support-modal-box {

    position: relative;

    width: min(430px, 100%);

    padding: 30px 25px 24px;

    background: #ffffff;

    border-radius: 18px;

    box-shadow:
        0 20px 70px rgba(0,0,0,.30);

    text-align: center;

    box-sizing: border-box;

}


.support-modal-close {

    position: absolute;

    top: 12px;

    right: 12px;

    width: 34px;

    height: 34px;

    border: 0;

    border-radius: 50%;

    background: #eeeeee;

    color: #555555;

    font-size: 23px;

    line-height: 1;

    cursor: pointer;

}


.support-modal-icon {

    width: 58px;

    height: 58px;

    margin: 0 auto 14px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 16px;

    background: #eeeeee;

    color: #555555;

    font-size: 14px;

    font-weight: 800;

}


.support-modal-label {

    display: block;

    margin-bottom: 5px;

    color: #888888;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.2px;

}


.support-modal-box h3 {

    margin: 0 0 8px;

    color: #17202a;

    font-size: 22px;

    line-height: 1.3;

}


.support-modal-box p {

    margin: 0 auto 20px;

    max-width: 350px;

    color: #777777;

    font-size: 13px;

    line-height: 1.6;

}


.support-options {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 8px;

    margin-bottom: 12px;

}


.support-option {

    padding: 12px 6px;

    border: 1px solid #dddddd;

    border-radius: 10px;

    background: #f7f7f7;

    cursor: pointer;

}


.support-option strong {

    display: block;

    color: #555555;

    font-size: 13px;

}


.support-option span {

    display: block;

    margin-top: 3px;

    color: #999999;

    font-size: 9px;

}


.support-option:hover {

    background: #eeeeee;

}


.support-qris-button {

    width: 100%;

    height: 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    border: 0;

    border-radius: 22px;

    background: #082b4c;

    color: #ffffff;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;

}


.support-qris-button span {

    font-size: 17px;

}


.support-modal-box small {

    display: block;

    margin-top: 13px;

    color: #999999;

    font-size: 9px;

    line-height: 1.5;

}


@media (max-width:600px) {

    .support-modal {

        padding: 15px;

    }


    .support-modal-box {

        padding:
            27px 18px 20px;

    }


    .support-modal-box h3 {

        font-size: 20px;

    }

}
/* =========================================
   POPUP QRIS
========================================= */

.qris-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0,0,0,.65);
    box-sizing: border-box;
}

.qris-modal.show {
    display: flex !important;
}

.qris-modal-box {
    position: relative;
    width: min(390px, 100%);
    padding: 28px 22px 24px;
    background: #fff;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 20px 70px rgba(0,0,0,.30);
    box-sizing: border-box;
}

.qris-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: #eeeeee;
    color: #555;
    font-size: 23px;
    line-height: 1;
    cursor: pointer;
}

.qris-label {
    display: block;
    margin-bottom: 6px;
    color: #888;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.qris-modal-box h3 {
    margin: 0 0 8px;
    color: #17202a;
    font-size: 20px;
}

.qris-modal-box p {
    margin: 0 0 18px;
    color: #777;
    font-size: 12px;
    line-height: 1.5;
}

.qris-image {
    width: 270px;
    max-width: 100%;
    margin: 0 auto 16px;
    padding: 10px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    box-sizing: border-box;
}

.qris-image img {
    display: block;
    width: 100%;
    height: auto;
}

.qris-modal-box strong {
    display: block;
    color: #555;
    font-size: 11px;
    line-height: 1.5;
}
/* =====================================================
   FOOTER ARUSMADURA
===================================================== */

.site-footer {
    width: 100%;
    padding: 42px 20px 18px;
    background: linear-gradient(
        160deg,
        #061c32,
        #082b4c 55%,
        #10456f
    );
    color: #ffffff;
    text-align: center;
}

.site-footer .footer-inner {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* LOGO */

.site-footer .footer-brand {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.site-footer .footer-logo {
    display: inline-block;
}

.site-footer .footer-logo img {
    display: block;
    width: 165px;
    height: auto;
    margin: 0 auto;
}

.site-footer .footer-description {
    max-width: 520px;
    margin: 14px auto 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    line-height: 1.7;
}

.site-footer .footer-tagline {
    margin: 0;
    color: #f2c300;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.4px;
}


/* BAGIAN KANAN DIUBAH MENJADI TENGAH */

.site-footer .footer-right {
    width: 100%;
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 17px;
}


/* MENU FOOTER */

.site-footer .footer-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px 18px;
}

.site-footer .footer-navigation a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.5;
    transition: color 0.25s ease;
}

.site-footer .footer-navigation a:hover {
    color: #f2c300;
}


/* SOCIAL MEDIA */

.site-footer .footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.site-footer .footer-social a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;

    text-decoration: none;
    font-size: 14px;

    transition: all 0.25s ease;
}

.site-footer .footer-social a:hover {
    color: #061c32;
    background: #f2c300;
    border-color: #f2c300;
    transform: translateY(-2px);
}


/* COPYRIGHT */

.site-footer .footer-bottom {
    width: 100%;
    max-width: 1100px;
    margin: 27px auto 0;
    padding-top: 15px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);

    text-align: center;
}

.site-footer .footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 9px;
    line-height: 1.6;
}


/* MOBILE */

@media (max-width: 768px) {

    .site-footer {
        padding: 35px 18px 16px;
    }

    .site-footer .footer-logo img {
        width: 150px;
    }

    .site-footer .footer-description {
        max-width: 340px;
        font-size: 10px;
    }

    .site-footer .footer-navigation {
        gap: 8px 14px;
    }

    .site-footer .footer-navigation a {
        font-size: 9px;
    }

    .site-footer .footer-social a {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

}
/* WARNA JUDUL SLIDER BERITA TERKINI */

.hero-news .hero-content a,
.hero-news .hero-content h1,
.hero-news .hero-content h2,
.hero-news .hero-content h3,
.hero-news .hero-info a,
.hero-news .hero-info h1,
.hero-news .hero-info h2,
.hero-news .hero-info h3,
.hero-news .hero-text a,
.hero-news .hero-text h1,
.hero-news .hero-text h2,
.hero-news .hero-text h3 {
    color: #ffffff !important;
    text-decoration: none !important;
}

.hero-news .hero-content a:hover,
.hero-news .hero-info a:hover,
.hero-news .hero-text a:hover {
    color: #f2c300 !important;
}

/* Judul artikel ArusMadura */
.article-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}

/* Tablet */
@media (max-width: 900px) {
    .article-title {
        font-size: 32px;
        line-height: 1.2;
    }
}

/* HP */
@media (max-width: 600px) {
    .article-title {
        font-size: 14px;
        font-weight: 400;
        line-height: 1.1;
        letter-spacing: 0;
        margin-bottom: 10px;
    }
}
/* ==================================================
   TOP ADVERTISEMENT - ARUS MADURA
================================================== */

.top-ad {
    position: relative;
    width: 100%;
    height: 500px;
    background: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.top-ad-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* LABEL IKLAN ATAS */
.top-ad-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    z-index: 5;
}

/* AREA GAMBAR */
.top-ad-image-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0 42px;
    box-sizing: border-box;
    background: #000;
}

/* GAMBAR JANGAN DIPOTONG */
.top-ad-image-wrap img {
    display: block;
    width: auto !important;
    height: auto !important;

    max-width: 100% !important;
    max-height: 100% !important;

    object-fit: contain !important;
    object-position: center center;
}

/* BAR BAWAH */
.top-ad-bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.95);

    color: #fff;
    font-size: 10px;
    font-weight: 400;
    text-align: center;

    z-index: 6;
}

/* TOMBOL X */
.top-ad-close {
    position: absolute;
    top: 0;
    right: 8px;

    width: 30px;
    height: 30px;

    padding: 0;
    margin: 0;

    border: 0;
    background: transparent;

    color: #fff;
    font-size: 24px;
    line-height: 30px;

    cursor: pointer;
    z-index: 20;
}

.top-ad-close:hover {
    opacity: .7;
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {

    .top-ad {
        height: 430px;
    }

    .top-ad-label {
        height: 28px;
        font-size: 10px;
    }

    .top-ad-image-wrap {
        padding: 28px 0 40px;
    }

    .top-ad-bottom {
        height: 38px;
        font-size: 9px;
    }

    .top-ad-close {
        width: 28px;
        height: 28px;
        right: 6px;
        font-size: 22px;
        line-height: 28px;
    }
}
/* =========================================================
   LABEL IKLAN INLINE
========================================================= */

.article-inline-ad-label {
    width: 100%;
    margin: 0;
    padding: 6px 8px 7px;
    text-align: center;
    font-size: 9px;
    line-height: 1.2;
    font-weight: 400;
    color: #777;
    background: #f7f7f7;
    letter-spacing: .1px;
}

.article-inline-ad {
    position: relative;
    width: 100%;
    margin: 22px auto;
    overflow: hidden;
    background: #f7f7f7;
    border-radius: 4px;
}

.article-inline-ad img,
.article-inline-ad video {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
}

.article-ad-close {
    position: absolute;
    top: 6px;
    right: 6px;
    z-index: 5;
    width: 22px;
    height: 22px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(0,0,0,.55);
    color: #fff;
    font-size: 15px;
    line-height: 22px;
    text-align: center;
    cursor: pointer;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 18px 0 22px;
}

.author-avatar {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;

    background: linear-gradient(135deg, #082b4c, #10456f);
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;

    box-shadow: 0 3px 10px rgba(8, 43, 76, 0.18);
}

.author-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
}

.author-info strong {
    font-size: 13px;
    line-height: 1.3;
    font-weight: 400;
    color: #17202a;
}

.author-info span {
    font-size: 10px;
    line-height: 1.3;
    font-weight: 400;
    color: #8a8f98;
}
