:root {
    --p26-primary: #007f73;
    --p26-primary-dark: #075c56;
    --p26-text: #182230;
    --p26-muted: #667085;
    --p26-bg: #ffffff;
    --p26-soft: #f5f8f7;
    --p26-border: #e5e7eb;
    --p26-container: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--p26-text);
    background: var(--p26-bg);
    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

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

.p26-container,
.p26-header-inner,
.p26-footer-inner {
    width: min(
        calc(100% - 32px),
        var(--p26-container)
    );
    margin-inline: auto;
}

.p26-skip-link {
    position: absolute;
    left: -9999px;
}

.p26-skip-link:focus {
    z-index: 99999;
    top: 10px;
    left: 10px;
    padding: 10px 16px;
    color: #fff;
    background: #111;
}

.p26-header {
    position: sticky;
    z-index: 999;
    top: 0;
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid var(--p26-border);
}

.p26-header-inner {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.p26-brand-link {
    color: var(--p26-text);
    text-decoration: none;
}

.custom-logo {
    width: auto;
    max-height: 56px;
}

.p26-navigation ul {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.p26-navigation a {
    color: var(--p26-text);
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
}

.p26-navigation a:hover {
    color: var(--p26-primary);
}

.p26-menu-toggle {
    display: none;
}

.p26-page,
.p26-article,
.p26-archive,
.p26-search {
    padding-block: 48px 80px;
}

.p26-page-header h1,
.p26-article-header h1,
.p26-archive-header h1 {
    font-size: clamp(
        32px,
        4vw,
        52px
    );
    line-height: 1.12;
}

.p26-content {
    font-size: 17px;
    line-height: 1.75;
}

.p26-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.p26-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--p26-border);
    border-radius: 16px;
}

.p26-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.p26-card-image img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.p26-card-body {
    padding: 20px;
}

.p26-card-date,
.p26-article-date {
    color: var(--p26-muted);
    font-size: 14px;
}

.p26-card h2 {
    margin: 8px 0 0;
    font-size: 20px;
    line-height: 1.4;
}

.p26-footer {
    padding-block: 48px;
    color: #fff;
    background: #073b39;
}

.p26-footer a {
    color: #fff;
}

.p26-404 {
    padding-block: 100px;
    text-align: center;
}

.p26-404-code {
    color: var(--p26-primary);
    font-size: 90px;
    font-weight: 800;
}

.p26-button {
    display: inline-flex;
    padding: 12px 20px;
    color: #fff;
    background: var(--p26-primary);
    border-radius: 10px;
    text-decoration: none;
}

@media (max-width: 900px) {

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

    .p26-menu-toggle {
        display: inline-flex;
        align-items: center;
        gap: 7px;
    }

    .p26-navigation {
        display: none;
    }

    .p26-navigation.is-open {
        display: block;
        position: absolute;
        top: 76px;
        right: 16px;
        left: 16px;
        padding: 20px;
        background: #fff;
        border: 1px solid var(--p26-border);
        border-radius: 14px;
    }

    .p26-navigation.is-open ul {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 640px) {

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

}


/* ========================================
   P26 FOOTER PREMIUM
======================================== */

.p26-footer {
    position: relative;

    padding:
        0;

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

    background:
        linear-gradient(
            135deg,
            #073f3a 0%,
            #075a52 55%,
            #06463f 100%
        );

    border-top: 0;
}

.p26-footer::before {
    display: block;

    width: 100%;
    height: 4px;

    content: "";

    background:
        linear-gradient(
            90deg,
            #8bc53f,
            #00a88f,
            #67c4b4
        );
}

.p26-footer-inner {
    display: grid !important;

    width:
        min(
            1180px,
            calc(
                100% - 40px
            )
        );

    margin-inline: auto;

    padding:
        42px
        0
        22px;

    grid-template-columns:
        minmax(260px, 1fr)
        minmax(280px, auto);

    gap:
        34px
        60px;

    align-items: start;
}

.p26-footer-brand strong {
    display: block;

    color: #ffffff;

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

    line-height: 1.25;
}

.p26-footer-brand p {
    margin:
        8px
        0
        0;

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

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

.p26-footer-inner > nav {
    justify-self: end;
}

.p26-footer-inner > nav ul {
    display: flex;

    margin: 0;
    padding: 0;

    gap:
        10px
        20px;

    flex-wrap: wrap;

    justify-content: flex-end;

    list-style: none;
}

.p26-footer-inner > nav a {
    color:
        rgba(
            255,
            255,
            255,
            .82
        );

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

    text-decoration: none;
}

.p26-footer-inner > nav a:hover {
    color: #ffffff;
}

.p26-copyright {
    grid-column:
        1
        /
        -1;

    margin:
        4px
        0
        0;

    padding-top: 20px;

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

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            .11
        );

    font-size: 12px;
}


@media (max-width: 760px) {

    .p26-footer-inner {
        grid-template-columns: 1fr;

        gap: 24px;

        padding-top: 34px;
    }

    .p26-footer-inner > nav {
        justify-self: start;
    }

    .p26-footer-inner > nav ul {
        justify-content: flex-start;
    }

}


/* ========================================
   P26 FOOTER — MALUKU UTARA
======================================== */

.p26-footer {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.p26-footer::after {
    position: absolute;
    z-index: 0;

    right: -35px;
    bottom: -24px;

    width: 360px;
    height: 210px;

    content: "";
    pointer-events: none;

    opacity: .09;

    background:
        url("../images/malut-spices.svg")
        right bottom / contain
        no-repeat;

    filter: brightness(0) invert(1);
}

.p26-footer-inner {
    position: relative;
    z-index: 1;
}

.p26-footer-location {
    position: relative;

    display: inline-flex;

    margin-top: 10px !important;

    padding:
        5px
        10px;

    align-items: center;

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

    background:
        rgba(
            255,
            255,
            255,
            .08
        );

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .10
        );

    border-radius: 999px;
}

.p26-footer-location::before {
    display: inline-block;

    width: 6px;
    height: 6px;

    margin-right: 7px;

    content: "";

    background: #8cc63f;

    border-radius: 50%;
}

