/* ═══════════════════════════════════════════════════════════════
 * PAGE BUILDER (pb-*)
 * Minimalist, square-cornered components driven by theme tokens
 * from inc/global-styles.php:
 *   --umbjm-primary  --umbjm-secondary  --umbjm-accent
 *   --umbjm-heading  --umbjm-body       --umbjm-subtle
 *   --umbjm-card     --umbjm-surface    --umbjm-page    --umbjm-hairline
 * No gold, no rounded corners, no heavy shadows.
 * Dark mode is automatic because the tokens are swapped on [data-theme=dark].
 * ═══════════════════════════════════════════════════════════════ */

:root {
    --pb-gap: 2rem;
    --pb-bar: 3px;
    --pb-tint: color-mix(in srgb, var(--umbjm-accent) 10%, transparent);
    --pb-shadow: 0 1px 3px rgba(2, 53, 108, 0.06);
    --pb-ease: cubic-bezier(0.4, 0, 0.2, 1);
}
[data-theme="dark"] {
    --pb-tint: color-mix(in srgb, var(--umbjm-accent) 16%, transparent);
    --pb-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

/* ── Shared ──────────────────────────────────────────────────── */
.pb-icon {
    width: 1em;
    height: 1em;
    display: block;
    flex-shrink: 0;
}
.pb-section, .pb-vm, .pb-grid, .pb-features, .pb-fee, .pb-links, .pb-timeline, .pb-cta {
    font-family: var(--font-sans, "Open Sans", system-ui, sans-serif);
}
.pb-section *, .pb-vm *, .pb-grid *, .pb-features *, .pb-fee *,
.pb-links *, .pb-timeline *, .pb-cta * {
    box-sizing: border-box;
}
.pb-section h2, .pb-section h3,
.pb-vm h3, .pb-features h2, .pb-fee h2, .pb-links h2, .pb-timeline h2,
.pb-grid h3, .pb-cta h2 {
    margin: 0;
}
.pb-section p, .pb-vm p, .pb-features p, .pb-fee p, .pb-timeline p, .pb-cta p {
    margin: 0;
}
/* class-based reset so it never overrides component padding;
   doubled class beats .wp-content ol/ul (0,1,1) in wordpress-content.css */
.pb-vm__list.pb-vm__list, .pb-fee__list.pb-fee__list, .pb-timeline__list.pb-timeline__list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.pb-vm__item.pb-vm__item, .pb-fee__item.pb-fee__item, .pb-timeline__item.pb-timeline__item {
    margin: 0;
}

/* Section titles — serif, primary color, thin rule below */
.pb-features__title, .pb-fee__title, .pb-links__title, .pb-timeline__title {
    font-family: var(--font-display, "Marcellus", serif);
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.3;
    color: var(--umbjm-heading);
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 1rem;
}
.pb-features__title .pb-icon,
.pb-fee__title .pb-icon,
.pb-links__title .pb-icon,
.pb-timeline__title .pb-icon { font-size: 1.125rem; color: var(--umbjm-accent); }
.pb-links__title-icon, .pb-timeline__title-icon { display: inline-flex; }

/* ── Section Box ─────────────────────────────────────────────── */
.pb-section {
    background: var(--umbjm-card);
    border: 1px solid var(--umbjm-hairline);
    border-left: var(--pb-bar) solid var(--umbjm-primary);
    padding: 1.5rem;
    margin: 0 0 var(--pb-gap);
}
@media (min-width: 640px) { .pb-section { padding: 1.75rem 2rem; } }
.pb-section__head {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding-bottom: 0.875rem;
    margin-bottom: 1.125rem;
    border-bottom: 1px solid var(--umbjm-hairline);
}
.pb-section__icon {
    display: inline-flex;
    color: var(--umbjm-accent);
    font-size: 1.125rem;
}
.pb-section__title {
    font-family: var(--font-display, "Marcellus", serif);
    font-weight: 400;
    font-size: 1.375rem;
    line-height: 1.3;
    color: var(--umbjm-heading);
}
.pb-section__body { color: var(--umbjm-body); line-height: 1.75; }
.pb-section__body > *:last-child { margin-bottom: 0; }

/* ── Visi & Misi ─────────────────────────────────────────────── */
.pb-vm {
    display: grid;
    gap: 1.25rem;
    margin: 0 0 var(--pb-gap);
}
/* small, quiet headings — no icon, no big display type */
.pb-vm__heading {
    font-family: var(--font-sans, "Open Sans", system-ui, sans-serif);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--umbjm-accent);
    margin-bottom: 0.75rem;
}
.pb-vm__visi {
    background: var(--umbjm-card);
    border: 1px solid var(--umbjm-hairline);
    border-left: var(--pb-bar) solid var(--umbjm-accent);
    box-shadow: var(--pb-shadow);
    padding: 1.375rem 1.5rem;
}
.pb-vm__text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--umbjm-body);
}
.pb-vm__misi {
    background: var(--umbjm-card);
    border: 1px solid var(--umbjm-hairline);
    box-shadow: var(--pb-shadow);
    padding: 1.375rem 1.5rem;
}
.pb-vm__list { display: grid; }
.pb-vm__item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--umbjm-hairline);
}
.pb-vm__item:last-child { border-bottom: 0; padding-bottom: 0; }
.pb-vm__item:first-child { padding-top: 0; }
.pb-vm__num {
    flex-shrink: 0;
    width: 1.625rem; height: 1.625rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--pb-tint);
    color: var(--umbjm-accent);
    font-size: 0.8125rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}
