:root {
    --gkii-blue: #071f78;
    --gkii-blue-2: #0c35a6;
    --gkii-blue-soft: #eef3ff;
    --gkii-gold: #d89936;
    --gkii-gold-2: #b97719;
    --gkii-text: #17213a;
    --gkii-muted: #63708a;
    --gkii-line: #e8edf7;
    --gkii-white: #fff;
    --gkii-shadow: 0 18px 55px rgba(5, 31, 111, .12);
    --gkii-radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(7, 31, 120, .06), transparent 28rem),
        linear-gradient(180deg, #fbfcff 0%, #fff 42%, #f7f9ff 100%);
    color: var(--gkii-text);
    line-height: 1.6;
}

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

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

svg {
    width: 1em;
    height: 1em;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

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

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
}

.site-shell {
    overflow-x: clip;
}

.top-announcement {
    background: linear-gradient(90deg, #061766, var(--gkii-blue));
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.announcement-inner,
.announcement-left,
.announcement-right {
    display: flex;
    align-items: center;
}

.announcement-inner {
    justify-content: space-between;
    gap: 20px;
    min-height: 42px;
}

.announcement-left,
.announcement-right {
    gap: 9px;
}

.announcement-icon,
.heart-mini {
    display: inline-flex;
    color: #fff;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(232, 237, 247, .9);
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 26px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.brand-logo,
.brand-logo-custom img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.02;
    color: var(--gkii-blue);
    font-size: 16px;
    letter-spacing: -.02em;
}

.primary-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.primary-nav .menu,
.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-nav .menu {
    display: flex;
    align-items: center;
    gap: 26px;
}

.primary-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 78px;
    color: #10204a;
    font-size: 14px;
    font-weight: 700;
    position: relative;
}

.primary-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 17px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--gkii-gold);
    transition: width .2s ease;
}

.primary-nav a:hover::after,
.primary-nav .current-menu-item > a::after {
    width: 100%;
}

.header-giving,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 12px;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.header-giving {
    background: linear-gradient(135deg, var(--gkii-gold), var(--gkii-gold-2));
    color: #fff;
    padding: 12px 18px;
    box-shadow: 0 10px 24px rgba(216, 153, 54, .25);
}

.header-giving:hover,
.btn:hover {
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    background: transparent;
    color: var(--gkii-blue);
    font-size: 28px;
}

.hero-section {
    padding: 48px 0 28px;
    position: relative;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 35%, rgba(216, 153, 54, .12), transparent 16rem),
        radial-gradient(circle at 80% 0%, rgba(7, 31, 120, .08), transparent 22rem);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 54px;
}

.hero-eyebrow {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: clamp(22px, 3vw, 34px);
    line-height: 1.1;
    margin-bottom: 6px;
}

.hero-copy h1 {
    margin: 0;
    color: var(--gkii-blue);
    font-size: clamp(42px, 5.2vw, 76px);
    line-height: .96;
    letter-spacing: -.06em;
    font-weight: 900;
}

.hero-copy p {
    max-width: 540px;
    color: #293756;
    margin: 22px 0 28px;
    font-size: 17px;
}

.hero-copy p::after {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    background: var(--gkii-gold);
    border-radius: 99px;
    margin-top: 18px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    min-height: 52px;
    padding: 0 22px;
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gkii-blue), var(--gkii-blue-2));
    color: #fff;
    box-shadow: 0 16px 32px rgba(7, 31, 120, .22);
}

.btn-secondary {
    background: #fff;
    color: var(--gkii-blue);
    border-color: #cdd8f7;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gkii-gold), var(--gkii-gold-2));
    color: #fff;
}

.hero-video-card {
    border-radius: 22px;
    overflow: hidden;
    background: #071028;
    box-shadow: var(--gkii-shadow);
    border: 1px solid rgba(255,255,255,.75);
    aspect-ratio: 16 / 9;
}

.hero-video-card iframe,
.video-placeholder {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.video-placeholder {
    background-size: cover;
    background-position: center;
    position: relative;
}

.video-placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.35));
}

.video-play {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255,255,255,.9);
    color: var(--gkii-blue);
    font-size: 34px;
}

.shortcut-section {
    padding: 16px 0 30px;
}

