:root {
    --navy: #073b75;
    --navy2: #052e5d;
    --blue: #0b63b6;
    --gold: #ffb51b;
    --ink: #10213d;
    --muted: #607087;
    --line: #dce6f1;
    --soft: #f4f8fc;
    --white: #fff;
}


/* =========================================================
   RESET & GLOBAL
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Arial, sans-serif;
    color: var(--ink);
    background: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

.ppid-container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    background: rgba(255, 255, 255, .97);
    border-bottom: 1px solid #edf2f7;
}

.site-header .header-inner {
    width: 100%;
    max-width: none;
    min-height: 76px;
    margin: 0;
    padding: 0 24px;

    display: flex;
    align-items: center;
    gap: 24px;
}

.site-header .brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    min-width: 0;
    margin: 0;
}

.site-header .custom-logo-link {
    display: flex;
    align-items: center;
}

.site-header .custom-logo {
    display: block;
    width: auto;
    height: 58px;
    max-width: 360px;
    object-fit: contain;
}

.brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--navy);
    color: #fff;
    font-weight: 800;
}

.brand-text {
    display: flex;
    flex-direction: column;
    color: var(--navy);
}

.brand-text strong {
    font-size: 22px;
    line-height: 1;
}

.brand-text small {
    margin-top: 4px;
    font-size: 11px;
    font-weight: 800;
}

.site-header .primary-nav {
    margin-left: auto;
}

.ppid-menu {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ppid-menu a {
    font-size: 14px;
    font-weight: 650;
}

.ppid-menu a:hover {
    color: var(--blue);
}


/* DROPDOWN MENU */

.ppid-menu > li {
    position: relative;
}

.ppid-menu .sub-menu {
    position: absolute;
    z-index: 9999;

    top: calc(100% + 14px);
    left: 50%;

    min-width: 245px;
    margin: 0;
    padding: 8px;

    list-style: none;

    background: #ffffff;

    border: 1px solid #dce6f1;
    border-radius: 12px;

    box-shadow:
        0 14px 35px rgba(7, 59, 117, .13);

    opacity: 0;
    visibility: hidden;

    transform:
        translate(-50%, 8px);

    transition:
        opacity .18s ease,
        transform .18s ease,
        visibility .18s ease;
}

.ppid-menu > li:hover > .sub-menu,
.ppid-menu > li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;

    transform:
        translate(-50%, 0);
}

.ppid-menu .sub-menu li {
    display: block;
    width: 100%;
    margin: 0;
}

.ppid-menu .sub-menu a {
    display: block;

    width: 100%;
    padding: 11px 13px;

    border-radius: 8px;

    color: #263b58;

    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;

    white-space: nowrap;
}

.ppid-menu .sub-menu a:hover {
    background: #eef6ff;
    color: #0756a0;
}


/* PANAH MENU YANG PUNYA SUBMENU */

.ppid-menu > .menu-item-has-children > a::after {
    content: "⌄";

    display: inline-block;

    margin-left: 6px;

    font-size: 11px;

    transform: translateY(-1px);
}
.site-header .header-cta {
    flex-shrink: 0;
    margin-left: 0;
    padding: 13px 18px;

    background: var(--gold);
    color: #10213d;
    font-weight: 800;
    border-radius: 12px;
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    font-size: 26px;
}


/* =========================================================
   BUTTON
========================================================= */

.btn-gold {
    background: var(--gold);
    color: #10213d;
    font-weight: 800;
    border-radius: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 800;
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, .7);
    color: #fff;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    background: linear-gradient(120deg, var(--navy2), #0755a1);
    color: #fff;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    min-height: 430px;
}

.hero-copy {
    padding: 72px 40px 64px 0;
    align-self: center;
}