.pb-vm__item-text { color: var(--umbjm-body); line-height: 1.7; padding-top: 0.0625rem; }

/* ── Icon Grid & Card (centered cards) ───────────────────────── */
.pb-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    margin: 0 0 var(--pb-gap);
}
@media (min-width: 520px) { .pb-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 900px) {
    .pb-grid--cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
    .pb-grid--cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .pb-grid--cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .pb-grid--cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .pb-grid--cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .pb-grid--cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}
.pb-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    background: var(--umbjm-card);
    border: 1px solid var(--umbjm-hairline);
    box-shadow: var(--pb-shadow);
    padding: 1.375rem 1.25rem;
    height: 100%;
    transition: border-color 0.2s var(--pb-ease), transform 0.2s var(--pb-ease), box-shadow 0.2s var(--pb-ease);
}
.pb-card:hover {
    border-color: var(--umbjm-accent);
    transform: translateY(-2px);
}
.pb-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem; height: 2.75rem;
    background: var(--pb-tint);
    color: var(--umbjm-accent);
    font-size: 1.375rem;
}
.pb-card__title {
    font-weight: 700;
    font-size: 0.9375rem;
    line-height: 1.4;
    color: var(--umbjm-heading);
}
.pb-card__text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--umbjm-subtle);
}

/* ── Feature List ({icon, title, description}) ───────────────── */
.pb-features { margin: 0 0 var(--pb-gap); }
.pb-features__intro {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--umbjm-body);
    margin-bottom: 1rem !important;
}
.pb-features__grid {
    display: grid;
    gap: 0.875rem;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 640px) {
    .pb-features__grid--cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .pb-features__grid--cols-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .pb-features__grid--cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 960px) {
    .pb-features__grid--cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .pb-features__grid--cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.pb-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1.125rem 1.25rem;
    background: var(--umbjm-card);
    border: 1px solid var(--umbjm-hairline);
    box-shadow: var(--pb-shadow);
    text-decoration: none !important;
    color: inherit;
    transition: border-color 0.2s var(--pb-ease), background 0.2s var(--pb-ease);
}
.pb-feature:hover { border-color: var(--umbjm-accent); background: var(--umbjm-surface); }
.pb-feature__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem; height: 2.25rem;
    background: var(--pb-tint);
    color: var(--umbjm-accent);
    font-size: 1.125rem;
    flex-shrink: 0;
}
.pb-feature__body {
    display: flex;
    flex-direction: column;
    gap: 0.1875rem;
    min-width: 0;
}
.pb-feature__title {
    font-weight: 700;
    font-size: 0.9375rem;
    line-height: 1.4;
    color: var(--umbjm-heading);
}
.pb-feature__text {
    font-size: 0.8125rem;
    line-height: 1.55;
    color: var(--umbjm-subtle);
}