.shortcut-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.shortcut-card {
    background: rgba(255,255,255,.92);
    border: 1px solid var(--gkii-line);
    border-radius: 18px;
    min-height: 142px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 14px 36px rgba(12, 53, 166, .08);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.shortcut-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--gkii-shadow);
    border-color: rgba(216,153,54,.45);
}

.shortcut-icon {
    color: var(--gkii-blue);
    font-size: 32px;
    margin-bottom: 12px;
}

.shortcut-title {
    font-weight: 900;
    color: var(--gkii-blue);
    font-size: 15px;
}

.shortcut-desc {
    color: var(--gkii-muted);
    font-size: 12px;
    line-height: 1.4;
    margin-top: 3px;
}

.shortcut-arrow {
    color: var(--gkii-blue);
    margin-top: auto;
    font-size: 18px;
}

.content-overview {
    padding: 14px 0 24px;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr 1.05fr;
    gap: 22px;
    align-items: start;
}

.section-card {
    min-width: 0;
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}

.section-heading h2 {
    margin: 0;
    color: var(--gkii-blue);
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: -.02em;
}

.section-heading a {
    color: var(--gkii-blue);
    font-size: 13px;
    font-weight: 900;
}

.sermon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.sermon-card {
    min-width: 0;
}

.sermon-thumb {
    display: block;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 1 / .92;
    background: var(--gkii-blue-soft);
    box-shadow: 0 10px 24px rgba(7,31,120,.11);
}

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

.sermon-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(2,12,54,.46));
}

.sermon-play {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 2;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(7,31,120,.85);
}

.sermon-card h3 {
    font-size: 14px;
    line-height: 1.25;
    margin: 10px 0 2px;
    color: var(--gkii-blue);
}

.sermon-card p {
    margin: 0;
    color: var(--gkii-muted);
    font-size: 12px;
}

.event-list {
    background: #fff;
    border: 1px solid var(--gkii-line);
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(7,31,120,.08);
    overflow: hidden;
}

.event-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    padding: 16px;
    border-bottom: 1px solid var(--gkii-line);
}

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

.event-item time {
    display: grid;
    place-items: center;
    align-content: center;
    background: var(--gkii-blue-soft);
    border-radius: 14px;
    color: var(--gkii-blue);
    min-height: 58px;
    line-height: 1;
}

.event-item time strong {
    font-size: 24px;
    font-weight: 900;
}

.event-item time span {
    font-size: 11px;
    font-weight: 900;
}

.event-item h3 {
    margin: 0 0 4px;
    color: var(--gkii-blue);
    font-size: 15px;
}

.event-item p {
    margin: 0;
    color: var(--gkii-muted);
    font-size: 13px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 1.25 / 1;
    background: var(--gkii-blue-soft);
    box-shadow: 0 10px 24px rgba(7,31,120,.08);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.ministry-section {
    padding: 22px 0 28px;
}

.section-heading-wide {
    border-bottom: 1px solid var(--gkii-line);
    padding-bottom: 12px;
}

.ministry-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.ministry-card {
    background: #fff;
    border: 1px solid var(--gkii-line);
    border-radius: 16px;
    padding: 18px 14px;
    min-height: 134px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    box-shadow: 0 12px 28px rgba(7,31,120,.07);
}

.ministry-card span {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--gkii-blue-soft);
    color: var(--gkii-blue);
    font-size: 22px;
}

.ministry-card strong {
    color: var(--gkii-blue);
    line-height: 1.2;
    font-size: 14px;
}

.ministry-card small {
    color: var(--gkii-muted);
    font-size: 12px;
    line-height: 1.35;
}

.giving-section {
    padding: 10px 0 34px;
}

.giving-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.25fr .75fr .75fr;
    gap: 30px;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(7,31,120,.98), rgba(7,31,120,.9)),
        radial-gradient(circle at 85% 30%, rgba(216,153,54,.3), transparent 18rem);
    color: #fff;
    border-radius: 22px;
    min-height: 170px;
    padding: 28px 34px;
    box-shadow: 0 24px 54px rgba(7,31,120,.22);
}

.giving-card::after {
    content: "";
    position: absolute;
    inset: auto -10% -55% 70%;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    background: rgba(216,153,54,.2);
}

.giving-copy,
.giving-bank,
.giving-qris {
    position: relative;
    z-index: 1;
}