.eyebrow {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.hero h1 {
    margin: 18px 0;
    font-size: 56px;
    line-height: 1.02;
}

.hero p {
    max-width: 580px;
    font-size: 18px;
    line-height: 1.6;
    color: #e9f3ff;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 28px;
}

.hero-visual {
    min-height: 430px;
    position: relative;
    overflow: hidden;

    width: calc(100% + (100vw - 1180px) / 2);
    margin-right: calc((100vw - 1180px) / -2);
}

.hero-building {
    position: absolute;
    inset: 0;

    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: right;
}
.building-placeholder {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    background: linear-gradient(135deg, #eaf4ff, #bdd8ef);
    color: var(--navy);
    font-weight: 800;
}

.building-placeholder small {
    margin-top: 8px;
    font-weight: 500;
}


/* =========================================================
   QUICK SERVICES
========================================================= */

.quick-services {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-top: 18px;
}

.service-card {
    min-height: 190px;
    padding: 20px 16px;

    border: 1px solid var(--line);
    background: #fff;
    border-radius: 16px;

    transition: .2s;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(7, 59, 117, .09);
}

.service-card > span {
    width: 42px;
    height: 42px;
    border-radius: 50%;

    display: grid;
    place-items: center;

    background: #eaf4ff;
    color: var(--blue);
    font-weight: 900;
}

.service-card h3 {
    margin: 16px 0 8px;
    font-size: 17px;
}

.service-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

.service-card b {
    font-size: 12px;
    color: var(--blue);
}


/* =========================================================
   STATISTICS
========================================================= */

.stats-wrap {
    padding: 18px 0;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 16px;
}

.stats > div,
.stats > a {
    padding: 20px 26px;

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

    border-right: 1px solid var(--line);
}

.stats > *:last-child {
    border: 0;
}

.stats strong {
    font-size: 28px;
    color: var(--navy);
}

.stats span {
    font-size: 13px;
    color: var(--muted);
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.content-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr .7fr;
    gap: 18px;
    padding: 18px 0 26px;
}

.content-panel {
    min-width: 0;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 8px;
    border-bottom: 2px solid #edf2f7;
}

.section-heading h2 {
    margin: 0 0 12px;
    font-size: 21px;
    color: var(--navy);
}

.section-heading a {
    font-size: 12px;
    color: var(--blue);
}


/* =========================================================
   DOCUMENT & NEWS LIST
========================================================= */

.list-row,
.news-row,
.quick-link {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 13px 4px;
    border-bottom: 1px solid #edf2f7;
}

.list-row > span:nth-child(2),
.news-row > span {
    min-width: 0;
    flex: 1;

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

.list-row strong,
.news-row strong {
    font-size: 14px;
}

.list-row small,
.news-row small {
    font-size: 11px;
    color: var(--muted);
}

.file-icon {
    padding: 8px 5px;

    font-size: 10px;
    font-weight: 900;

    background: #feecec;
    color: #d33232;
    border-radius: 6px;
}

.news-thumb {
    width: 76px;
    height: 52px;

    display: grid;
    place-items: center;

    overflow: hidden;
    background: #eaf4ff;
    border-radius: 8px;

    color: var(--navy);
    font-weight: 800;
}

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

.quick-link {
    justify-content: space-between;
    font-size: 14px;
}

.quick-link b {
    color: var(--blue);
    font-size: 20px;
}

.empty-state {
    padding: 24px;
    background: var(--soft);
    border-radius: 12px;
    color: var(--muted);
}


/* =========================================================
   PROCESS - ALUR PERMOHONAN INFORMASI
========================================================= */

.process-section {
    padding: 24px 0 38px;
}

.process-section .section-heading {
    margin-bottom: 24px;
}


/* WRAPPER 5 LANGKAH */

.process {
    position: relative;

    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));

    gap: 0;
}


/* GARIS PENGHUBUNG */

.process::before {
    content: "";

    position: absolute;
    z-index: 0;

    top: 25px;
    left: 10%;
    right: 10%;

    height: 2px;

    background: #dce8f4;
}


/* MASING-MASING LANGKAH */

.process-step {
    position: relative;
    z-index: 1;

    display: flex;
    flex-direction: column;
    align-items: center;

    min-width: 0;
    padding: 0 16px;

    text-align: center;
}


/* NOMOR */

.process-step > span {
    position: relative;
    z-index: 2;

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

    flex: 0 0 52px;

    width: 52px;
    height: 52px;

    margin-bottom: 16px;

    border-radius: 50%;

    background: #eaf4ff;
    color: var(--blue);

    font-size: 17px;
    line-height: 1;
    font-weight: 900;

    box-shadow: 0 0 0 8px #ffffff;
}


/* AREA TEKS */

.process-step > div {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 6px;

    width: 100%;
}


/* JUDUL LANGKAH */

.process-step strong {
    display: block;

    margin: 0;

    color: var(--ink);

    font-size: 14px;
    line-height: 1.35;
    font-weight: 800;
}


/* KETERANGAN */

.process-step small {
    display: block;

    max-width: 185px;

    margin: 0 auto;

    color: var(--muted);

    font-size: 12px;
    line-height: 1.55;
    font-weight: 500;
}


/* =========================================================
   PROCESS - TABLET
========================================================= */

@media (max-width: 1100px) {

    .process-step {
        padding: 0 10px;
    }

    .process-step small {
        max-width: 160px;
    }

}


/* =========================================================
   PROCESS - MOBILE
========================================================= */

@media (max-width: 768px) {

    .process {
        display: flex;
        flex-direction: column;

        gap: 0;
    }


    /* garis vertikal */

    .process::before {
        top: 26px;
        bottom: 26px;

        left: 25px;
        right: auto;

        width: 2px;
        height: auto;
    }


    .process-step {
        display: grid;

        grid-template-columns: 52px minmax(0, 1fr);

        align-items: start;

        gap: 16px;

        padding: 0 0 26px;

        text-align: left;
    }


    .process-step:last-child {
        padding-bottom: 0;
    }


    .process-step > span {
        margin: 0;

        box-shadow: 0 7px 0 7px #ffffff;
    }


    .process-step > div {
        align-items: flex-start;

        padding-top: 4px;

        text-align: left;
    }


    .process-step strong {
        font-size: 14px;
    }


    .process-step small {
        max-width: none;

        margin: 0;

        text-align: left;
    }

}


/* =========================================================
   CONTACT
========================================================= */

.contact-strip {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1.12fr 1fr;

    margin-top: 18px;
    margin-bottom: 36px;

    background: #ffffff;

    border: 1px solid #d9e5f0;
    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 10px 30px rgba(7, 59, 117, .07);
}


/* =========================================================
   PANEL UTAMA
========================================================= */

.contact-lead {
    position: relative;

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

    min-height: 145px;
    padding: 26px 28px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #073b75 0%,
            #07539a 100%
        );

    color: #ffffff;
}


/* dekorasi lingkaran */

.contact-lead::before,
.contact-lead::after {
    content: "";

    position: absolute;

    border-radius: 50%;

    border: 18px solid rgba(255,255,255,.035);
}

.contact-lead::before {
    width: 150px;
    height: 150px;

    right: -85px;
    bottom: -100px;
}

.contact-lead::after {
    width: 90px;
    height: 90px;

    right: -50px;
    bottom: -65px;
}


/* icon utama */

.contact-main-icon {
    position: relative;
    z-index: 2;

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

    flex: 0 0 54px;

    width: 54px;
    height: 54px;

    border-radius: 50%;

    background: #ffffff;
    color: var(--navy);

    font-size: 22px;
    font-weight: 900;
}


/* isi panel utama */

.contact-lead-content {
    position: relative;
    z-index: 2;

    min-width: 0;
}

.contact-lead-content strong {
    display: block;

    margin-bottom: 7px;

    color: #ffffff;

    font-size: 19px;
    line-height: 1.25;
    font-weight: 800;
}

.contact-lead-content span {
    display: block;

    color: rgba(255,255,255,.90);

    font-size: 12px;
    line-height: 1.55;
}


/* =========================================================
   PANEL INFORMASI
========================================================= */

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;

    min-width: 0;
    min-height: 145px;

    padding: 26px 24px;

    border-right: 1px solid #dfe8f1;
}

.contact-item:last-child {
    border-right: 0;
}


/* ICON */

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    background: #eaf4ff;
    color: #0864bd;

    font-size: 19px;
    line-height: 1;
    font-weight: 900;
}


/* icon alamat dibuat seperti pin sederhana */

.contact-item:first-of-type .contact-icon {
    font-size: 14px;
}


/* CONTENT */

.contact-content {
    min-width: 0;
}

.contact-content strong {
    display: block;

    margin-bottom: 7px;

    color: #10213d;

    font-size: 15px;
    line-height: 1.25;
    font-weight: 800;
}

.contact-content span,
.contact-content a {
    display: block;

    color: #263b58;

    font-size: 12px;
    line-height: 1.55;
    font-weight: 500;
}

.contact-content a {
    color: var(--blue);

    overflow-wrap: anywhere;
}

.contact-content a:hover {
    text-decoration: underline;
}


/* =========================================================
   CONTACT - TABLET
========================================================= */

@media (max-width: 950px) {

    .contact-strip {
        grid-template-columns: 1fr 1fr;
    }

    .contact-lead,
    .contact-item {
        min-height: 125px;
    }

    .contact-lead {
        border-bottom: 1px solid #dfe8f1;
    }

    .contact-item {
        border-bottom: 1px solid #dfe8f1;
    }

    .contact-item:nth-child(2) {
        border-right: 0;
    }

    .contact-item:nth-last-child(-n+2) {
        border-bottom: 0;
    }

}


/* =========================================================
   CONTACT - MOBILE
========================================================= */