/* ── Biaya Kuliah (price panel + checklist) ──────────────────── */
.pb-fee { margin: 0 0 var(--pb-gap); }
.pb-fee__box {
    display: grid;
    grid-template-columns: 1fr;
    background: var(--umbjm-card);
    border: 1px solid var(--umbjm-hairline);
}
@media (min-width: 720px) {
    .pb-fee__box { grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); }
}
.pb-fee__panel {
    padding: 1.5rem;
    border-bottom: 1px solid var(--umbjm-hairline);
}
@media (min-width: 720px) {
    .pb-fee__panel { border-bottom: 0; border-right: 1px solid var(--umbjm-hairline); }
}
.pb-fee__plan {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    color: var(--umbjm-heading);
    margin-bottom: 0.625rem;
}
.pb-fee__price {
    font-family: var(--font-display, "Marcellus", serif);
    font-weight: 400;
    font-size: 2rem;
    line-height: 1.15;
    color: var(--umbjm-heading);
    letter-spacing: -0.01em;
}
@media (min-width: 720px) { .pb-fee__price { font-size: 2.25rem; } }
.pb-fee__price-note {
    font-family: var(--font-sans, "Open Sans", system-ui, sans-serif);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--umbjm-accent);
    white-space: nowrap;
    letter-spacing: 0.02em;
}
.pb-fee__note {
    margin-top: 0.625rem !important;
    font-size: 0.8125rem;
    line-height: 1.6;
    color: var(--umbjm-subtle);
}
.pb-fee__list.pb-fee__list {
    padding: 1.5rem;
    display: grid;
    gap: 0.875rem;
    align-content: start;
}
.pb-fee__box--list-only .pb-fee__list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 720px) {
    .pb-fee__box--list-only .pb-fee__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.pb-fee__item {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
}
.pb-fee__check {
    display: inline-flex;
    color: var(--umbjm-accent);
    font-size: 0.9375rem;
    margin-top: 0.1875rem;
}
.pb-fee__label {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--umbjm-body);
}

/* ── Link List ───────────────────────────────────────────────── */
.pb-links { margin: 0 0 var(--pb-gap); }
.pb-links__box {
    border: 1px solid var(--umbjm-hairline);
    background: var(--umbjm-card);
}
.pb-links__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9375rem 1.125rem;
    border-bottom: 1px solid var(--umbjm-hairline);
    text-decoration: none !important;
    color: inherit;
    transition: background 0.15s var(--pb-ease);
}
.pb-links__item:last-child { border-bottom: 0; }
.pb-links__item:hover { background: var(--umbjm-surface); }
.pb-links__body {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    flex: 1 1 auto;
    min-width: 0;
}
.pb-links__name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--umbjm-heading);
    line-height: 1.4;
}
.pb-links__desc {
    font-size: 0.8125rem;
    color: var(--umbjm-subtle);
    line-height: 1.5;
}
.pb-links__arrow {
    display: inline-flex;
    color: var(--umbjm-subtle);
    font-size: 1rem;
    flex-shrink: 0;
    transition: color 0.2s var(--pb-ease), transform 0.2s var(--pb-ease);
}
.pb-links__item:hover .pb-links__arrow {
    color: var(--umbjm-accent);
    transform: translateX(3px);
}

/* ── Contact ─────────────────────────────────────────────────── */
.pb-contact {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--umbjm-hairline);
}
.pb-contact:last-child { border-bottom: 0; }
.pb-contact__icon {
    display: inline-flex;
    color: var(--umbjm-accent);
    font-size: 1.125rem;
    margin-top: 0.1875rem;
}
.pb-contact__body { display: flex; flex-direction: column; gap: 0.125rem; min-width: 0; }
.pb-contact__label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--umbjm-subtle);
}
.pb-contact__value {
    font-size: 0.9375rem;
    color: var(--umbjm-body);
    line-height: 1.55;
    word-break: break-word;
}
.pb-contact__value a { color: var(--umbjm-accent); text-decoration: none; }
.pb-contact__value a:hover { text-decoration: underline; }