.giving-copy h2 {
    margin: 0 0 8px;
    font-size: 24px;
}

.giving-copy p {
    margin: 0 0 14px;
    color: rgba(255,255,255,.82);
}

.giving-bank {
    border-left: 1px solid rgba(255,255,255,.25);
    padding-left: 28px;
}

.giving-bank span,
.giving-qris span {
    color: #ffc772;
    font-weight: 900;
    display: block;
    margin-bottom: 4px;
}

.giving-bank strong,
.giving-bank b {
    display: block;
}

.giving-bank b {
    font-size: 25px;
    letter-spacing: .02em;
}

.giving-bank small,
.giving-qris small {
    color: rgba(255,255,255,.75);
}

.giving-qris {
    display: grid;
    grid-template-columns: 94px 1fr;
    column-gap: 14px;
    align-items: center;
}

.giving-qris span {
    grid-column: 1 / -1;
}

.giving-qris img {
    width: 94px;
    height: 94px;
    background: #fff;
    border-radius: 12px;
    padding: 8px;
}

.location-section {
    padding: 28px 0 54px;
}

.location-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 24px;
    align-items: center;
}

.section-kicker {
    color: var(--gkii-gold-2);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
}

.location-copy h2 {
    color: var(--gkii-blue);
    margin: 8px 0 10px;
    font-size: 34px;
    line-height: 1.05;
}

.location-copy p {
    color: var(--gkii-muted);
    max-width: 520px;
}

.map-card {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--gkii-line);
    box-shadow: var(--gkii-shadow);
}

.map-visual {
    min-height: 260px;
    background:
        linear-gradient(90deg, rgba(255,255,255,.72) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,.72) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, rgba(216,153,54,.23), transparent 7rem),
        var(--gkii-blue-soft);
    background-size: 42px 42px, 42px 42px, auto, auto;
    display: grid;
    place-items: center;
}

.map-visual span {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--gkii-blue);
    color: #fff;
    font-size: 34px;
    box-shadow: 0 20px 38px rgba(7,31,120,.28);
}

.site-footer {
    background: #061766;
    color: #fff;
    padding: 46px 0 120px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr .75fr .75fr 1fr;
    gap: 36px;
}

.brand-footer {
    color: #fff;
}

.brand-footer .brand-text,
.footer-brand .brand-text {
    color: #fff;
}

.footer-brand p,
.footer-contact,
.footer-menu a,
.footer-bottom p {
    color: rgba(255,255,255,.74);
}

.footer-brand p {
    max-width: 320px;
}

.footer-col h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 16px;
}

.footer-menu li,
.footer-contact li {
    margin-bottom: 8px;
}

.footer-contact {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-menu a:hover,
.footer-contact a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.14);
}

.mobile-bottom-nav {
    display: none;
}

.archive-main,
.page-main {
    padding: 56px 0;
}

.archive-header h1,
.entry-header h1 {
    color: var(--gkii-blue);
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.05;
    margin: 0 0 28px;
}

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

.post-card,
.page-content {
    background: #fff;
    border: 1px solid var(--gkii-line);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 16px 42px rgba(7,31,120,.08);
}

.post-thumb {
    aspect-ratio: 1.4 / 1;
    display: block;
    overflow: hidden;
    background: var(--gkii-blue-soft);
}

.post-thumb img,
.entry-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-card-body,
.page-content {
    padding: 28px;
}

.post-date {
    color: var(--gkii-gold-2);
    font-weight: 900;
    font-size: 13px;
}

.post-card h2 {
    margin: 8px 0 8px;
    color: var(--gkii-blue);
    line-height: 1.15;
}

.page-container {
    max-width: 920px;
}

.entry-featured {
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 28px;
    max-height: 480px;
}

.entry-content {
    color: #24314d;
}

.entry-content a {
    color: var(--gkii-blue);
    font-weight: 800;
}

.pagination-wrap {
    margin-top: 28px;
}

@media (max-width: 1120px) {
    .primary-nav .menu {
        gap: 16px;
    }

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

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

    .gallery {
        grid-column: 1 / -1;
    }
}