@media (max-width: 600px) {

    .contact-strip {
        grid-template-columns: 1fr;

        border-radius: 15px;
    }

    .contact-lead,
    .contact-item {
        min-height: auto;

        padding: 22px;
    }

    .contact-lead {
        min-height: 130px;
    }

    .contact-item {
        border-right: 0;
        border-bottom: 1px solid #dfe8f1;
    }

    .contact-item:nth-last-child(-n+2) {
        border-bottom: 1px solid #dfe8f1;
    }

    .contact-item:last-child {
        border-bottom: 0;
    }

    .contact-main-icon {
        flex-basis: 50px;

        width: 50px;
        height: 50px;
    }

    .contact-icon {
        flex-basis: 44px;

        width: 44px;
        height: 44px;
    }

}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding: 28px 0 18px;
    background: var(--navy2);
    color: #d9e8f8;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr .8fr;
    gap: 30px;
}

.site-footer p {
    font-size: 12px;
    line-height: 1.6;
}

.footer-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    list-style: none;
    margin: 0;
    padding: 0;

    font-size: 12px;
}

.copyright {
    margin-top: 20px;
    padding-top: 14px;

    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: 11px;
}


/* =========================================================
   PAGE / SINGLE
========================================================= */

.page-shell {
    min-height: 55vh;
    padding: 50px 0 70px;
}

.entry {
    max-width: 900px;
}

.entry h1 {
    font-size: 42px;
    color: var(--navy);
}

.entry img {
    max-width: 100%;
    height: auto;
}

.meta {
    color: var(--muted);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .site-header .header-inner {
        padding-left: 20px;
        padding-right: 20px;
        gap: 18px;
    }

    .site-header .custom-logo {
        height: 50px;
        max-width: 300px;
    }

    .ppid-menu {
        gap: 14px;
    }

    .ppid-menu a {
        font-size: 13px;
    }

    .header-cta {
        padding: 11px 14px;
        font-size: 13px;
    }

    .quick-services {
        grid-template-columns: repeat(3, 1fr);
    }

    .content-grid {
        grid-template-columns: 1fr 1fr;
    }

    .content-panel:last-child {
        grid-column: 1 / -1;
    }

    .process {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-strip {
        grid-template-columns: 1fr 1fr;
    }

    .contact-strip > div:nth-child(2) {
        border-right: 0;
    }

    .contact-strip > div:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .ppid-container {
        width: min(100% - 30px, 1180px);
    }

    .site-header .header-inner {
        min-height: 68px;
        padding-left: 15px;
        padding-right: 15px;
        gap: 12px;
    }

    .site-header .custom-logo {
        height: 44px;
        max-width: 245px;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
        cursor: pointer;
    }

    .site-header .primary-nav {
        position: absolute;
        top: 68px;
        left: 15px;
        right: 15px;

        display: none;

        margin: 0;
        padding: 14px;

        background: #fff;
        border: 1px solid var(--line);
        border-radius: 14px;

        box-shadow: 0 18px 40px rgba(7, 59, 117, .12);
    }

    .site-header .primary-nav.is-open {
        display: block;
    }

    .ppid-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .ppid-menu li {
        width: 100%;
    }

    .ppid-menu a {
        display: block;
        padding: 12px 10px;
        font-size: 14px;
    }

    .site-header .header-cta {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        padding: 54px 0 48px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-visual {
        min-height: 280px;
    }

    .quick-services {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats {
        grid-template-columns: 1fr 1fr;
    }

    .stats > div,
    .stats > a {
        border-bottom: 1px solid var(--line);
    }

    .stats > *:nth-child(2) {
        border-right: 0;
    }

    .stats > *:nth-last-child(-n+2) {
        border-bottom: 0;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .content-panel:last-child {
        grid-column: auto;
    }

    .process {
        grid-template-columns: 1fr;
    }

    .contact-strip {
        grid-template-columns: 1fr;
    }

    .contact-strip > div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .contact-strip > div:last-child {
        border-bottom: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .entry h1 {
        font-size: 34px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .site-header .header-inner {
        padding-left: 12px;
        padding-right: 12px;
    }

    .site-header .custom-logo {
        height: 39px;
        max-width: 215px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .quick-services {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .stats > div,
    .stats > a {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .stats > *:nth-last-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .stats > *:last-child {
        border-bottom: 0;
    }
}



@media (max-width: 1220px) {
    .hero-visual {
        width: calc(100% + 20px);
        margin-right: -20px;
    }
}

@media (max-width: 768px) {
    .hero-visual {
        width: 100%;
        margin-right: 0;
    }
}

/* ==========================================================
   PPID BBGTK SUMATERA UTARA
   HALAMAN INFORMASI BERKALA
   ========================================================== */


/* ----------------------------------------------------------
   HILANGKAN JUDUL PAGE BAWAAN WORDPRESS
   HANYA JIKA HALAMAN MEMILIKI KONTEN INFORMASI BERKALA
   ---------------------------------------------------------- */

body:has(.ppid-berkala-page) .entry-header,
body:has(.ppid-berkala-page) .page-header {
    display: none;
}


/* ----------------------------------------------------------
   RESET AREA HALAMAN
   ---------------------------------------------------------- */

.ppid-berkala-page {
    width: 100%;
    color: #10213d;
    background: #ffffff;
}

.ppid-berkala-page *,
.ppid-berkala-page *::before,
.ppid-berkala-page *::after {
    box-sizing: border-box;
}

.ppid-berkala-page a {
    text-decoration: none;
}


/* ----------------------------------------------------------
   HERO
   ---------------------------------------------------------- */

.ppid-berkala-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            110deg,
            #073b75 0%,
            #07539a 60%,
            #0b63b6 100%
        );
    color: #ffffff;
}

.ppid-berkala-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -120px;
    top: -210px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
}

.ppid-berkala-hero::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: 160px;
    bottom: -220px;
    border-radius: 50%;
    background: rgba(255,181,27,.12);
}

.ppid-berkala-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 42px 24px 52px;
}

.ppid-berkala-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 34px;
    font-size: 13px;
    color: rgba(255,255,255,.75);
}

.ppid-berkala-breadcrumb a {
    color: rgba(255,255,255,.78);
}

.ppid-berkala-breadcrumb a:hover {
    color: #ffffff;
}

.ppid-berkala-breadcrumb strong {
    color: #ffffff;
}

.ppid-berkala-hero-content {
    max-width: 760px;
}

.ppid-berkala-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    color: #ffbf2f;
}

.ppid-berkala-hero h1 {
    margin: 0 0 15px;
    color: #ffffff;
    font-size: clamp(36px, 5vw, 54px);
    line-height: 1.08;
    font-weight: 800;
}

.ppid-berkala-hero p {
    max-width: 680px;
    margin: 0;
    color: rgba(255,255,255,.88);
    font-size: 16px;
    line-height: 1.7;
}


/* ----------------------------------------------------------
   CONTAINER
   ---------------------------------------------------------- */

.ppid-berkala-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 55px 24px 75px;
}


/* ----------------------------------------------------------
   SECTION HEADING
   ---------------------------------------------------------- */

.ppid-berkala-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 28px;
}