/* ── Download ────────────────────────────────────────────────── */
.pb-download {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.9375rem 1.125rem;
    background: var(--umbjm-card);
    border: 1px solid var(--umbjm-hairline);
    margin-bottom: 0.5rem;
    text-decoration: none !important;
    color: inherit;
    transition: border-color 0.2s var(--pb-ease), background 0.2s var(--pb-ease);
}
.pb-download:hover { border-color: var(--umbjm-accent); background: var(--umbjm-surface); }
.pb-download__icon {
    display: inline-flex;
    color: var(--umbjm-accent);
    font-size: 1.125rem;
    flex-shrink: 0;
}
.pb-download__body {
    display: flex;
    flex-direction: column;
    gap: 0.1875rem;
    flex: 1 1 auto;
    min-width: 0;
}
.pb-download__name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--umbjm-heading);
    line-height: 1.4;
}
.pb-download__meta { display: flex; align-items: center; gap: 0.5rem; }
.pb-download__badge {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.125rem 0.375rem;
    border: 1px solid var(--umbjm-hairline);
    color: var(--umbjm-subtle);
}
.pb-download__size { font-size: 0.75rem; color: var(--umbjm-subtle); }
.pb-download__action {
    display: inline-flex;
    color: var(--umbjm-subtle);
    font-size: 1rem;
    flex-shrink: 0;
    transition: color 0.2s var(--pb-ease);
}
.pb-download:hover .pb-download__action { color: var(--umbjm-accent); }

/* ── Timeline ────────────────────────────────────────────────── */
.pb-timeline { margin: 0 0 var(--pb-gap); }
.pb-timeline__list.pb-timeline__list {
    position: relative;
    display: grid;
    gap: 1.375rem;
}
/* vertical line — anchored to marker center (7.5px) */
.pb-timeline__list::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 1px;
    background: var(--umbjm-hairline);
}
.pb-timeline__item {
    position: relative;
    padding-left: 2rem;
}
.pb-timeline__marker {
    position: absolute;
    left: 0;
    top: 0.25rem;
    width: 15px; height: 15px;
    background: var(--umbjm-page);
    border: 1px solid var(--umbjm-accent);
    color: var(--umbjm-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    z-index: 1;
}
.pb-timeline__marker:empty::before {
    content: "";
    width: 5px; height: 5px;
    background: var(--umbjm-accent);
}
.pb-timeline__item--active .pb-timeline__marker {
    background: var(--umbjm-accent);
    color: var(--umbjm-page);
}
.pb-timeline__item--active .pb-timeline__marker:empty::before { background: var(--umbjm-page); }
.pb-timeline__card { padding-left: 0.25rem; }
.pb-timeline__date {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--umbjm-accent);
    margin-bottom: 0.25rem;
}
.pb-timeline__heading {
    font-weight: 700;
    font-size: 1rem;
    color: var(--umbjm-heading);
    line-height: 1.4;
}
.pb-timeline__text {
    margin-top: 0.25rem !important;
    font-size: 0.875rem;
    color: var(--umbjm-subtle);
    line-height: 1.65;
}
.pb-timeline__content { margin-top: 0.5rem; font-size: 0.875rem; color: var(--umbjm-body); }
.pb-timeline__content > *:last-child { margin-bottom: 0; }

