/* ── GLOBAL ───────────────────────────────────────────────── */
    body {
        font-family: 'Plus Jakarta Sans', sans-serif;
        background: #f4f6fa;
        color: #1a1a1a;
    }

    /* ── WRAPPER UTAMA ────────────────────────────────────────── */
    .news-show-wrapper {
        max-width: 1140px;
        margin: 0 auto;
        padding: 18px 20px 60px;
    }

    /* ── BREADCRUMB ───────────────────────────────────────────── */
    .news-breadcrumb {
        font-size: 13px;
        color: #555;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 4px;
        flex-wrap: wrap;
    }
    .news-breadcrumb a {
        color: #555;
        text-decoration: none;
    }
    .news-breadcrumb a:hover { text-decoration: underline; }
    .news-breadcrumb .sep { color: #aaa; }

    /* ── LAYOUT GRID ──────────────────────────────────────────── */
    .news-show-grid {
        display: grid;
        grid-template-columns: 1fr 280px;
        gap: 28px;
        align-items: start;
    }
    @media (max-width: 900px) {
        .news-show-grid {
            grid-template-columns: 1fr;
        }
    }

    /* ── CARD ARTIKEL (pembungkus utama) ──────────────────────── */
    .news-article-card {
        background: #ffffff;
        border-radius: 10px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.07);
        padding: 28px 32px 32px;
        min-width: 0;          /* penting: mencegah grid item melar */
        overflow: hidden;      /* konten tidak bocor keluar card */
    }
    @media (max-width: 600px) {
        .news-article-card { padding: 18px 16px 24px; }
    }

    /* ── ARTIKEL KIRI ─────────────────────────────────────────── */
    .news-article { min-width: 0; }

    /* Judul */
    .news-article__title {
        font-size: clamp(20px, 3vw, 28px);
        font-weight: 800;
        color: #111;
        line-height: 1.35;
        margin-bottom: 10px;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    /* Meta: penulis, tanggal, waktu baca */
    .news-article__meta {
        display: flex;
        align-items: center;
        gap: 14px;
        flex-wrap: wrap;
        font-size: 13px;
        color: #666;
        margin-bottom: 18px;
    }
    .news-article__meta-item {
        display: flex;
        align-items: center;
        gap: 5px;
    }
    .news-article__meta-item svg {
        flex-shrink: 0;
        opacity: 0.6;
    }
    .news-article__meta strong {
        color: #1a1a1a;
        font-weight: 600;
    }

    /* Gambar utama */
    .news-article__img-wrap {
        width: 100%;
        margin-bottom: 24px;
        border-radius: 6px;
        overflow: hidden;
        background: #e8e8e8;
    }
    .news-article__img-wrap img {
        width: 100%;
        height: auto;
        display: block;
        max-height: 480px;
        object-fit: cover;
    }

    /* ── KONTEN TEKS ARTIKEL — FIX UTAMA ─────────────────────── */
    .news-article__body {
        font-size: 15px;
        line-height: 1.85;
        color: #1a1a1a;

        /* Mencegah teks/kata panjang bablas ke kanan */
        word-break: break-word;
        overflow-wrap: break-word;
        word-wrap: break-word;    /* fallback lama */

        /* Pastikan lebar tidak melebihi parent */
        max-width: 100%;
        overflow: hidden;
    }
    .news-article__body p {
        margin-bottom: 14px;
        text-align: justify;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .news-article__body p:last-child { margin-bottom: 0; }
    .news-article__body h2,
    .news-article__body h3 {
        font-weight: 700;
        color: #111;
        margin-top: 24px;
        margin-bottom: 10px;
        line-height: 1.3;
        word-break: break-word;
    }
    .news-article__body h2 { font-size: 20px; }
    .news-article__body h3 { font-size: 17px; }
    .news-article__body img {
        max-width: 100%;
        height: auto;
        border-radius: 6px;
        margin: 16px 0;
        display: block;
    }
    .news-article__body ul,
    .news-article__body ol {
        padding-left: 22px;
        margin-bottom: 14px;
    }
    .news-article__body li { margin-bottom: 6px; }
    .news-article__body blockquote {
        border-left: 4px solid #0038a8;
        background: #f0f4ff;
        padding: 12px 16px;
        margin: 16px 0;
        color: #333;
        font-style: italic;
        border-radius: 0 6px 6px 0;
    }
    /* Tabel di dalam konten agar tidak melar */
    .news-article__body table {
        width: 100%;
        max-width: 100%;
        display: block;
        overflow-x: auto;
    }

    /* Divider tipis sebelum body */
    .news-article__divider {
        border: none;
        border-top: 1px solid #eaeaea;
        margin: 0 0 22px;
    }

    /* Footer artikel: share */
    .news-article__footer {
        margin-top: 32px;
        padding-top: 20px;
        border-top: 1px solid #e5e5e5;
        display: flex;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
    }
    .news-share__label {
        font-size: 12px;
        font-weight: 700;
        color: #888;
        text-transform: uppercase;
        letter-spacing: 0.07em;
    }
    .news-share__btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px; height: 34px;
        border-radius: 50%;
        text-decoration: none;
        transition: opacity 0.2s;
    }
    .news-share__btn:hover { opacity: 0.8; }
    .news-share__btn--wa  { background: #25d366; color: #fff; }
    .news-share__btn--fb  { background: #1877f2; color: #fff; }

    /* ── SIDEBAR KANAN ────────────────────────────────────────── */
    .news-sidebar {
        position: sticky;
        top: 24px;
    }
    @media (max-width: 900px) {
        .news-sidebar { position: static; }
    }

    /* Card sidebar */
    .news-sidebar-card {
        background: #ffffff;
        border-radius: 10px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.07);
        padding: 20px 18px;
    }

    /* Judul sidebar */
    .news-sidebar__heading {
        font-size: 18px;
        font-weight: 800;
        color: #0038a8;
        margin-bottom: 14px;
        padding-bottom: 10px;
        border-bottom: 2px solid #e5e5e5;
    }

    /* Item berita di sidebar */
    .news-sidebar__item {
        display: block;
        text-decoration: none;
        padding: 12px 0;
        border-bottom: 1px solid #e8e8e8;
        transition: opacity 0.2s;
    }
    .news-sidebar__item:last-child { border-bottom: none; }
    .news-sidebar__item:hover { opacity: 0.7; }

    .news-sidebar__item-title {
        font-size: 13px;
        font-weight: 700;
        color: #0038a8;
        line-height: 1.4;
        margin-bottom: 4px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        word-break: break-word;
    }
    .news-sidebar__item:hover .news-sidebar__item-title {
        text-decoration: underline;
    }
    .news-sidebar__item-date {
        font-size: 11px;
        color: #888;
    }

    /* Tombol lihat semua */
    .news-sidebar__more {
        display: block;
        text-align: center;
        margin-top: 16px;
        font-size: 12px;
        font-weight: 700;
        color: #0038a8;
        text-decoration: none;
        padding: 8px 0;
        border: 1px solid #0038a8;
        border-radius: 4px;
        transition: background 0.2s, color 0.2s;
    }
    .news-sidebar__more:hover {
        background: #0038a8;
        color: #fff;
    }

    /* ── SCROLL TO TOP ────────────────────────────────────────── */
    .news-scrolltop {
        position: fixed;
        bottom: 24px; right: 24px;
        width: 40px; height: 40px;
        background: #0038a8; color: #fff;
        border: none; cursor: pointer;
        border-radius: 4px;
        display: flex; align-items: center; justify-content: center;
        box-shadow: 0 2px 8px rgba(0,0,0,0.18);
        opacity: 0; transform: translateY(12px);
        visibility: hidden;
        transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
        z-index: 50;
    }
    .news-scrolltop.is-visible {
        opacity: 1; transform: translateY(0); visibility: visible;
    }
    .news-scrolltop:hover { background: #0029a0; }