.ppid-section-label {
    display: block;
    margin-bottom: 7px;
    color: #0b63b6;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.ppid-berkala-heading h2,
.ppid-service-heading h2,
.ppid-latest-heading h2 {
    position: relative;
    margin: 0 0 11px;
    padding-bottom: 13px;
    color: #073b75;
    font-size: 29px;
    line-height: 1.2;
}

.ppid-berkala-heading h2::after,
.ppid-service-heading h2::after,
.ppid-latest-heading h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42px;
    height: 4px;
    border-radius: 20px;
    background: #ffb51b;
}

.ppid-berkala-heading p,
.ppid-service-heading p,
.ppid-latest-heading p {
    margin: 0;
    color: #607087;
    font-size: 15px;
    line-height: 1.6;
}


/* ----------------------------------------------------------
   GRID KATEGORI
   ---------------------------------------------------------- */

.ppid-berkala-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.ppid-berkala-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 245px;
    padding: 22px;
    overflow: hidden;

    background: #ffffff;
    border: 1px solid #dce6f1;
    border-radius: 16px;

    color: #10213d;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.ppid-berkala-card::after {
    content: "";
    position: absolute;
    right: -35px;
    bottom: -45px;
    width: 105px;
    height: 105px;
    border-radius: 50%;
    background: #f3f8fd;
    transition: transform .25s ease;
}

.ppid-berkala-card:hover {
    transform: translateY(-4px);
    border-color: #b8d3ec;
    box-shadow: 0 15px 34px rgba(7,59,117,.10);
}

.ppid-berkala-card:hover::after {
    transform: scale(1.25);
}

.ppid-card-number {
    position: relative;
    z-index: 2;

    display: grid;
    place-items: center;

    width: 44px;
    height: 44px;
    margin-bottom: 20px;

    border-radius: 50%;
    background: #eaf4ff;

    color: #0b63b6;
    font-size: 13px;
    font-weight: 900;
}

.ppid-card-content {
    position: relative;
    z-index: 2;
}

.ppid-card-content h3 {
    margin: 0 0 10px;
    color: #10213d;
    font-size: 17px;
    line-height: 1.3;
}

.ppid-card-content p {
    margin: 0;
    color: #607087;
    font-size: 13px;
    line-height: 1.6;
}

.ppid-card-link {
    position: relative;
    z-index: 2;

    display: block;
    margin-top: auto;
    padding-top: 18px;

    color: #0b63b6;
    font-size: 13px;
    font-weight: 800;
}


/* variasi nomor */

.ppid-berkala-card:nth-child(4n+2) .ppid-card-number {
    background: #e9f8f1;
    color: #17875a;
}

.ppid-berkala-card:nth-child(4n+3) .ppid-card-number {
    background: #f4ebff;
    color: #7444b8;
}

.ppid-berkala-card:nth-child(4n+4) .ppid-card-number {
    background: #fff4dc;
    color: #b56d00;
}


/* ----------------------------------------------------------
   LAYANAN PPID
   ---------------------------------------------------------- */

.ppid-berkala-service {
    margin-top: 65px;
}

.ppid-service-heading {
    margin-bottom: 25px;
}

.ppid-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    border: 1px solid #dce6f1;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
}

.ppid-service-item {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    align-items: center;
    gap: 16px;
    min-height: 120px;
    padding: 22px;

    color: #10213d;
    border-bottom: 1px solid #e5edf5;

    transition: background .2s ease;
}

.ppid-service-item:nth-child(odd) {
    border-right: 1px solid #e5edf5;
}

.ppid-service-item:nth-last-child(-n+2) {
    border-bottom: 0;
}

.ppid-service-item:hover {
    background: #f7fbff;
}

.ppid-service-no {
    display: grid;
    place-items: center;

    width: 44px;
    height: 44px;

    border-radius: 50%;
    background: #eaf4ff;

    color: #0b63b6;
    font-size: 12px;
    font-weight: 900;
}

.ppid-service-item h3 {
    margin: 0 0 5px;
    color: #073b75;
    font-size: 16px;
}

.ppid-service-item p {
    margin: 0;
    color: #607087;
    font-size: 13px;
    line-height: 1.5;
}

.ppid-service-arrow {
    color: #0b63b6;
    font-size: 22px;
    font-weight: 800;
}


/* ----------------------------------------------------------
   DASAR HUKUM
   ---------------------------------------------------------- */

.ppid-berkala-legal {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 17px;

    margin-top: 35px;
    padding: 22px 24px;

    border: 1px solid #cce3f8;
    border-radius: 14px;

    background: #eef7ff;
}

.ppid-legal-icon {
    display: grid;
    place-items: center;

    width: 42px;
    height: 42px;

    border-radius: 50%;
    background: #0b63b6;

    color: #ffffff;
    font-size: 20px;
    font-family: Georgia, serif;
    font-weight: 700;
}

.ppid-berkala-legal h3 {
    margin: 0 0 5px;
    color: #0755a1;
    font-size: 16px;
}

.ppid-berkala-legal p {
    margin: 0;
    color: #375b7d;
    font-size: 13px;
    line-height: 1.65;
}


/* ----------------------------------------------------------
   DOKUMEN TERBARU
   ---------------------------------------------------------- */

.ppid-latest-documents {
    margin-top: 65px;
}

.ppid-latest-heading {
    margin-bottom: 24px;
}

.ppid-document-list {
    overflow: hidden;
    border: 1px solid #dce6f1;
    border-radius: 15px;
    background: #ffffff;
}

.ppid-document-item {
    display: grid;
    grid-template-columns: 54px 1fr auto;
    align-items: center;
    gap: 15px;

    min-height: 82px;
    padding: 14px 20px;

    color: #10213d;
    border-bottom: 1px solid #e6edf5;

    transition: background .2s ease;
}

.ppid-document-item:last-child {
    border-bottom: 0;
}

.ppid-document-item:hover {
    background: #f8fbfe;
}

.ppid-document-type {
    display: grid;
    place-items: center;

    width: 42px;
    height: 42px;

    border-radius: 9px;
    background: #fff0f0;

    color: #d62d2d;
    font-size: 10px;
    font-weight: 900;
}

.ppid-document-info {
    min-width: 0;
}

.ppid-document-info strong {
    display: block;
    margin-bottom: 5px;

    color: #10213d;
    font-size: 14px;
}

.ppid-document-info small {
    color: #77879a;
    font-size: 12px;
}

.ppid-document-action {
    color: #0b63b6;
    font-size: 13px;
    font-weight: 800;
}


/* ----------------------------------------------------------
   RESPONSIVE TABLET
   ---------------------------------------------------------- */

@media (max-width: 1000px) {

    .ppid-berkala-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

}