/* ── CTA Box ─────────────────────────────────────────────────── */
.pb-cta {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.75rem;
    margin: 0 0 var(--pb-gap);
    background: linear-gradient(115deg, var(--umbjm-primary) 0%, var(--umbjm-secondary) 55%, var(--umbjm-accent) 140%);
    background-size: 180% 180%;
    animation: pb-cta-pan 14s ease-in-out infinite alternate;
    color: #fff;
}
/* dot pattern — pojok kanan atas, memudar ke dalam */
.pb-cta::before {
    content: "";
    position: absolute;
    top: -2.5rem;
    right: -2.5rem;
    width: 15rem;
    height: 15rem;
    background-image: radial-gradient(rgba(255, 255, 255, 0.4) 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    -webkit-mask-image: radial-gradient(closest-side, #000 0%, transparent 72%);
    mask-image: radial-gradient(closest-side, #000 0%, transparent 72%);
    opacity: 0.45;
    pointer-events: none;
    z-index: 0;
}
/* pattern garis diagonal bergradasi — bagian bawah */
.pb-cta::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 45%;
    background:
        repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 20px),
        linear-gradient(to top, rgba(2, 20, 45, 0.28), transparent);
    -webkit-mask-image: linear-gradient(to top, #000 0%, transparent 100%);
    mask-image: linear-gradient(to top, #000 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}
.pb-cta > * { position: relative; z-index: 1; }
@keyframes pb-cta-pan {
    from { background-position: 0% 50%; }
    to   { background-position: 100% 50%; }
}
@media (min-width: 768px) {
    .pb-cta { flex-direction: row; align-items: center; padding: 2rem 2.25rem; gap: 2rem; }
    .pb-cta--center { flex-direction: column; text-align: center; }
}
.pb-cta--gradient { background: linear-gradient(110deg, var(--umbjm-secondary), var(--umbjm-accent) 160%); background-size: 180% 180%; }
.pb-cta--dark { background: #0b1a2e; animation: none; }
.pb-cta--gold { background: linear-gradient(115deg, var(--umbjm-secondary), var(--umbjm-primary) 150%); background-size: 180% 180%; }
.pb-cta--light {
    background: var(--umbjm-card);
    animation: none;
    color: var(--umbjm-body);
    border: 1px solid var(--umbjm-hairline);
    border-left: var(--pb-bar) solid var(--umbjm-accent);
}
/* light variant: pola memakai warna aksen agar tetap terlihat */
.pb-cta--light::before {
    background-image: radial-gradient(var(--umbjm-accent) 1.5px, transparent 1.5px);
    opacity: 0.18;
}
.pb-cta--light::after {
    background:
        repeating-linear-gradient(115deg, var(--umbjm-hairline) 0 2px, transparent 2px 20px),
        linear-gradient(to top, var(--umbjm-surface), transparent);
}
.pb-cta__icon {
    display: inline-flex;
    color: currentColor;
    font-size: 1.75rem;
    flex-shrink: 0;
    opacity: 0.9;
}
.pb-cta--light .pb-cta__icon { color: var(--umbjm-accent); opacity: 1; }
.pb-cta--center .pb-cta__icon { margin: 0 auto; }
.pb-cta__content { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 0.375rem; }
.pb-cta__eyebrow {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.75;
}
.pb-cta--light .pb-cta__eyebrow { color: var(--umbjm-accent); opacity: 1; }
.pb-cta__title {
    font-family: var(--font-display, "Marcellus", serif);
    font-weight: 400;
    font-size: 1.375rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
    text-wrap: balance;
    color: inherit;
    text-shadow: 0 1px 2px rgba(2, 20, 45, 0.25);
}
@media (min-width: 768px) { .pb-cta__title { font-size: 1.625rem; } }
.pb-cta--light .pb-cta__title { color: var(--umbjm-heading); text-shadow: none; }
.pb-cta__text { font-size: 0.9375rem; line-height: 1.7; opacity: 0.88; max-width: 62ch; }
.pb-cta--center .pb-cta__text { margin: 0 auto; }
.pb-cta--light .pb-cta__text { color: var(--umbjm-body); opacity: 1; }
.pb-cta__actions { display: flex; flex-wrap: wrap; gap: 0.625rem; flex-shrink: 0; }
.pb-cta--center .pb-cta__actions { justify-content: center; }
.pb-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    font-size: 0.9375rem;
    line-height: 1;
    text-decoration: none !important;
    white-space: nowrap;
    border: 1px solid transparent;
    transition: background 0.25s var(--pb-ease), color 0.25s var(--pb-ease),
                border-color 0.25s var(--pb-ease), transform 0.25s var(--pb-ease),
                box-shadow 0.25s var(--pb-ease);
}
.pb-cta__btn .pb-icon { width: 1em; height: 1em; transition: transform 0.25s var(--pb-ease); }
.pb-cta__btn:hover .pb-icon { transform: translateX(3px); }
.pb-cta__btn:active { transform: translateY(0); }
.pb-cta__btn--primary { background: #fff; color: var(--umbjm-primary); box-shadow: 0 2px 8px rgba(2, 20, 45, 0.18); }
.pb-cta__btn--primary:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(2, 20, 45, 0.28);
}
.pb-cta__btn--ghost { background: rgba(255,255,255,0.06); color: #fff; border-color: rgba(255,255,255,0.45); }
.pb-cta__btn--ghost:hover {
    background: rgba(255,255,255,0.14);
    border-color: #fff;
    transform: translateY(-2px);
}
.pb-cta--light .pb-cta__btn--primary { background: var(--umbjm-accent); color: #fff; }
.pb-cta--light .pb-cta__btn--primary:hover { background: var(--umbjm-primary); color: #fff; border-color: transparent; }
.pb-cta--light .pb-cta__btn--ghost { background: transparent; color: var(--umbjm-heading); border-color: var(--umbjm-hairline); }
.pb-cta--light .pb-cta__btn--ghost:hover { background: var(--umbjm-surface); border-color: var(--umbjm-accent); }

/* ── Block editor helpers ────────────────────────────────────── */
.pb-editor-placeholder {
    color: var(--umbjm-subtle);
    font-style: italic;
    font-weight: 400;
}
.pb-editor-empty {
    padding: 1.25rem;
    text-align: center;
    color: var(--umbjm-subtle);
    border: 1px dashed var(--umbjm-hairline);
    font-size: 0.875rem;
}
/* Let Gutenberg's InnerBlocks wrappers inherit the parent grid/list layout */
.pb-grid > .block-editor-inner-blocks,
.pb-grid > .block-editor-inner-blocks > .block-editor-block-list__layout,
.pb-features__grid > .block-editor-inner-blocks,
.pb-features__grid > .block-editor-inner-blocks > .block-editor-block-list__layout,
.pb-fee__list > .block-editor-inner-blocks,
.pb-fee__list > .block-editor-inner-blocks > .block-editor-block-list__layout,
.pb-links__box > .block-editor-inner-blocks,
.pb-links__box > .block-editor-inner-blocks > .block-editor-block-list__layout,
.pb-timeline__list > .block-editor-inner-blocks,
.pb-timeline__list > .block-editor-inner-blocks > .block-editor-block-list__layout { display: contents; }
.editor-styles-wrapper .wp-block[data-type^="umbjm/"] { margin-top: 0; margin-bottom: 0; }
.editor-styles-wrapper .pb-card.wp-block,
.editor-styles-wrapper .pb-feature.wp-block,
.editor-styles-wrapper .pb-fee__item.wp-block,
.editor-styles-wrapper .pb-links__item.wp-block,
.editor-styles-wrapper .pb-timeline__item.wp-block { max-width: none; }
.editor-styles-wrapper .pb-timeline__list,
.editor-styles-wrapper .pb-vm__list,
.editor-styles-wrapper .pb-fee__list { list-style: none; }
.editor-styles-wrapper .pb-cta .pb-cta__btn { cursor: default; }
.pb-grid .block-list-appender,
.pb-features__grid .block-list-appender,
.pb-fee__list .block-list-appender,
.pb-links__box .block-list-appender,
.pb-timeline__list .block-list-appender { margin: 0.25rem 0; }
.pb-editor-add {
    margin-top: 0.75rem;
    margin-left: 2rem;
}

/* ── Reduced motion ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .pb-cta { animation: none; }
    .pb-card, .pb-feature, .pb-download, .pb-links__arrow, .pb-cta__btn, .pb-cta__btn .pb-icon {
        transition: none;
    }
    .pb-links__item:hover .pb-links__arrow,
    .pb-cta__btn:hover .pb-icon { transform: none; }
}

/* ── Specificity shield ────────────────────────────────────────
   wordpress-content.css scopes typography to .wp-content h2/h3/p/a
   (specificity 0,1,1) which beats single-class pb rules (0,1,0).
   These parent-qualified selectors (0,2,0+) restore pb styling. */
.pb-section .pb-section__title {
    font-family: var(--font-display, "Marcellus", serif);
    font-weight: 400;
    font-size: 1.375rem;
    line-height: 1.3;
    color: var(--umbjm-heading);
    margin: 0;
}
.pb-features .pb-features__title,
.pb-fee .pb-fee__title,
.pb-links .pb-links__title,
.pb-timeline .pb-timeline__title {
    font-family: var(--font-display, "Marcellus", serif);
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.3;
    color: var(--umbjm-heading);
    margin: 0 0 1rem;
}
.pb-vm .pb-vm__heading {
    font-family: var(--font-sans, "Open Sans", system-ui, sans-serif);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--umbjm-accent);
    margin: 0 0 0.75rem;
}
.pb-card .pb-card__title {
    font-family: var(--font-sans, "Open Sans", system-ui, sans-serif);
    font-weight: 700;
    font-size: 0.9375rem;
    line-height: 1.4;
    color: var(--umbjm-heading);
    margin: 0;
}
.pb-timeline .pb-timeline__heading {
    font-family: var(--font-sans, "Open Sans", system-ui, sans-serif);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.4;
    color: var(--umbjm-heading);
    margin: 0;
}
.pb-cta .pb-cta__title {
    font-family: var(--font-display, "Marcellus", serif);
    font-weight: 400;
    font-size: 1.375rem;
    line-height: 1.25;
    color: #fff;
    margin: 0;
}
@media (min-width: 768px) { .pb-cta .pb-cta__title { font-size: 1.625rem; } }
.pb-cta--light .pb-cta__title { color: var(--umbjm-heading); }

/* paragraphs */
.pb-vm .pb-vm__text { color: var(--umbjm-body); margin: 0; line-height: 1.75; }
.pb-card .pb-card__text { color: var(--umbjm-subtle); margin: 0; }
.pb-features .pb-features__intro { color: var(--umbjm-body); }
.pb-fee .pb-fee__price { color: var(--umbjm-heading); margin: 0; }
.pb-fee .pb-fee__note { color: var(--umbjm-subtle); }
.pb-timeline .pb-timeline__text { color: var(--umbjm-subtle); }
.pb-cta .pb-cta__text { color: rgba(255, 255, 255, 0.85); margin: 0; }
.pb-cta--light .pb-cta__text { color: var(--umbjm-body); }

/* links — .wp-content a forces #009DFF + underline */
.pb-links .pb-links__item { color: inherit; }
.pb-download.pb-download { color: inherit; }
.pb-feature.pb-feature { color: inherit; }
.pb-cta .pb-cta__btn--primary { color: var(--umbjm-primary); }
.pb-cta .pb-cta__btn--primary:hover { color: #fff; }
.pb-cta .pb-cta__btn--ghost { color: #fff; }
.pb-cta .pb-cta__btn--ghost:hover { color: #fff; }
.pb-cta--light .pb-cta__btn--primary { color: #fff; }
.pb-cta--light .pb-cta__btn--primary:hover { color: #fff; }
.pb-cta--light .pb-cta__btn--ghost { color: var(--umbjm-heading); }

/* ═══════════════════════════════════════════════════════════════
 * Location Grid — kartu lokasi kampus (1 besar + kecil)
 * ═══════════════════════════════════════════════════════════════ */
.pb-locations {
    font-family: var(--font-sans, "Open Sans", system-ui, sans-serif);
}
.pb-locations__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.pb-locations__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: #07569B;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.45rem 1rem;
}
.pb-locations__badge-dot {
    width: 12px;
    height: 12px;
    background: #F5B400;
    flex-shrink: 0;
}
.pb-locations__title {
    font-family: var(--font-display, "Marcellus", serif);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #02356C;
    line-height: 1.2;
    max-width: 540px;
    margin: 0.9rem 0 0;
}
.pb-locations__desc {
    max-width: 400px;
    color: #555;
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
}
.pb-locations__grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    grid-auto-rows: minmax(230px, auto);
    gap: 20px;
}
.pb-location {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 230px;
    overflow: hidden;
    background: #02356C;
    color: #fff;
    text-decoration: none;
}
.pb-location__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.pb-location:hover .pb-location__img {
    transform: scale(1.07);
}
.pb-location::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(2, 53, 108, 0.94) 0%, rgba(2, 53, 108, 0.5) 55%, rgba(2, 53, 108, 0.28) 100%);
}
.pb-location:first-child {
    grid-row: span 2;
    min-height: 480px;
}
.pb-location__label {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 1;
    background: #F5B400;
    color: #02356C;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
}
.pb-location__body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 1.5rem;
    padding-right: 4.5rem;
}
.pb-location__name {
    font-family: var(--font-display, "Marcellus", serif);
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.15;
}
.pb-location__address {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    font-size: 0.8rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.85);
}
.pb-location__pin {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    margin-top: 2px;
}
.pb-location__pin svg {
    width: 100%;
    height: 100%;
}
.pb-location__arrow {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 1;
    width: 46px;
    height: 46px;
    background: #F5B400;
    color: #02356C;
    display: grid;
    place-items: center;
    transition: transform 0.2s ease;
}
.pb-location__arrow svg {
    width: 20px;
    height: 20px;
}
.pb-location:hover .pb-location__arrow {
    transform: translateX(4px);
}
@media (max-width: 768px) {
    .pb-locations__grid {
        grid-template-columns: 1fr;
    }
    .pb-location:first-child {
        grid-row: auto;
        min-height: 300px;
    }
}