@media (max-width: 860px) {
    .container {
        width: min(100% - 28px, 720px);
    }

    .announcement-right {
        display: none;
    }

    .header-inner {
        min-height: 70px;
    }

    .brand-logo,
    .brand-logo-custom img {
        width: 46px;
        height: 46px;
    }

    .brand-text {
        font-size: 13px;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .header-giving {
        display: none;
    }

    .primary-nav {
        position: fixed;
        inset: 112px 14px auto 14px;
        display: none;
        background: #fff;
        border: 1px solid var(--gkii-line);
        border-radius: 18px;
        box-shadow: var(--gkii-shadow);
        padding: 10px;
        z-index: 80;
    }

    body.admin-bar .primary-nav {
        inset-top: 158px;
    }

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

    .primary-nav .menu {
        display: grid;
        gap: 0;
    }

    .primary-nav a {
        min-height: auto;
        padding: 14px;
        border-radius: 12px;
    }

    .primary-nav a:hover {
        background: var(--gkii-blue-soft);
    }

    .primary-nav a::after {
        display: none;
    }

    .hero-section {
        padding-top: 28px;
    }

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

    .hero-copy h1 {
        font-size: clamp(38px, 12vw, 56px);
    }

    .hero-copy p {
        font-size: 15px;
        margin: 18px 0 20px;
    }

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

    .btn {
        width: 100%;
    }

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

    .shortcut-card {
        min-height: 118px;
        padding: 16px 12px;
        text-align: center;
        align-items: center;
    }

    .shortcut-icon {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .shortcut-desc,
    .shortcut-arrow {
        display: none;
    }

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

    .section-heading h2 {
        font-size: 18px;
    }

    .sermon-grid {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
    }

    .sermon-card {
        min-width: 68%;
        scroll-snap-align: start;
    }

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

    .giving-card {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 24px;
    }

    .giving-bank {
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.2);
        padding-left: 0;
        padding-top: 18px;
    }

    .giving-qris {
        grid-template-columns: 86px 1fr;
    }

    .giving-qris img {
        width: 86px;
        height: 86px;
    }

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

    .site-footer {
        padding-bottom: 110px;
    }

    .mobile-bottom-nav {
        position: fixed;
        z-index: 90;
        left: 12px;
        right: 12px;
        bottom: 12px;
        height: 68px;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        align-items: center;
        border-radius: 22px;
        background: linear-gradient(135deg, var(--gkii-blue), #061766);
        color: #fff;
        box-shadow: 0 18px 42px rgba(7,31,120,.35);
        padding: 6px;
    }

    .mobile-bottom-nav a {
        display: grid;
        place-items: center;
        gap: 2px;
        font-size: 11px;
        font-weight: 800;
        color: rgba(255,255,255,.85);
    }

    .mobile-bottom-nav svg {
        font-size: 22px;
    }
}

@media (max-width: 520px) {
    .top-announcement {
        font-size: 11px;
    }

    .announcement-inner {
        min-height: 36px;
    }

    .shortcut-grid {
        gap: 10px;
    }

    .shortcut-title {
        font-size: 12px;
    }

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

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

    .event-item {
        grid-template-columns: 52px 1fr;
        gap: 12px;
        padding: 14px;
    }

    .post-card-body,
    .page-content {
        padding: 22px;
    }
}


/* =========================================================
   GKII Modern v1.0.1 - WordPress Menu Compatibility Fix
   Handles existing deep WordPress menu/submenu structure.
   ========================================================= */

.site-header {
    min-height: 78px;
}

.header-inner {
    position: relative;
}

.primary-nav .menu,
.primary-nav .menu ul,
.primary-nav .menu li {
    list-style: none;
}

.primary-nav .menu {
    flex-wrap: nowrap;
}

.primary-nav .menu > li {
    position: relative;
    display: flex;
    align-items: center;
}

.primary-nav .menu > li > a {
    white-space: nowrap;
}

.primary-nav .menu .sub-menu {
    position: absolute;
    top: calc(100% - 10px);
    left: 0;
    z-index: 100;
    min-width: 260px;
    max-height: min(72vh, 620px);
    overflow-y: auto;
    display: none;
    margin: 0;
    padding: 10px;
    background: rgba(255, 255, 255, .98);
    border: 1px solid var(--gkii-line);
    border-radius: 16px;
    box-shadow: 0 22px 56px rgba(7, 31, 120, .16);
}

.primary-nav .menu li:hover > .sub-menu,
.primary-nav .menu li:focus-within > .sub-menu {
    display: block;
}

.primary-nav .menu .sub-menu li {
    position: relative;
    display: block;
    margin: 0;
}

.primary-nav .menu .sub-menu a {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 12px;
    border-radius: 11px;
    color: #17213a;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
    white-space: normal;
}

.primary-nav .menu .sub-menu a::after {
    display: none;
}

.primary-nav .menu .sub-menu a:hover {
    background: var(--gkii-blue-soft);
    color: var(--gkii-blue);
}

.primary-nav .menu .sub-menu .sub-menu {
    top: 0;
    left: calc(100% + 8px);
}

.primary-nav .menu > li.menu-item-has-children > a::before {
    content: "⌄";
    order: 2;
    margin-left: 6px;
    font-size: 12px;
    color: var(--gkii-gold-2);
}

/* Prevent old WordPress content/menu bullets from affecting header */
.primary-nav ul {
    margin-block-start: 0;
    margin-block-end: 0;
}

.primary-nav li::marker {
    content: "";
}

/* Make hero visible and clean after menu fix */
.hero-section {
    clear: both;
}

@media (max-width: 1180px) {
    .header-inner {
        gap: 16px;
    }

    .primary-nav .menu {
        gap: 14px;
    }

    .primary-nav a {
        font-size: 13px;
    }

    .header-giving {
        padding: 10px 14px;
    }
}

@media (max-width: 980px) {
    .primary-nav .menu {
        gap: 10px;
    }

    .primary-nav a {
        font-size: 12px;
    }
}

@media (max-width: 860px) {
    .primary-nav {
        top: 84px;
        inset-inline: 14px;
        max-height: calc(100vh - 176px);
        overflow-y: auto;
    }

    .primary-nav .menu > li {
        display: block;
    }

    .primary-nav .menu > li > a {
        white-space: normal;
    }

    .primary-nav .menu .sub-menu,
    .primary-nav .menu .sub-menu .sub-menu {
        position: static;
        display: block;
        min-width: 0;
        max-height: none;
        overflow: visible;
        margin: 0 0 0 12px;
        padding: 0 0 0 10px;
        background: transparent;
        border: 0;
        border-left: 2px solid var(--gkii-line);
        border-radius: 0;
        box-shadow: none;
    }

    .primary-nav .menu .sub-menu a {
        padding: 10px 12px;
        font-size: 12px;
        color: #33415f;
    }

    .primary-nav .menu > li.menu-item-has-children > a::before {
        content: "";
    }

    .site-header {
        min-height: 70px;
    }
}


/* GKII Modern v1.0.2 - Shortcut default visibility fix */
.shortcut-card .shortcut-title,
.shortcut-card .shortcut-desc {
    display: block;
}

.shortcut-icon svg,
.shortcut-arrow svg {
    width: 1em;
    height: 1em;
}

.shortcut-card {
    overflow: hidden;
}


/* =========================================================
   GKII Modern v1.0.3 - Header brand, submenu, article, sidebar
   ========================================================= */

.brand {
    min-width: 0;
}

.brand-logo-long {
    width: min(300px, 28vw);
    height: 52px;
    object-fit: contain;
    object-position: left center;
}

.brand-display-logo_only .brand-logo-long {
    width: min(360px, 32vw);
}

.brand-display-logo_only .brand-logo-custom img {
    width: auto;
    max-width: min(330px, 32vw);
    height: 56px;
    object-fit: contain;
}

.brand-display-title_only .brand-text {
    font-size: 19px;
}

.primary-nav .menu li.submenu-open > .sub-menu {
    display: block;
}

.primary-nav .menu .sub-menu {
    pointer-events: auto;
}

.primary-nav .menu > li:last-child .sub-menu,
.primary-nav .menu > li:nth-last-child(2) .sub-menu {
    left: auto;
    right: 0;
}

.primary-nav .menu > li:last-child .sub-menu .sub-menu,
.primary-nav .menu > li:nth-last-child(2) .sub-menu .sub-menu {
    left: auto;
    right: calc(100% + 8px);
}

.menu-item-has-children > a {
    cursor: pointer;
}

.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 34px;
    align-items: start;
}

.archive-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
}

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