/* ----------------------------------------------------------
   RESPONSIVE MOBILE
   ---------------------------------------------------------- */

@media (max-width: 700px) {

    .ppid-berkala-hero-inner {
        padding: 30px 18px 38px;
    }

    .ppid-berkala-breadcrumb {
        margin-bottom: 24px;
    }

    .ppid-berkala-hero h1 {
        font-size: 36px;
    }

    .ppid-berkala-container {
        padding: 38px 18px 55px;
    }

    .ppid-berkala-grid {
        grid-template-columns: 1fr;
    }

    .ppid-berkala-card {
        min-height: 210px;
    }

    .ppid-service-grid {
        grid-template-columns: 1fr;
    }

    .ppid-service-item,
    .ppid-service-item:nth-child(odd),
    .ppid-service-item:nth-last-child(-n+2) {
        border-right: 0;
        border-bottom: 1px solid #e5edf5;
    }

    .ppid-service-item:last-child {
        border-bottom: 0;
    }

    .ppid-berkala-legal {
        grid-template-columns: 1fr;
    }

    .ppid-document-item {
        grid-template-columns: 44px 1fr;
    }

    .ppid-document-action {
        grid-column: 2;
    }

}

body:has(.ppid-berkala-page) .entry-title {
    display: none !important;
}

body:has(.ppid-berkala-page) .page-title {
    display: none !important;
}

body:has(.ppid-berkala-page) .entry-header {
    display: none !important;
}

body.page-id-18 article.entry > h1 {
    display: none !important;
}



/* =========================================================
   CARD INFORMASI BERKALA - HOVER MENU
   ========================================================= */

.ppid-berkala-card {
    position: relative;
    min-height: 245px;
    overflow: hidden;
    padding: 0;
}

.ppid-card-main {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 245px;
    padding: 22px;

    transition:
        opacity .22s ease,
        transform .22s ease;
}

.ppid-card-main .ppid-card-link {
    margin-top: auto;
}


/* PANEL HOVER */

.ppid-card-hover {
    position: absolute;
    inset: 0;
    z-index: 10;

    display: flex;
    flex-direction: column;

    padding: 22px;

    background: #073b75;

    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);

    transition:
        opacity .22s ease,
        visibility .22s ease,
        transform .22s ease;
}


/* saat hover */

.ppid-berkala-card:hover .ppid-card-main {
    opacity: 0;
    transform: translateY(-8px);
}

.ppid-berkala-card:hover .ppid-card-hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* TITLE */

.ppid-hover-title {
    padding-bottom: 14px;
    margin-bottom: 5px;

    border-bottom: 1px solid rgba(255,255,255,.18);
}

.ppid-hover-title small {
    display: block;

    margin-bottom: 5px;

    color: #ffb51b;

    font-size: 11px;
    font-weight: 900;
}

.ppid-hover-title strong {
    display: block;

    color: #ffffff;

    font-size: 17px;
    line-height: 1.3;
}


/* LINKS */

.ppid-hover-links {
    display: flex;
    flex-direction: column;
}

.ppid-hover-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    padding: 9px 0;

    border-bottom: 1px solid rgba(255,255,255,.12);

    color: rgba(255,255,255,.88) !important;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none !important;

    transition:
        color .18s ease,
        padding-left .18s ease;
}

.ppid-hover-links a:last-child {
    border-bottom: 0;
}

.ppid-hover-links a span {
    color: #ffb51b;
    font-size: 15px;
}

.ppid-hover-links a:hover {
    padding-left: 4px;
    color: #ffffff !important;
}


/* keyboard accessibility */

.ppid-berkala-card:focus-within .ppid-card-main {
    opacity: 0;
    transform: translateY(-8px);
}

.ppid-berkala-card:focus-within .ppid-card-hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* MOBILE / TOUCH */

@media (max-width: 700px) {

    .ppid-berkala-card {
        min-height: 225px;
    }

    .ppid-card-main {
        min-height: 225px;
    }

    .ppid-card-hover {
        padding: 20px;
    }

}






/* =========================================================
   GLOBAL BREADCRUMB
========================================================= */

.ppid-global-breadcrumb {
    padding-top: 20px;
    padding-bottom: 14px;
}

.ppid-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
}

.ppid-breadcrumb a {
    color: #60738f;
    text-decoration: none;
    font-weight: 600;
    transition: color .2s ease;
}

.ppid-breadcrumb a:hover {
    color: #0b5fb3;
}

.ppid-breadcrumb-separator {
    color: #a7b4c5;
}

.ppid-breadcrumb-current {
    color: #0b3f78;
    font-weight: 700;
}



/* =========================================================
   INFORMASI SERTA MERTA
========================================================= */

.ppid-serta-merta-dynamic {
    width: 100%;
}


/* STATUS KOSONG
--------------------------------------------------------- */

.ppid-serta-merta-empty {
    max-width: 850px;
    margin: 15px auto 0;
    padding: 55px 40px;
    text-align: center;

    background: #f7fbff;
    border: 1px solid #dce9f5;
    border-radius: 18px;
}

.ppid-serta-empty-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    margin: 0 auto 18px;

    border-radius: 50%;

    background: #e6f5ed;
    color: #16834b;

    font-size: 26px;
    font-weight: 900;
}

.ppid-serta-empty-label {
    display: block;

    margin-bottom: 8px;

    color: #c98500;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.3px;
}

.ppid-serta-merta-empty h3 {
    margin: 0 0 10px;

    color: #073b75;

    font-size: 24px;
    line-height: 1.3;
}

.ppid-serta-merta-empty p {
    max-width: 600px;

    margin: 0 auto;

    color: #65758b;

    font-size: 14px;
    line-height: 1.8;
}


/* STATUS JIKA ADA INFORMASI
--------------------------------------------------------- */

.ppid-serta-merta-status {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-bottom: 28px;
    padding: 22px 25px;

    background: #fff9ed;
    border: 1px solid #f0d99e;
    border-radius: 14px;
}

.ppid-serta-status-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    background: #ffb51b;
    color: #073b75;

    font-size: 24px;
    font-weight: 900;
}

.ppid-serta-merta-status span {
    display: block;

    margin-bottom: 3px;

    color: #a56a00;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.2px;
}

.ppid-serta-merta-status h3 {
    margin: 0 0 3px;

    color: #073b75;

    font-size: 19px;
}

.ppid-serta-merta-status p {
    margin: 0;

    color: #68778a;

    font-size: 13px;
}


/* DAFTAR INFORMASI
--------------------------------------------------------- */

.ppid-serta-merta-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.ppid-serta-merta-item {
    overflow: hidden;

    background: #ffffff;
    border: 1px solid #e1e8f0;
    border-radius: 15px;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.ppid-serta-merta-item:hover {
    transform: translateY(-3px);

    border-color: #c8d9ea;

    box-shadow:
        0 12px 30px rgba(7, 59, 117, .08);
}


/* FEATURED IMAGE */

.ppid-serta-thumb {
    display: block;

    height: 210px;

    overflow: hidden;
}

.ppid-serta-thumb img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .3s ease;
}