.page-content.single-content,
.page-content {
    overflow: visible;
}

.page-hero,
.single-hero {
    background:
        radial-gradient(circle at top right, rgba(216, 153, 54, .14), transparent 16rem),
        linear-gradient(135deg, #fff, #f8faff);
    border: 1px solid var(--gkii-line);
    border-radius: 24px;
    padding: clamp(26px, 4vw, 46px);
    margin-bottom: 26px;
}

.page-content > .entry-header,
.single-content > .entry-header {
    margin-bottom: 26px;
}

.single-hero h1,
.page-hero h1,
.entry-header h1 {
    margin-bottom: 0;
}

.entry-excerpt {
    margin: 16px 0 0;
    color: var(--gkii-muted);
    font-size: 18px;
    max-width: 760px;
}

.entry-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.entry-meta span,
.entry-meta a {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--gkii-blue-soft);
    color: var(--gkii-blue);
    font-size: 12px;
    font-weight: 900;
}

.entry-featured,
.entry-featured-contain {
    background: #fff;
    border: 1px solid var(--gkii-line);
    border-radius: 24px;
    overflow: hidden;
    margin: 0 0 30px;
    box-shadow: 0 16px 42px rgba(7,31,120,.08);
    max-height: none;
}

.entry-featured img,
.entry-featured-contain img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center;
}