.ppid-serta-merta-item:hover
.ppid-serta-thumb img {
    transform: scale(1.03);
}


/* CONTENT */

.ppid-serta-item-body {
    padding: 22px;
}

.ppid-serta-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    margin-bottom: 12px;
}

.ppid-serta-meta span {
    color: #c98500;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: .8px;
}

.ppid-serta-meta time {
    color: #8794a6;

    font-size: 11px;
    font-weight: 600;
}

.ppid-serta-item-body h3 {
    margin: 0 0 10px;

    font-size: 19px;
    line-height: 1.4;
}

.ppid-serta-item-body h3 a {
    color: #073b75;

    text-decoration: none;
}

.ppid-serta-item-body h3 a:hover {
    color: #0b63b6;
}

.ppid-serta-item-body p {
    margin: 0 0 18px;

    color: #66758a;

    font-size: 13px;
    line-height: 1.7;
}

.ppid-serta-read {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: #0756a0 !important;

    font-size: 12px;
    font-weight: 800;

    text-decoration: none !important;
}

.ppid-serta-read span {
    color: #e89c00;

    transition: transform .2s ease;
}

.ppid-serta-read:hover span {
    transform: translateX(4px);
}


/* MOBILE
--------------------------------------------------------- */

@media (max-width: 760px) {

    .ppid-serta-merta-items {
        grid-template-columns: 1fr;
    }

    .ppid-serta-merta-empty {
        padding: 40px 22px;
    }

    .ppid-serta-merta-empty h3 {
        font-size: 21px;
    }

    .ppid-serta-merta-status {
        align-items: flex-start;
    }

    .ppid-serta-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .ppid-serta-thumb {
        height: 190px;
    }
}



/* =========================================================
   RAPATKAN INFORMASI SERTA MERTA
========================================================= */

/* Kurangi jarak setelah heading */
.ppid-berkala-heading {
    margin-bottom: 28px;
}

/* Hilangkan jarak berlebih sebelum shortcode */
.ppid-serta-merta-dynamic {
    margin-top: 0;
}

/* Kotak status jangan terlalu tinggi */
.ppid-serta-merta-empty {
    max-width: 850px;
    margin: 0 auto;
    padding: 38px 35px;
}

/* Ikon sedikit lebih compact */
.ppid-serta-empty-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 14px;
}

/* Judul status */
.ppid-serta-merta-empty h3 {
    margin-bottom: 8px;
}



/* =========================================================
   FIX JARAK INFORMASI SERTA MERTA
========================================================= */

body.page-slug-informasi-serta-merta .ppid-berkala-heading {
    margin-bottom: 20px !important;
    padding-bottom: 0 !important;
}

/* WordPress block setelah HTML */
body.page-slug-informasi-serta-merta .entry > * {
    margin-bottom: 0;
}

/* Shortcode */
body.page-slug-informasi-serta-merta .ppid-serta-merta-dynamic {
    margin-top: 20px !important;
    padding-top: 0 !important;
}

/* Kotak kosong */
body.page-slug-informasi-serta-merta .ppid-serta-merta-empty {
    margin-top: 0 !important;
}

/* =========================================================
   DAFTAR INFORMASI PUBLIK
========================================================= */

.ppid-dip-info {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin: 0 0 25px;
    padding: 20px 22px;
    background: #f5f9fd;
    border: 1px solid #dbe7f2;
    border-radius: 14px;
}

.ppid-dip-info-number {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #073b75;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
}

.ppid-dip-info strong {
    display: block;
    margin-bottom: 5px;
    color: #073b75;
    font-size: 14px;
}

.ppid-dip-info p {
    margin: 0;
    color: #66758a;
    font-size: 13px;
    line-height: 1.7;
}


/* TABLE */

.ppid-dip-table-wrap {
    width: 100%;
    overflow-x: auto;
    border: 1px solid #dfe7ef;
    border-radius: 14px;
    background: #fff;
}

.ppid-dip-table {
    width: 100%;
    min-width: 1150px;
    border-collapse: collapse;
    font-size: 12px;
}

.ppid-dip-table th {
    padding: 15px 14px;
    background: #073b75;
    color: #fff;
    text-align: left;
    vertical-align: top;
    font-size: 11px;
    line-height: 1.5;
    font-weight: 800;
}

.ppid-dip-table td {
    padding: 14px;
    color: #536378;
    line-height: 1.6;
    vertical-align: top;
    border-bottom: 1px solid #e8edf3;
}

.ppid-dip-table tbody tr:last-child td {
    border-bottom: 0;
}

.ppid-dip-table tbody tr:hover {
    background: #f8fbfe;
}

.ppid-dip-table td:first-child {
    width: 45px;
    color: #073b75;
    font-weight: 800;
    text-align: center;
}


/* NOTE */

.ppid-dip-note {
    margin-top: 20px;
    padding: 16px 18px;
    border-left: 4px solid #e5a400;
    background: #fffaf0;
    color: #66758a;
    font-size: 12px;
    line-height: 1.7;
}

.ppid-dip-note strong {
    color: #073b75;
}


/* MOBILE */

@media (max-width: 760px) {

    .ppid-dip-info {
        padding: 18px;
    }

    .ppid-dip-table {
        font-size: 11px;
    }

}



/* =========================================================
   KELOMPOK DIP
========================================================= */

.ppid-dip-section-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 38px 0 15px;
}

.ppid-dip-section-title > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;

    border-radius: 10px;

    background: #073b75;
    color: #ffffff;

    font-size: 14px;
    font-weight: 900;
}

.ppid-dip-section-title small {
    display: block;

    margin-bottom: 2px;

    color: #c98500;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.2px;
}

.ppid-dip-section-title h3 {
    margin: 0;

    color: #073b75;

    font-size: 20px;
    line-height: 1.3;
}

.ppid-dip-empty {
    padding: 28px !important;

    color: #77869a !important;
    text-align: center;

    background: #f8fafc;
}



/* =========================================================
   PAGE PERATURAN
========================================================= */

.ppid-regulasi-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ppid-regulasi-item {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;

    padding: 20px 22px;

    background: #ffffff;
    border: 1px solid #dfe7ef;
    border-radius: 14px;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}

.ppid-regulasi-item:hover {
    border-color: #b8cce1;
    box-shadow: 0 8px 24px rgba(7, 59, 117, .07);
    transform: translateY(-1px);
}

.ppid-regulasi-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border-radius: 50%;

    background: #eef6ff;
    color: #0756a0;

    font-size: 12px;
    font-weight: 900;
}

.ppid-regulasi-content {
    min-width: 0;
}

.ppid-regulasi-type {
    display: block;

    margin-bottom: 5px;

    color: #c98500;

    font-size: 9px;
    line-height: 1.4;
    font-weight: 900;
    letter-spacing: 1px;
}

.ppid-regulasi-content h3 {
    margin: 0 0 5px;

    color: #0a274b;

    font-size: 16px;
    line-height: 1.4;
    font-weight: 800;
}

.ppid-regulasi-content p {
    margin: 0;

    max-width: 760px;

    color: #68788d;

    font-size: 12px;
    line-height: 1.65;
}

.ppid-regulasi-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    white-space: nowrap;

    padding: 10px 14px;

    border-radius: 8px;

    background: #073b75;
    color: #ffffff !important;

    font-size: 10px;
    font-weight: 800;
    text-decoration: none !important;

    transition: background .2s ease;
}

.ppid-regulasi-button:hover {
    background: #0b63b6;
}

.ppid-regulasi-highlight {
    border-left: 4px solid #e5a400;
}

.ppid-regulasi-status {
    display: inline-block;

    margin-top: 8px;
    padding: 4px 8px;

    border-radius: 20px;

    background: #eaf7ef;
    color: #16834b;

    font-size: 9px;
    font-weight: 900;
}

.ppid-regulasi-note {
    margin-top: 24px;
    padding: 18px 20px;

    background: #f6f9fc;
    border: 1px solid #e0e8f0;
    border-radius: 12px;
}

.ppid-regulasi-note strong {
    display: block;
    margin-bottom: 4px;

    color: #073b75;
    font-size: 12px;
}

.ppid-regulasi-note p {
    margin: 0;

    color: #68788d;
    font-size: 11px;
    line-height: 1.7;
}

@media (max-width: 760px) {

    .ppid-regulasi-item {
        grid-template-columns: 44px 1fr;
        gap: 12px;
        padding: 18px;
    }

    .ppid-regulasi-button {
        grid-column: 1 / -1;
        width: 100%;
    }

}

/* =========================================================
   PAGE KEPUTUSAN - EMPTY STATE
========================================================= */

.ppid-keputusan-empty {
    display: flex;
    align-items: center;
    gap: 18px;

    padding: 26px 28px;

    background: #f7faff;
    border: 1px solid #dfe8f2;
    border-radius: 14px;
}

.ppid-keputusan-empty-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 48px;
    width: 48px;
    height: 48px;

    border-radius: 50%;

    background: #e9f3fd;
    color: #0756a0;

    font-size: 18px;
    font-weight: 900;
}

.ppid-keputusan-empty-content h3 {
    margin: 0 0 6px;

    color: #073b75;

    font-size: 16px;
    font-weight: 800;
}

.ppid-keputusan-empty-content p {
    margin: 0;

    max-width: 720px;

    color: #68788d;

    font-size: 12px;
    line-height: 1.7;
}

@media (max-width: 600px) {

    .ppid-keputusan-empty {
        align-items: flex-start;
        padding: 20px;
    }

}

/* =========================================================
   INFORMASI DIKECUALIKAN
========================================================= */

.ppid-exception-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ppid-exception-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;

    padding: 17px 20px;

    background: #ffffff;
    border: 1px solid #e1e8f0;
    border-radius: 10px;

    transition:
        border-color .2s ease,
        background .2s ease;
}

.ppid-exception-item:hover {
    background: #f8fbfe;
    border-color: #bfd0e2;
}

.ppid-exception-item > span {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 32px;
    width: 32px;
    height: 32px;

    border-radius: 50%;

    background: #eef5fc;
    color: #0756a0;

    font-size: 10px;
    font-weight: 900;
}

.ppid-exception-item p {
    margin: 5px 0 0;

    color: #536378;

    font-size: 13px;
    line-height: 1.65;
}


/* CATATAN */

.ppid-exception-note {
    margin-top: 24px;

    padding: 17px 20px;

    background: #fffaf0;
    border-left: 4px solid #e5a400;
    border-radius: 8px;
}

.ppid-exception-note strong {
    display: block;

    margin-bottom: 4px;

    color: #073b75;

    font-size: 12px;
    font-weight: 800;
}

.ppid-exception-note p {
    margin: 0;

    color: #68788d;

    font-size: 11px;
    line-height: 1.7;
}


/* MOBILE */

@media (max-width: 600px) {

    .ppid-exception-item {
        gap: 12px;
        padding: 15px;
    }

}

.stats.stats-three {
    grid-template-columns: repeat(3, 1fr);
}



/* =========================================================
   HOMEPAGE - STATISTIK 3 KOLOM
========================================================= */

.stats.stats-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

/* Masing-masing statistik */
.stats.stats-three > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    min-height: 100px;
    padding: 20px;
}

/* Angka */
.stats.stats-three > div > strong {
    display: block;

    margin: 0 0 5px;

    font-size: 28px;
    line-height: 1;
    font-weight: 800;

    color: #073b75;
}

/* Keterangan */
.stats.stats-three > div > span {
    display: block;

    margin: 0;

    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;

    color: #60738f;

    text-align: center;
}


/* MOBILE */
@media (max-width: 700px) {

    .stats.stats-three {
        grid-template-columns: 1fr;
    }

    .stats.stats-three > div {
        min-height: 85px;
    }

}

/* =========================================================
   PORTAL FEED - HOMEPAGE
========================================================= */


/* Berita */

.portal-news-row .news-thumb {
    overflow: hidden;
}

.portal-news-row .news-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.portal-news-content {
    min-width: 0;
}

.portal-news-content strong {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.portal-news-content small {
    display: block;
    margin-top: 5px;
}


/* Pengumuman */

.portal-announcement-list {
    display: flex;
    flex-direction: column;
}

.portal-announcement {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px 0;

    border-bottom: 1px solid #e7edf4;

    color: inherit;
    text-decoration: none;

    transition:
        color .2s ease,
        padding-left .2s ease;
}

.portal-announcement:first-child {
    padding-top: 4px;
}

.portal-announcement:last-child {
    border-bottom: 0;
}

.portal-announcement:hover {
    padding-left: 4px;
}


/* Icon */

.portal-announcement-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 34px;

    width: 34px;
    height: 34px;

    border-radius: 50%;

    background: #eef5fc;

    color: #0756a0;

    font-size: 14px;
    font-weight: 900;
}


/* Isi */

.portal-announcement-content {
    flex: 1;
    min-width: 0;
}

.portal-announcement-content strong {
    display: -webkit-box;

    overflow: hidden;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;

    color: #173a63;

    font-size: 13px;
    line-height: 1.45;
}

.portal-announcement-content small {
    display: block;

    margin-top: 5px;

    color: #8796a9;

    font-size: 11px;
}


/* Arrow */

.portal-announcement > b {
    color: #0756a0;
    font-size: 15px;
}


/* Mobile */