.entry-content {
    background: #fff;
    border: 1px solid var(--gkii-line);
    border-radius: 24px;
    padding: clamp(24px, 4vw, 42px);
    box-shadow: 0 16px 42px rgba(7,31,120,.06);
    font-size: 17px;
}

.entry-content > *:first-child {
    margin-top: 0;
}

.entry-content > *:last-child {
    margin-bottom: 0;
}

.entry-content img {
    border-radius: 16px;
    height: auto;
    object-fit: contain;
}

.entry-content figure {
    max-width: 100%;
}

.article-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    background: #fff;
    border: 1px solid var(--gkii-line);
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 12px 32px rgba(7,31,120,.06);
}

.article-share-top {
    margin-bottom: 22px;
}

.article-share-bottom {
    margin-top: 24px;
}

.article-share > span {
    color: var(--gkii-blue);
    font-weight: 900;
    margin-right: 4px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 38px;
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--gkii-blue-soft);
    color: var(--gkii-blue);
    font-size: 12px;
    font-weight: 900;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.share-btn b {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #fff;
    font-style: normal;
    text-transform: uppercase;
    font-size: 10px;
    line-height: 1;
}

.share-btn em {
    font-style: normal;
}

.share-btn:hover {
    transform: translateY(-2px);
    background: var(--gkii-blue);
    color: #fff;
}

.content-sidebar {
    position: sticky;
    top: 106px;
    display: grid;
    gap: 18px;
}

.widget {
    background: #fff;
    border: 1px solid var(--gkii-line);
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 16px 42px rgba(7,31,120,.08);
}

.widget-title {
    margin: 0 0 16px;
    color: var(--gkii-blue);
    font-size: 19px;
    line-height: 1.2;
}

.widget ul,
.widget ol {
    margin: 0;
    padding-left: 18px;
}

.widget li {
    margin-bottom: 9px;
}

.widget a {
    color: var(--gkii-blue);
    font-weight: 800;
}

.sidebar-recent-list {
    display: grid;
    gap: 13px;
}

.sidebar-recent-item {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding-bottom: 13px;
    border-bottom: 1px solid var(--gkii-line);
}

.sidebar-recent-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.sidebar-recent-thumb {
    display: block;
    width: 74px;
    height: 58px;
    border-radius: 13px;
    overflow: hidden;
    background: var(--gkii-blue-soft);
}

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

.sidebar-recent-copy {
    min-width: 0;
}

.sidebar-recent-copy strong {
    display: block;
    color: var(--gkii-blue);
    font-size: 13px;
    line-height: 1.28;
}

.sidebar-recent-copy small {
    display: block;
    margin-top: 5px;
    color: var(--gkii-muted);
    font-size: 11px;
    font-weight: 800;
}