@media (max-width: 700px) {

    .portal-announcement {
        padding: 13px 0;
    }

    .portal-announcement-icon {
        flex-basis: 30px;

        width: 30px;
        height: 30px;
    }
}


/* =========================================================
   PROFIL PPID
========================================================= */

.ppid-profile-page {
    width: 100%;
}


/* =========================================================
   HERO PROFIL
========================================================= */

.ppid-profile-hero {
    position: relative;
    overflow: hidden;

    margin-bottom: 48px;
    padding: 42px 44px;

    background:
        linear-gradient(
            120deg,
            #073b75 0%,
            #07539a 65%,
            #0b63b6 100%
        );

    border-radius: 18px;

    color: #ffffff;
}

.ppid-profile-hero::before {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    right: -90px;
    top: -130px;

    border-radius: 50%;

    background: rgba(255,255,255,.06);
}

.ppid-profile-hero::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: 100px;
    bottom: -135px;

    border-radius: 50%;

    background: rgba(255,181,27,.12);
}

.ppid-profile-hero > * {
    position: relative;
    z-index: 2;
}

.ppid-profile-eyebrow {
    display: block;

    margin-bottom: 10px;

    color: #ffbf2f;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.7px;
}

.ppid-profile-hero h1 {
    margin: 0 0 14px;

    color: #ffffff;

    font-size: 38px;
    line-height: 1.15;
    font-weight: 800;
}

.ppid-profile-hero p {
    max-width: 760px;

    margin: 0;

    color: rgba(255,255,255,.88);

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   SECTION
========================================================= */

.ppid-profile-section {
    margin-bottom: 55px;
}

.ppid-profile-heading {
    margin-bottom: 24px;
}

.ppid-profile-heading > span {
    display: block;

    margin-bottom: 7px;

    color: #0b63b6;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.ppid-profile-heading h2 {
    position: relative;

    margin: 0 0 12px;
    padding-bottom: 13px;

    color: #073b75;

    font-size: 27px;
    line-height: 1.25;
}

.ppid-profile-heading h2::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 42px;
    height: 4px;

    border-radius: 10px;

    background: #ffb51b;
}

.ppid-profile-heading p {
    max-width: 760px;

    margin: 0;

    color: #607087;

    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   TENTANG PPID
========================================================= */

.ppid-profile-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(280px, .8fr);

    gap: 28px;
    align-items: stretch;
}

.ppid-profile-intro-main {
    padding: 26px 28px;

    background: #ffffff;

    border: 1px solid #dce6f1;
    border-radius: 15px;
}

.ppid-profile-intro-main p {
    margin: 0 0 17px;

    color: #536378;

    font-size: 13px;
    line-height: 1.8;
}

.ppid-profile-intro-main p:last-child {
    margin-bottom: 0;
}


/* KOMITMEN */

.ppid-profile-highlight {
    position: relative;

    overflow: hidden;

    padding: 28px;

    background: #073b75;

    border-radius: 15px;

    color: #ffffff;
}

.ppid-profile-highlight::after {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -75px;
    bottom: -85px;

    border-radius: 50%;

    background: rgba(255,255,255,.05);
}

.ppid-profile-highlight-label {
    display: block;

    margin-bottom: 13px;

    color: #ffbf2f;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.4px;
}

.ppid-profile-highlight strong {
    position: relative;
    z-index: 2;

    display: block;

    margin-bottom: 12px;

    color: #ffffff;

    font-size: 20px;
    line-height: 1.35;
}

.ppid-profile-highlight p {
    position: relative;
    z-index: 2;

    margin: 0;

    color: rgba(255,255,255,.82);

    font-size: 12px;
    line-height: 1.75;
}


/* =========================================================
   PRINSIP LAYANAN
========================================================= */

.ppid-profile-principles {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 14px;
}

.ppid-profile-principle {
    min-height: 180px;

    padding: 22px;

    background: #ffffff;

    border: 1px solid #dce6f1;
    border-radius: 14px;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.ppid-profile-principle:hover {
    transform: translateY(-3px);

    border-color: #bfd4e8;

    box-shadow:
        0 12px 28px rgba(7,59,117,.07);
}

.ppid-profile-principle > span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    margin-bottom: 18px;

    border-radius: 50%;

    background: #eaf4ff;

    color: #0b63b6;

    font-size: 11px;
    font-weight: 900;
}

.ppid-profile-principle strong {
    display: block;

    margin-bottom: 7px;

    color: #10213d;

    font-size: 15px;
}

.ppid-profile-principle p {
    margin: 0;

    color: #607087;

    font-size: 12px;
    line-height: 1.65;
}


/* =========================================================
   NAVIGASI PROFIL
========================================================= */

.ppid-profile-navigation {
    margin-bottom: 10px;
}

.ppid-profile-links {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #dce6f1;
    border-radius: 15px;
}

.ppid-profile-links > a {
    display: grid;
    grid-template-columns: 44px minmax(0,1fr) auto;

    align-items: center;

    gap: 16px;

    min-height: 92px;

    padding: 17px 22px;

    border-bottom: 1px solid #e6edf5;

    transition:
        background .2s ease,
        padding-left .2s ease;
}

.ppid-profile-links > a:last-child {
    border-bottom: 0;
}

.ppid-profile-links > a:hover {
    padding-left: 26px;

    background: #f8fbfe;
}

.ppid-profile-links > a > span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border-radius: 50%;

    background: #eaf4ff;

    color: #0756a0;

    font-size: 10px;
    font-weight: 900;
}

.ppid-profile-links strong {
    display: block;

    margin-bottom: 4px;

    color: #073b75;

    font-size: 14px;
}

.ppid-profile-links small {
    display: block;

    color: #68788d;

    font-size: 11px;
    line-height: 1.55;
}

.ppid-profile-links b {
    color: #0b63b6;

    font-size: 19px;
}


/* =========================================================
   PROFIL - TABLET
========================================================= */

@media (max-width: 900px) {

    .ppid-profile-intro {
        grid-template-columns: 1fr;
    }

    .ppid-profile-principles {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

}


/* =========================================================
   PROFIL - MOBILE
========================================================= */

@media (max-width: 600px) {

    .ppid-profile-hero {
        margin-bottom: 38px;
        padding: 32px 24px;
        border-radius: 14px;
    }

    .ppid-profile-hero h1 {
        font-size: 31px;
    }

    .ppid-profile-section {
        margin-bottom: 42px;
    }

    .ppid-profile-heading h2 {
        font-size: 23px;
    }

    .ppid-profile-intro-main,
    .ppid-profile-highlight {
        padding: 22px;
    }

    .ppid-profile-principles {
        grid-template-columns: 1fr;
    }

    .ppid-profile-principle {
        min-height: auto;
    }

    .ppid-profile-links > a {
        grid-template-columns: 40px minmax(0,1fr) auto;

        gap: 12px;

        padding: 16px;
    }

}