.related-posts {
    margin-top: 34px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.related-card {
    background: #fff;
    border: 1px solid var(--gkii-line);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(7,31,120,.07);
}

.related-thumb {
    display: block;
    aspect-ratio: 1.45 / 1;
    background: var(--gkii-blue-soft);
}

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

.related-card div {
    padding: 14px;
}

.related-card small {
    color: var(--gkii-gold-2);
    font-weight: 900;
    font-size: 11px;
}

.related-card h3 {
    margin: 6px 0 0;
    color: var(--gkii-blue);
    font-size: 15px;
    line-height: 1.25;
}

.post-navigation-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 28px;
}

.post-navigation-modern a {
    display: flex;
    align-items: center;
    min-height: 58px;
    background: #fff;
    border: 1px solid var(--gkii-line);
    border-radius: 16px;
    padding: 12px 16px;
    color: var(--gkii-blue);
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(7,31,120,.06);
}

.post-navigation-modern div:last-child a {
    justify-content: flex-end;
    text-align: right;
}

.post-thumb-contain img {
    object-fit: contain;
    background: var(--gkii-blue-soft);
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 12px;
    color: var(--gkii-blue);
    font-weight: 900;
}

.read-more-link svg {
    font-size: 16px;
}

.archive-description {
    color: var(--gkii-muted);
    max-width: 720px;
    margin-bottom: 24px;
}

@media (max-width: 1180px) {
    .brand-logo-long {
        width: min(240px, 24vw);
    }
}

@media (max-width: 980px) and (min-width: 861px) {
    .brand-logo-long {
        width: 190px;
    }

    .brand-display-logo_title .brand-text {
        display: none;
    }
}

@media (max-width: 860px) {
    .brand-logo-long,
    .brand-display-logo_only .brand-logo-long,
    .brand-display-logo_only .brand-logo-custom img {
        width: min(230px, 62vw);
        height: 46px;
    }

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

    .content-sidebar {
        position: static;
    }

    .entry-content {
        font-size: 16px;
    }

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

    .post-navigation-modern {
        grid-template-columns: 1fr;
    }

    .article-share {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .article-share > span {
        flex: 0 0 auto;
    }

    .share-btn {
        flex: 0 0 auto;
    }
}

@media (max-width: 520px) {
    .share-btn em {
        display: none;
    }

    .share-btn {
        padding: 7px;
    }

    .sidebar-recent-item {
        grid-template-columns: 64px minmax(0, 1fr);
    }

    .sidebar-recent-thumb {
        width: 64px;
        height: 52px;
    }
}


/* =========================================================
   GKII Modern v1.0.4 - Three homepage video layout
   ========================================================= */

.hero-video-wrap {
    display: grid;
    gap: 14px;
}

.hero-video-caption {
    background: rgba(255,255,255,.92);
    border: 1px solid var(--gkii-line);
    border-radius: 18px;
    padding: 16px 18px;
    box-shadow: 0 14px 34px rgba(7,31,120,.07);
}

.hero-video-caption h2 {
    margin: 0 0 5px;
    color: var(--gkii-blue);
    font-size: 19px;
    line-height: 1.2;
}

.hero-video-caption p {
    margin: 0;
    color: var(--gkii-muted);
    font-size: 14px;
    line-height: 1.55;
}

.video-showcase-section {
    padding: 18px 0 30px;
}

.video-showcase-heading {
    align-items: end;
    margin-bottom: 18px;
}

.video-showcase-heading .section-kicker {
    display: inline-block;
    margin-bottom: 5px;
}

.video-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.video-feature-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--gkii-line);
    border-radius: 24px;
    box-shadow: 0 18px 48px rgba(7,31,120,.09);
}

.video-feature-media {
    aspect-ratio: 16 / 9;
    background: #071028;
}

.video-feature-media iframe,
.video-feature-media .video-placeholder {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.video-feature-copy {
    padding: 20px 22px 22px;
}

.video-feature-copy h3 {
    margin: 0 0 7px;
    color: var(--gkii-blue);
    font-size: 21px;
    line-height: 1.2;
}

.video-feature-copy p {
    margin: 0;
    color: var(--gkii-muted);
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 860px) {
    .hero-video-wrap {
        order: -1;
    }

    .video-showcase-grid {
        grid-template-columns: 1fr;
    }

    .video-showcase-heading {
        align-items: flex-start;
    }

    .hero-video-caption h2,
    .video-feature-copy h3 {
        font-size: 18px;
    }

    .video-showcase-section {
        padding-top: 6px;
    }
}
