/*
Theme Name: Paper Blog v3
Theme URI: https://www.paper.id/blog/
Author: Paper.id Team
Author URI: https://www.paper.id/blog/
Description: Theme for Paper.id official blog
Text Domain: Paper.id
Version: 3.1
*/


/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
    /* === BRAND PALETTE === */
    --color-navy-900: #001636;
    --color-navy-800: #001c44;
    --color-navy-700: #0d2056;
    --color-navy-600: #17348f;
    --color-navy-500: #1e60b6;
    --color-cyan-500: #2fadec;
    --color-cyan-400: #32a3e9;
    --color-cyan-200: #9ee3f3;
    --color-sky-100:  #e8f3f7;
    --color-sky-50:   #b4dbf4;
    --color-ink:      #1d1c1e;
    --color-muted:    #bdcfd6;
    --color-white:    #FFFFFF;

    /* === SEMANTIC ALIASES === */
    --color-bg:           var(--color-white);
    --color-bg-soft:      var(--color-sky-100);
    --color-text:         var(--color-navy-700);
    --color-text-muted:   var(--color-muted);
    --color-heading:      var(--color-navy-700);
    --color-link:         var(--color-navy-500);
    --color-link-hover:   var(--color-cyan-500);
    --color-accent:       var(--color-cyan-500);
    --color-border-soft:  rgb(13 32 86 / 0.08);

    /* === BRAND GRADIENTS === */
    --gradient-hero:   linear-gradient(180deg, var(--color-white) 0%, var(--color-sky-100) 100%);
    --gradient-footer: linear-gradient(180deg, var(--color-navy-800) 16.96%, var(--color-navy-600) 56.17%, var(--color-navy-500) 82.31%, var(--color-cyan-500) 118.76%, var(--color-sky-50) 147.67%);

    /* === TYPOGRAPHY === */
    --font-display: 'Sora',    system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-body:    'Figtree', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-serif:   'Literata', Georgia, serif;

    --fs-xs:   0.875rem;
    --fs-sm:   1rem;
    --fs-base: 1.125rem;
    --fs-md:   1.25rem;
    --fs-lg:   1.375rem;
    --fs-xl:   1.5rem;
    --fs-2xl:  1.75rem;
    --fs-3xl:  2.5rem;
    --fs-4xl:  3rem;
    --fs-5xl:  3.375rem;
    --fs-6xl:  4rem;

    --fw-regular:  400;
    --fw-medium:   500;
    --fw-semibold: 600;
    --fw-bold:     700;

    --lh-tight:   1.2;
    --lh-snug:    1.4;
    --lh-normal:  1.6;
    --lh-relaxed: 1.8;

    /* === SPACING (4px grid) === */
    --space-1:  0.25rem;
    --space-2:  0.5rem;
    --space-3:  0.75rem;
    --space-4:  1rem;
    --space-5:  1.25rem;
    --space-6:  1.5rem;
    --space-8:  2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;

    /* === RADIUS === */
    --radius-sm:   0.5rem;
    --radius-md:   1.25rem;
    --radius-lg:   1.5rem;
    --radius-pill: 9999px;

    /* === SHADOWS === */
    --shadow-card: 0 1rem 2.5rem rgb(0 28 68 / 0.08);
    --shadow-soft: 0 0.25rem 1rem rgb(0 28 68 / 0.06);

    /* === LAYOUT / MOTION === */
    --container-max:   1200px;
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --navbar-offset:   80px;

    /* === LEGACY ALIASES === */
    --legacy-green:      #93c854;
    --legacy-green-pale: #d0e4a6;
    --legacy-blue:       #4195d5;
    --legacy-blue-dark:  #133f5d;
    --legacy-blue-link:  #257ab4;
    --legacy-text:       #415767;
    --legacy-navy:       #083e5e;
    --legacy-gray:       #8695a1;
    --legacy-near-black: #212529;
    --legacy-bg-soft:    #f7fbfd;
    --legacy-gray-pale:  #e0e7ed;

    /* === V4 TYPOGRAPHY TOKENS === */
    --text-heading-color:    #0D2056;
    --text-body-color:       #1D1C1E;
    --text-line-height-sm:   1.2;
    --text-line-height-md:   1.5;
    --text-line-height-lg:   1.6;
    --text-heading-lg:       52px;
    --text-heading-md:       40px;
    --text-heading-sm:       34px;
    --text-heading-xs:       24px;
    --text-body-xxl:         26px;
    --text-body-xl:          24px;
    --text-body-lg:          20px;
    --text-body-md:          16px;
    --text-body-sm:          15px;
}

/* :root responsive overrides */
@media (max-width: 1024px) {
    :root {
        --text-heading-lg: 46px;
        --text-body-xxl:   24px;
        --text-body-xl:    23px;
    }
}

@media (max-width: 768px) {
    :root {
        --text-heading-lg: 42px;
        --text-heading-md: 36px;
        --text-heading-sm: 30px;
        --text-heading-xs: 24px;
        --text-body-xxl:   22px;
        --text-body-xl:    20px;
        --text-body-lg:    18px;
        --text-body-md:    16px;
        --text-body-sm:    14px;
    }
}

@media (max-width: 480px) {
    :root {
        --text-heading-lg: 38px;
        --text-heading-md: 32px;
        --text-heading-sm: 28px;
        --text-body-xxl:   20px;
        --text-body-xl:    18px;
        --text-body-lg:    17px;
        --text-body-md:    15px;
        --text-body-sm:    12px;
    }
}


/* ============================================================
   2. BASE & RESET
   ============================================================ */
html, body { margin: 0 !important; }

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Figtree', sans-serif;
    color: #0D2056;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h2 {
    font-family: 'Sora', sans-serif;
    color: #0D2056;
    line-height: 130%;
    letter-spacing: -0.8px;
}

a {
    text-decoration: none;
    color: var(--color-cyan-500);
}

p {
    margin-bottom: 0.5rem;
}


/* ============================================================
   3. UTILITIES
   ============================================================ */
.clear       { clear: both; }
.title-center { text-align: center; }
.hidden      { display: none; }

.text-left    { text-align: left; }
.text-center  { text-align: center; }
.text-right   { text-align: right; }
.text-justify { text-align: justify; }


/* ============================================================
   4. LAYOUT
   ============================================================ */
.container {
    padding-left: 0;
    padding-right: 0;
}

.inner-container {
    width: 100%;
    max-width: 800px;
}

.wrap-heading {
    padding-top: 0;
    padding-bottom: 2rem;
}

.wrap-heading-cover,
.heading .wrap-heading,
.main-content .wrap-content,
.post-cta .wrap-banner,
.footer-social .post-social {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.col-xl-6.main-wrap {
    padding-top: 7rem;
}

.left-sidebar.sidebar {
    padding: 10rem 3.5rem 0 1.5rem;
}


/* ============================================================
   5. HEADER (Legacy)
   ============================================================ */
header li {
    height: 37px;
}

header li a {
    font-size: 16px;
    margin: 0 10px;
    padding: 8px 0;
    color: var(--legacy-text);
    font-weight: 600;
    cursor: pointer;
    display: block;
    transition: all .2s;
}

header li:hover a {
    color: var(--legacy-green-pale) !important;
    border-bottom: solid 1px var(--legacy-green-pale);
    padding: 6px 0;
}

.broken_link,
a.broken_link {
    text-decoration: none !important;
}

a.navbar-brand {
    margin-left: 0;
    margin-top: 0;
    padding-left: 0;
    padding-top: 2px;
}

a.navbar-brand img {
    height: 52px;
}

header li.secondary.menu-item {
    margin-left: 1rem;
}

header li.secondary.menu-item:lang(en) {
    margin-left: 2rem;
}

header li.secondary a, header li.primary a {
    background: transparent;
    border: solid 2px var(--legacy-green);
    border-radius: 50px;
    color: var(--legacy-green);
    transition: background 0.3s, color 0.3s;
    cursor: pointer;
    padding: 5px 15px;
    text-transform: uppercase;
    font-size: .9em;
}

header li.secondary:hover a {
    background: var(--legacy-green);
    color: var(--color-white) !important;
}

header li.primary a {
    background: var(--legacy-green);
    color: var(--color-white);
}

header li.primary:hover a {
    background: transparent;
    color: var(--legacy-green) !important;
}

header li.menu-item-has-children {
    position: relative;
}

header li .sub-menu {
    min-width: unset;
    padding: 0;
}

header li.menu-item-has-children > a:after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 5px;
}

header li .sub-menu li {
    width: 180px !important;
    min-width: unset !important;
}

header li .sub-menu li a {
    margin: 0 auto;
    display: block;
    padding: 8px 10px;
}

header li .sub-menu li a:hover {
    background: var(--legacy-green);
    color: var(--color-white) !important;
}

header li.current-menu-item a {
    color: var(--legacy-blue);
}

section.header-archive {
    margin-top: 0.5rem;
}

.archive-search {
    display: flex;
    position: relative;
    justify-content: flex-end;
}

.archive-search .search-icon {
    background: transparent;
    border: 0;
    position: absolute;
    right: 0;
    top: 6px;
    color: var(--legacy-near-black);
    opacity: .5;
}

li.pll-parent-menu-item:nth-child(7) {
    display: none;
}


/* ============================================================
   6. NAVBAR
   ============================================================ */
.navbar,
.navbar *,
.navbar *::before,
.navbar *::after {
    box-sizing: border-box;
}

.navbar {
    position: fixed;
    padding: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    background: transparent;
    transition: all 0.3s ease;
}

.navbar.is-sticky {
    max-width: 1200px;
    margin: 0 auto;
    top: 8px;
    border-radius: 28px;
    border: 3px solid #E8F3F7;
    background: rgba(255, 255, 255, 0.9);
    transition: background 0.4s ease;
}

.navbar__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    transition: max-width 0.4s ease;
}

.navbar.is-sticky .navbar__container {
    max-width: 1100px;
}

.navbar__logo {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    font-size: 20px;
    color: #1a1a1a;
    text-decoration: none;
}

.navbar__menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    width: 100%;
    gap: 38px;
}

.navbar__item {
    position: relative;
}

.navbar__item.--mobile {
    display: none;
}

.navbar__link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0;
    font-size: var(--text-body-md);
    font-family: "Figtree", sans-serif;
    color: var(--text-body-color);
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    transition: color 0.2s ease;
}

.navbar__icon {
    color: #2fadec;
    font-family: "Figtree", sans-serif;
    font-size: 18px;
    font-weight: 400;
    transition: transform 0.2s ease;
}

.navbar__dropdown {
    position: fixed;
    top: calc(var(--navbar-offset, 80px) + 3px);
    left: 50%;
    transform: translate(-50%, 16px);
    width: min(770px, calc(100vw - 32px));
    box-sizing: border-box;
    border-radius: 11.499px;
    border: 1.5px solid #E8F3F7;
    padding: 8px;
    background: #FFF;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0s linear 0.24s;
    will-change: opacity, transform;
    z-index: 1001;
}

.navbar__dropdown-group {
    padding: 8px 16px 4px 20px;
}

.navbar__dropdown-group--alt {
    border-radius: 7px;
    background: #EFF5F7;
}

.navbar__dropdown-label {
    color: #2FADEC;
    font-family: 'Figtree', sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: var(--text-line-height-md);
    text-transform: capitalize;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.navbar__dropdown-label__arrow {
    display: inline-flex;
    align-items: center;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.navbar__dropdown-label__arrow img {
    width: 12px;
    height: 12px;
}

a.navbar__dropdown-label:hover .navbar__dropdown-label__arrow {
    opacity: 1;
    transform: translateX(0);
}

.navbar__dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    padding: 8px 0 14px;
    border-bottom: 1px dashed #E1EDF2;
}

.navbar__dropdown-group:nth-last-child(2) .navbar__dropdown-grid {
    border-bottom: none;
    padding-bottom: 23px;
}

.navbar__dropdown.companyMenu .navbar__dropdown-grid {
    border-bottom: none;
}

.navbar__dropdown-item {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    line-height: var(--text-line-height-md);
    color: var(--text-heading-color);
    font-family: 'Figtree', sans-serif;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.2s ease;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.dropdown-item__icon img {
    width: 31px;
    height: 31px;
    object-fit: contain;
    transition: opacity 0.3s ease-in-out;
}

.dropdown-item__content {
    display: flex;
    flex-direction: column;
}

.dropdown-item__title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-item__title p {
    font-size: 13px;
    font-weight: 600;
    line-height: 130%;
    color: var(--text-heading-color);
    margin: 0;
    text-transform: capitalize;
}

.dropdown-item__subtitle {
    font-size: 12px;
    color: #6B7D8C;
    line-height: 130%;
    white-space: nowrap;
}

.dropdown-item__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-5px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.dropdown-item__arrow img {
    width: 12px;
    height: 10px;
}

.navbar__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.navbar__actions.--mobile {
    display: none;
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
    background: var(--Navy-Blue, #0D2056);
    width: 56px;
    height: 36px;
    flex-shrink: 0;
    border: none;
    cursor: pointer;
    z-index: 1002;
}

.navbar__toggle-icon,
.navbar__toggle-icon::before,
.navbar__toggle-icon::after {
    width: 18px;
    height: 2px;
    background: #FFF;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar__toggle-icon {
    position: relative;
}

.navbar__toggle-icon::before,
.navbar__toggle-icon::after {
    content: '';
    position: absolute;
    left: 0;
}

.navbar__toggle-icon::before { top: -5px; }
.navbar__toggle-icon::after  { top: 5px; }

.navbar__toggle[aria-expanded="true"] .navbar__toggle-icon {
    background: transparent !important;
}

.navbar__toggle[aria-expanded="true"] .navbar__toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.navbar__toggle[aria-expanded="true"] .navbar__toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Navbar — light variant */
body.light .navbar__link {
    color: #FFF;
}

body.light .navbar.is-sticky .navbar__link {
    color: var(--text-body-color);
}

body.light .navbar__link:hover,
body.light .navbar.is-sticky .navbar__link:hover {
    color: #2FADEC;
}

body.light .navbar__btn.btn__dark {
    background: linear-gradient(180deg, #FFF 0%, #9EE3F3 62.32%, #32A3E9 113.09%);
    color: var(--text-heading-color);
}

body.light .navbar.is-sticky .navbar__btn.btn__dark {
    background: linear-gradient(180deg, #1E60B6 -36.5%, #17348F 56.1%, #001636 131.81%);
    color: #FFF;
}

body.light .navbar__btn svg path {
    stroke: #2FADEC;
}

body.light .navbar.is-sticky .navbar__btn svg path {
    stroke: #9EE3F3;
}

body.light .navbar__toggle {
    background: #FFF;
}

body.light .navbar__toggle .navbar__toggle-icon,
body.light .navbar__toggle .navbar__toggle-icon::before,
body.light .navbar__toggle .navbar__toggle-icon::after {
    background: #0D2056;
}

body.light .navbar.is-sticky .navbar__toggle {
    background: #0D2056;
}

body.light .navbar.is-sticky .navbar__toggle-icon,
body.light .navbar.is-sticky .navbar__toggle-icon::before,
body.light .navbar.is-sticky .navbar__toggle-icon::after {
    background: #FFF;
}

body.light .navbar__toggle.is-open {
    background: #0D2056;
}

body.light .navbar__toggle.is-open .navbar__toggle-icon::before,
body.light .navbar__toggle.is-open .navbar__toggle-icon::after {
    background: #FFF;
}


/* ============================================================
   7. HOME HERO
   ============================================================ */

/* Typography baseline for home sections */
.home,
.home .post-content h3,
.home .post-content h3 a,
.home .section-header h2,
.home .post-excerpt,
.home .post-date {
    font-family: var(--font-body);
}

.home .section-cta a {
    color: var(--color-navy-500);
    font-family: var(--font-display);
    font-weight: var(--fw-semibold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    transition: color var(--transition-base);
}

.home .section-cta a:hover {
    color: var(--color-cyan-500);
}

.home-hero-wrap {
    position: relative;
    isolation: isolate;
    background: #FFFFFF;
}

.home-hero-wrap__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: url("https://storage.googleapis.com/clevertap-assets/paper-blog/light-blue-gradient-bg.svg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% 100%;
    pointer-events: none;
}

.home .home-intro,
.home-intro {
    position: relative;
    background: transparent;
    padding: 6rem 0 1.5rem;
    margin: 0;
}

.home-intro__container {
    position: relative;
    z-index: 1;
}

.home-intro__inner {
    max-width: 1020px;
    margin-inline: auto;
    text-align: center;
    padding: 2rem 1rem 0;
}

.home .home-intro__title,
.home-intro__title {
    font-family: 'Sora', sans-serif;
    font-weight: 400;
    font-size: var(--text-heading-lg);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--color-navy-700);
    margin: 0 0 1rem;
}

.home .home-intro__tagline,
.home-intro__tagline {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(16px, 1.4vw, 20px);
    line-height: 1.4;
    color: var(--color-ink);
    margin: 0 auto;
    max-width: 920px;
}

/* Pre-footer CTA */
.home-cta {
    background: linear-gradient(180deg, #FFFFFF 44.87%, #9EE3F3 113.33%, #32A3E9 125%);
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    margin-bottom: -1.5rem;
    position: relative;
    z-index: 2;
    padding: 6rem 0 12rem;
    overflow: hidden;
}

.home-cta .container {
    position: relative;
    z-index: 1;
}

.home-cta__flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6rem;
}

.home-cta__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--fw-bold);
    color: var(--color-navy-700, #0D2056);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0;
    font-weight: 400;
}

.home-cta__highlight {
    position: relative;
    display: inline-block;
    font-family: 'Literata', serif;
    font-style: italic;
    font-weight: 400;
    color: #0D2056;
    isolation: isolate;
}

.home-cta__highlight::after {
    content: '';
    display: block;
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 99%;
    height: 2.3px;
    background-color: #2FADEC;
    border-radius: 2px;
    transform: rotate(-0.8deg);
    z-index: -1;
    pointer-events: none;
}

.home-cta__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.home-cta__text {
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: var(--color-navy-700, #0D2056);
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

.home-cta__decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.home-cta__supergraphic {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    aspect-ratio: 971 / 373;
    background: url('https://storage.googleapis.com/clevertap-assets/paper-blog/cta-supergraphic.webp') no-repeat right bottom / cover;
    filter: blur(1.5px);
}

.home-cta__button .btn__icon {
    width: 19px;
    height: 14px;
}


/* ============================================================
   8. CATEGORY PILLS
   ============================================================ */
.home .category-pills,
.category-pills {
    background: transparent;
    border: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 2.5rem;
    max-width: 980px;
    margin-inline: auto;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 1.4rem;
    border-radius: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.55);
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 300;
    text-decoration: none;
    border: none;
    box-shadow: none;
    transition: color 0.2s ease;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.category-pill:hover,
.category-pill:focus-visible {
    background: transparent;
    color: #FFF;
    border-color: transparent;
    transform: none;
}

.category-pills__scroll {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 2px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start;
}

.category-pills__scroll::-webkit-scrollbar {
    display: none;
}

.category-pills__scroll.is-overflow {
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 44px, black calc(100% - 44px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, black 44px, black calc(100% - 44px), transparent 100%);
}

.category-pills__scroll.is-overflow.is-at-start {
    -webkit-mask-image: linear-gradient(to right, black 0, black calc(100% - 44px), transparent 100%);
    mask-image: linear-gradient(to right, black 0, black calc(100% - 44px), transparent 100%);
}

.category-pills__scroll.is-overflow.is-at-end {
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 44px, black 100%);
    mask-image: linear-gradient(to right, transparent 0, black 44px, black 100%);
}

.category-pills__scroll.is-overflow.is-at-start.is-at-end {
    -webkit-mask-image: none;
    mask-image: none;
}

.category-pills__nav {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(13, 32, 86, 0.2);
    background: #fff;
    color: #0D2056;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
    padding: 0;
}

.category-pills__nav:hover {
    background: #f0f4ff;
    border-color: rgba(13, 32, 86, 0.4);
}

.category-pills__nav:disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}


/* ============================================================
   9. LATEST CAROUSEL
   ============================================================ */
.latest-carousel {
    padding: 3rem 0 2rem;
    background: transparent;
}

.latest-carousel__heading {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--color-navy-700);
    margin: 0 0 2.5rem;
}

.latest-carousel__stage {
    position: relative;
}

.latest-carousel__viewport {
    position: relative;
    overflow: hidden;
}

.latest-carousel__track {
    position: relative;
    min-height: 400px;
}

.latest-carousel__slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 4rem);
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 600ms ease;
    pointer-events: none;
}

.latest-carousel__slide.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.latest-carousel__image {
    display: block;
    width: 100%;
    aspect-ratio: 685 / 384;
    border-radius: 24px;
    overflow: hidden;
    background: var(--color-sky-100);
}

.latest-carousel__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.latest-carousel__content {
    padding: 1rem 0;
}

.latest-carousel__title {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--color-navy-700);
    margin: 0 0 1rem;
}

.latest-carousel__title a {
    color: inherit;
    text-decoration: none;
}

.latest-carousel__title a:hover {
    color: var(--color-cyan-500);
}

.latest-carousel__excerpt {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-ink);
    margin: 0 0 1.75rem;
}

.latest-carousel__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 18px;
    line-height: 1.33;
    color: var(--color-navy-700);
    text-decoration: none;
    transition: color 0.25s ease, gap 0.25s ease;
}

.latest-carousel__cta img {
    height: 14px;
    width: 19px;
    transition: transform 0.25s ease;
}

.latest-carousel__cta:hover {
    color: var(--color-cyan-500);
    gap: 14px;
}

.latest-carousel__cta:hover img {
    transform: translateX(2px);
}

.latest-carousel__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-top: 2rem;
}

.latest-carousel__dot {
    position: relative;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: var(--color-sky-50);
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.25s ease;
}

.latest-carousel__dot:not(:last-child) {
    margin-right: 44px;
}

.latest-carousel__dot:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 150%;
    width: 31px;
    height: 1px;
    background: var(--color-sky-50);
    transform: translateY(-50%);
    pointer-events: none;
}

.latest-carousel__dot.is-active {
    background: var(--color-cyan-500);
}


/* ============================================================
   10. LATEST GRID
   ============================================================ */
.latest-grid {
    padding: 3rem 0 6rem;
    background: transparent;
}

.latest-grid__inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 2rem);
}

.latest-grid__card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgb(13 32 86 / 0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.latest-grid__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgb(13 32 86 / 0.12);
}

.latest-grid__thumb {
    display: block;
    position: relative;
    aspect-ratio: 388 / 194;
    overflow: hidden;
    background: var(--color-sky-100);
    -webkit-mask-size: 100% auto;
    mask-size: 100% auto;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: top center;
    mask-position: top center;
}

.latest-grid__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.latest-grid__card:hover .latest-grid__thumb img {
    transform: scale(1.04);
}

.latest-grid__body {
    padding: 1.5rem 2rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.latest-grid__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: var(--text-body-lg);
    line-height: 1.4;
    letter-spacing: -0.01em;
    color: var(--color-navy-700);
    margin: 0;
}

.latest-grid__title a {
    color: inherit;
    text-decoration: none;
}

.latest-grid__title a:hover {
    color: var(--color-cyan-500);
}

.latest-grid__excerpt {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: var(--text-body-md);
    line-height: 1.4;
    color: var(--color-ink);
    margin: 0;
}


/* ============================================================
   11. HOME — POST GRID & SECTIONS
   ============================================================ */
.wrap-post-content {
    padding: 1.4rem 1.8rem;
    background: var(--color-white);
}

.post-content h3 {
    font-size: var(--text-body-lg);
    font-weight: 400;
    line-height: 1.3em;
    color: #2FADEC;
}

.post-content h3 a {
    color: inherit;
    transition: .3s all;
}

.post-content h3:hover a {
    color: #0D2056;
}

.post-content.overlay-content {
    position: absolute;
    bottom: 0;
    padding: 1rem 2rem;
    color: var(--color-white);
    z-index: 999;
}

.post-content.overlay-content h3 {
    font-size: var(--text-heading-md);
    color: var(--color-white);
}

.post-content.overlay-content h3:hover a {
    color: #2FADEC;
}

.post-excerpt {
    font-family: 'Figtree', sans-serif;
    font-size: var(--text-body-lg);
    color: inherit;
}

.post-img.post-thumbnail {
    height: 250px;
}

section.selected-category-posts {
    padding: 6rem 1rem 3rem;
    margin: 0;
}

section.media-gallery {
    padding: 4rem 0 2rem;
}

.media-gallery .section-header {
    margin-bottom: 2rem;
}

/* Gallery container — dashed border + grid */
.media-gallery figure.wp-block-gallery {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 0 !important;
    flex-wrap: unset !important;
    justify-content: unset !important;
    overflow: hidden;
    position: relative;
    border-radius: 24px;
    margin: 0 !important;
    padding: 0 !important;
    background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='100%25' height='100%25' fill='none' rx='24' ry='24' stroke='%232FADEC' stroke-width='1' stroke-dasharray='6 6' stroke-dashoffset='0' stroke-linecap='square'/%3E%3C/svg%3E");
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

/* Each figure = fixed cell */
.media-gallery figure.wp-block-image {
    width: auto !important;
    display: flex !important;
    align-items: center;
    justify-content: center !important;
    min-height: 110px;
    position: relative;
    margin: 0 !important;
    padding: 1rem !important;
    box-sizing: border-box;
    align-self: auto !important;
    flex-grow: unset !important;
    text-align: center;
}

/* Vertical dashed divider — right side, except last column */
.media-gallery figure.wp-block-image:not(:nth-child(4n))::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background-image: linear-gradient(to bottom, rgba(47, 173, 236, 0.4) 50%, transparent 50%);
    background-size: 1px 10px;
    background-repeat: repeat-y;
}

/* Horizontal dashed divider — bottom, except last row */
.media-gallery figure.wp-block-image:not(:nth-last-child(-n+4))::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(47, 173, 236, 0.4) 50%, transparent 50%);
    background-size: 10px 1px;
    background-repeat: repeat-x;
}

.media-gallery figure.wp-block-image a {
    justify-content: center !important;
}


.media-gallery figure.wp-block-image img {
    transition: .3s all;
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 60px !important;
    margin: 0 auto !important;
    display: block !important;
    object-fit: contain !important;
}

.media-gallery figure.wp-block-image img:hover {
    transform: scale3d(1.05, 1.05, 1);
}

.media-gallery figure li,
.media-gallery li {
    list-style: none;
}

.home section.media-gallery .section-header h2 {
    text-align: center;
}

/* Home post grid cards */
.home .post-grid-item.post-item {
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.home .post-grid-item .wrap-post-content {
    padding: var(--space-6) var(--space-6) var(--space-8);
}

.home .post-grid-item .post-content h3,
.home .post-grid-item .post-content h3 a {
    font-family: var(--font-display);
    color: var(--color-navy-700);
    font-size: var(--fs-md);
    height: auto;
    min-height: 3.2em;
}

.home .post-grid-item .post-excerpt {
    font-family: var(--font-body);
    color: var(--color-navy-500);
    font-size: var(--fs-sm);
    line-height: var(--lh-normal);
    height: auto;
    max-height: 4.8em;
    overflow: hidden;
    margin-bottom: var(--space-4);
}

.home .post-grid-item .post-date {
    color: var(--color-cyan-500);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.home .post-grid-item.post-first-item .post-content.overlay-content h3,
.home .post-grid-item.post-first-item .post-content.overlay-content h3 a {
    color: var(--color-white);
}
.list-posts.row {
    justify-content: space-between;
    gap: 1rem;
}

/* Post grid item (news-card style) */
.post-grid-item.post-item {
    min-width: calc((80% - 2rem) / 3);
    max-width: 380px;
    flex-shrink: 0;
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    padding: 1.3rem;
    cursor: pointer;
    transition: background 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.post-grid-item.post-item:hover {
    background: #E8F3F7;
}

.post-grid-item.post-item .post-img {
    height: 200px;
    border-radius: 8px;
    transition: box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.post-grid-item.post-item .post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.post-grid-item.post-item:hover .post-img {
    box-shadow: 0px 9px 9px 0px #2FADEC33;
}

.post-grid-item.post-item .wrap-post-content {
    padding: 0;
    background: transparent;
}

.post-grid-item.post-item .post-content {
    padding: 2rem 0.5rem 0;
    text-align: left;
}

.post-grid-item.post-item .post-content h3 {
    line-height: 1.3;
    font-weight: 500;
    font-size: var(--text-body-lg, 1.125rem);
    color: #0D2056;
    margin-bottom: 1.2rem;
    overflow: hidden;
}

.post-grid-item.post-item .post-content p {
    font-size: var(--text-body-md, 1rem);
    font-weight: 400;
    color: #1D1C1E;
    line-height: 1.3;
    margin-bottom: 2rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-grid-item.post-item .post-content .read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--Navy-Blue, #0D2056);
    font-family: Figtree;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    text-decoration: none;
    transition: gap 0.2s ease-in-out;
}

.post-grid-item.post-item .post-content .read-more-btn img {
    width: 19px;
    height: 14px;
}

.post-grid-item.post-item .post-content .read-more-btn:hover img {
    animation: arrow-bounce 0.8s ease-in-out infinite;
}

@keyframes arrow-bounce {
    0%, 100% { transform: translateX(0); }
    50%       { transform: translateX(6px); }
}

.post-grid-item .post-content h3 {
    height: 52px;
    margin: 0 0 1rem;
}

.post-grid-item .post-excerpt {
    height: 120px;
    margin-bottom: 2.5rem;
}

/* Post meta */
.post-date,
.post-author,
.crp_date {
    color: #0D2056;
    font-size: var(--fs-xs);
}


/* ============================================================
   12. SECTION HEADERS
   ============================================================ */
.section-header {
    margin-bottom: 1rem;
}

.section-header h2,
.crp_related h3,
.post-social h5,
h2.widgettitle {
    font-size: var(--text-heading-md);
    font-weight: 400;
    color: #0D2056;
}

.section-header.section-header-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-header.section-header-inline h2 {
    margin-bottom: 0;
}

.section-cta a {
    font-size: 16px;
    font-weight: 600;
    color: var(--legacy-blue);
    text-decoration: underline;
    transition: .3s all;
}

.section-cta a:hover {
    color: var(--legacy-blue-dark);
}


/* ============================================================
   13. BUTTONS
   ============================================================ */
.btn {
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    font-size: var(--text-body-md);
    min-width: 100px;
    padding: 0 8px;
}

.btn__dark {
    display: inline-flex;
    align-items: center;
    border-radius: 25.647px;
    font-family: 'Figtree', sans-serif;
    font-weight: 500;
    background: linear-gradient(180deg, #1E60B6 -36.5%, #17348F 56.1%, #001636 131.81%);
    color: #FFF;
    --stroke-0: #FFF;
    min-height: 44px;
    font-size: 16px;
    text-align: center;
    font-style: normal;
    line-height: normal;
    text-decoration: none;
    position: relative;
    transition: background 0.4s ease;
}

.btn__dark.btn:hover,
.btn__dark.btn:focus,
.btn__dark.btn:active,
.btn__dark.btn.active {
    color: #FFF;
    background: linear-gradient(180deg, #1E60B6 -36.5%, #17348F 56.1%, #001636 131.81%);
    border-color: transparent;
}

.btn__light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 25.647px;
    background: var(--Light-Grey02, #E8F3F7);
    color: var(--Dark-Blue, #0D2056);
    min-height: 44px;
    font-size: 16px;
    min-width: 100px;
    text-align: center;
    font-family: 'Figtree', sans-serif;
    text-decoration: none;
    font-style: normal;
    line-height: normal;
    position: relative;
    transition: background 0.4s ease;
}

.btn__light.btn:hover,
.btn__light.btn:focus,
.btn__light.btn:active,
.btn__light.btn.active {
    color: var(--Dark-Blue, #0D2056);
    background: var(--Light-Grey03, #D1E6F2);
    border-color: transparent;
}

.btn__content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-left: 1rem;
    padding-right: 1rem;
}

.btn__icon {
    width: 19px;
}

.btn__icon.--1 {
    position: absolute;
}

.section-cta-btn {
    padding: 9px 24px;
    border-radius: 50px;
    line-height: 24px;
    min-height: auto;
    min-width: 0;
}

.section-cta-btn .btn__content {
    gap: 13px;
    padding: 0;
}

.section-cta-btn .btn__icon {
    width: 19px;
    height: 14px;
}

.section-cta-btn--mobile {
    display: none;
}

/* .pb-btn component */
.pb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 0;
    border-radius: 9999px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.pb-btn__label {
    display: inline-block;
}

.pb-btn__icon {
    width: 18px;
    height: auto;
    flex-shrink: 0;
}

.pb-btn--primary {
    background: linear-gradient(180deg, #1E60B6 -36.5%, #17348F 56.1%, #001636 131.81%);
    color: #FFFFFF;
    padding: 0.875rem 1.5rem;
}

.pb-btn--primary:hover,
.pb-btn--primary:focus-visible {
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 0.5rem 1.25rem rgb(13 32 86 / 0.25);
}

.pb-btn--secondary {
    background: var(--color-sky-100);
    color: var(--color-navy-700);
    padding: 0.875rem 1.5rem;
}

.pb-btn--secondary:hover,
.pb-btn--secondary:focus-visible {
    background: #d1e6f2;
    color: var(--color-navy-700);
}

.pb-btn--pill {
    background: transparent;
    color: var(--color-muted);
    border: 1px solid var(--color-sky-100);
    font-weight: 400;
    font-size: 16px;
    padding: 9px 20px;
}

.pb-btn--pill:hover,
.pb-btn--pill:focus-visible,
.pb-btn--pill.is-active {
    border-color: var(--color-cyan-500);
    background: var(--color-cyan-500);
    color: #fff;
}

.pb-btn--pill.is-active:hover,
.pb-btn--pill.is-active:focus-visible {
    background: #1f9ad8;
    color: #FFFFFF;
    border-color: #1f9ad8;
}


/* ============================================================
   14. ARCHIVE
   ============================================================ */
section.wrap-archive {
    padding: 3rem 0 4rem;
}

.wrap-archive .post-item {
    visibility: hidden;
    will-change: transform;
    left: 0px;
    opacity: 0;
    transform: translate(0px, 0px) scale(0.001);
    transition-duration: 1000ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-property: transform, opacity;
    display: grid;
    order: 999;
    height: 1px;
}

.wrap-archive .post-item.show-post {
    visibility: visible;
    will-change: transform;
    left: 0px;
    opacity: 1;
    transform: translate(0px, 0px) scale(1);
    transition-duration: 1000ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-property: transform, opacity;
    height: auto;
    order: 1;
}

.wrap-loadmore {
    text-align: center;
    margin-top: 2rem;
}

button.loadmore {
    cursor: pointer;
    border: none;
    padding: 0;
}

.archive-intro .home-intro__inner {
    padding-bottom: 2rem;
}

.archive-search-bar {
    width: 100%;
    max-width: 560px;
    margin: 1.5rem auto 0;
}

.archive-search-bar__inner {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    padding: 10px 10px 10px 20px;
    gap: 8px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.archive-search-bar__icon {
    flex-shrink: 0;
}

.archive-search-bar__input {
    flex: 1;
    border: none;
    outline: none;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    color: #1D1C1E;
    background: transparent;
    min-width: 0;
}

.archive-search-bar__input::placeholder {
    color: #868FAA;
}

.archive-search-bar__btn {
    flex-shrink: 0;
    background: linear-gradient(180deg, #1E60B6 -36.5%, #17348F 56.1%, #001636 131.81%);
    color: #fff;
    font-family: 'Figtree', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    padding: 6px 18px;
    cursor: pointer;
    white-space: nowrap;
    line-height: unset;
    transition: opacity 0.2s ease;
}

.archive-search-bar__btn:hover {
    opacity: 0.9;
}


/* ============================================================
   15. SINGLE POST
   ============================================================ */
.heading-cover {
    overflow: hidden;
    position: relative;
    margin-bottom: 2rem;
}

.heading-cover img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* Breadcrumb */
.post-breadcrumb {
    font-family: 'Figtree', sans-serif;
    font-size: var(--fs-xs);
    line-height: 1.4;
    margin-bottom: 1rem;
    padding-top: 0;
}

.post-breadcrumb__item {
    /* color: #868FAA; */
    text-decoration: none;
}

.post-breadcrumb__item--current {
    color: #0D2056;
}

.post-breadcrumb__sep {
    color: #1D1C1E;
}

.heading-title {
    margin-bottom: 1.5rem;
}

.heading-title h1 {
    font-family: 'Sora', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: -0.8px;
    color: #0D2056;
    margin-bottom: 0.7em;
}

.heading-author {
    display: flex;
    align-items: center;
}

.wrap-avatar {
    border-radius: 50%;
    overflow: hidden;
}

.post-avatar {
    margin-right: 1rem;
}

.heading-social.post-social {
    text-align: right;
    margin-left: auto;
}

.post-social__icons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.post-social__icon {
    display: flex;
    align-items: center;
    color: #D2D2D2;
    transition: color 0.2s ease;
    line-height: 1;
}

.post-social__icon:hover { color: #2FADEC; }

/* Highlights box */
.post-highlights {
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
}

.post-highlights__header {
    background: #2FADEC;
    color: #fff;
    font-family: 'Figtree', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.post-highlights__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.post-highlights__body {
    background: #F6F7F9;
    font-family: 'Figtree', sans-serif;
    font-size: var(--text-body-md);
    line-height: 2;
    color: #1D1C1E;
    padding: 24px;
}

/* Quote block (core/quote) */
blockquote.wp-block-quote {
    margin-block: 1rem;
}
.inner-container .wp-block-quote {
    border-radius: 10px;
    background: #F6F7F9;
    padding: 1.5rem;
    margin-inline: 0;
    margin-block: 2rem 1rem;
    font-family: var(--font-body);
    font-size: var(--text-body-md);
    line-height: 1.5;
    color: var(--color-navy-800);
}

.inner-container .wp-block-quote p {
    margin: 0 0 0.5rem;
}

.inner-container .wp-block-quote p:last-child {
    margin-bottom: 0;
}

.inner-container .wp-block-quote cite,
.inner-container .wp-block-quote .wp-block-quote__citation {
    display: block;
    margin-top: 12px;
    font-size: var(--text-body-md);
    color: #1D1C1E;
    font-style: normal;
}

/* Inner content headings */
.inner-container h2,
.inner-container h3,
.inner-container h4,
.inner-container h5,
.inner-container h6 {
    font-family: 'Sora', sans-serif;
}

.inner-container h2 {
    font-size: calc(var(--text-heading-xs) - 2px);
    margin: 32px 0 16px;
    color: #1E1E1E;
    line-height: 1.3;
    font-weight: 500 !important;
}

.inner-container h2 strong,
.inner-container h3 strong,
.inner-container h4 strong {
    font-weight: inherit;
}

.inner-container h3 {
    font-size: calc(var(--bs-body-font-size) + 2px);
    font-weight: 500 !important;
}

.inner-container h4 {
    font-size: calc(var(--bs-body-font-size) + 2px);
    font-weight: 500 !important;
}

.inner-container h5 {
    font-size: 19px;
    font-weight: 400;
}

.inner-container h6 {
    font-size: 17px;
}

.inner-container figure {
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.inner-container .wp-caption {
    max-width: 100%;
}

.main-content {
    color: #1D1C1E;
    line-height: 2;
}

.main-content figure {
    text-align: left;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.main-content figure img {
    border-radius: 20px;
}

.wrap-banner li {
    list-style: none;
}

.wrap-banner {
    position: relative;
}

.wrap-banner, .wrap-banner figure {
    text-align: center;
}

.wrap-banner img {
    width: 100%;
}

.related-post a {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--legacy-blue);
    display: block;
}

.related-post.post-item {
    margin-bottom: 1rem;
}

#related-posts {
    border-top: 1px rgba(0,0,0,.2) solid;
    padding: 4rem 0;
}

.post-social li {
    list-style: none;
}

.addtoany_list a:not(.addtoany_special_service)>span {
    border-radius: 50% !important;
    padding: 5px;
}

.addtoany_list.a2a_kit_size_32 a:not(.addtoany_special_service):hover>span {
    background-color: var(--legacy-blue) !important;
}

.post-social h5 {
    font-size: 1.1em;
}

.footer-social .post-social {
    text-align: center;
}

.footer-social {
    margin: 2rem 0;
}

.wp-block-table td, .wp-block-table th {
    font-size: 14px;
    line-height: 1.5;
}

.post-cta {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.post-tags {
    margin-bottom: 2rem;
}

.wp-block-buttons.is-content-justification-center {
    display: flex;
}

.wp-block-buttons>.wp-block-button {
    margin: 1rem;
}

.wp-block-button__link {
    overflow: hidden;
}

.breadcrumbs {
    margin-top: 5rem;
    margin-bottom: 1rem;
}

.single span.post.post-post.current-item {
    display: none;
}

.single span.separator:nth-last-child(2) {
    display: none;
}

.breadcrumbs a {
    color: var(--legacy-blue);
}

.list-tags a {
    color: var(--legacy-navy);
    background: var(--legacy-gray-pale);
    padding: 5px 7px;
    margin-right: 10px;
    margin-bottom: 15px;
    display: inline-block;
    font-size: .9em;
    border: 0;
    border-radius: 5px;
    line-height: 1;
    transition: all .2s;
}

.list-categories, .list-categories ul {
    padding: 0;
}

ul.list-categories li {
    display: inline;
}

.list-categories a {
    color: var(--legacy-navy);
    background: transparent;
    padding: 5px 7px;
    margin-right: 7px;
    margin-bottom: 11px;
    display: inline-block;
    font-size: .9em;
    border: 1px var(--legacy-navy) solid;
    border-radius: 5px;
    line-height: 1;
    transition: all .2s;
}

#recent-posts-2.widget.widget_recent_entries a:hover,
.yarpp-related.yarpp-related-website a:hover {
    text-decoration: underline;
}

.wp-embed-featured-image.square {
    width: 100%;
    height: auto;
    border: none;
    float: none;
    max-width: unset;
}

.backTop {
    position: fixed;
    bottom: 0;
    right: 0;
    display: inline-block;
    font-size: 2.5em;
    padding: 0;
    margin: 1em;
    color: var(--legacy-blue);
    transition: .3s all;
}

.backTop:hover {
    cursor: pointer;
    color: var(--legacy-blue-dark);
}


/* ============================================================
   16. SIDEBAR
   ============================================================ */
.sidebar {
    padding-left: 31px;
}

.sidebar .ez-toc-wrap-left-text {
    float: none;
}

#sidebar-search-top {
    display: none;
}

.sidebar .related-post a {
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

.sidebar .related-post a figure {
    width: 30%;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 0;
}

.sidebar .related-post a figure img {
    max-width: 100%;
    height: auto;
    transition: .3s all;
}

.sidebar li {
    list-style: none;
}

.sidebar span.crp_title {
    width: 65%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    transition: .3s all;
    font-size: 14px;
    line-height: 1.3;
}

.sidebar span.crp_title:hover {
    color: var(--legacy-blue-dark);
}

.sidebar span.crp_date {
    position: absolute;
    top: 70px;
    margin-left: 35%;
}

.sidebar .related-post.post-item {
    position: relative;
}

.sidebar-banner-wrap {
    position: relative;
    margin-bottom: 2.5rem;
}

.sidebar-banner-wrap img {
    width: 100%;
    max-width: 100%;
    border-radius: 15px;
    transition: .3s all;
}

.sidebar .related-post a figure img:hover,
.sidebar-banner-wrap img:hover {
    transform: scale3d(1.1, 1.1, 1);
}

.sidebar .widget-sidebar-categories {
    margin-bottom: 2rem;
}

#floating-banner {
    display: flex;
    position: fixed;
    bottom: 0;
    right: 0;
    justify-content: flex-end;
    margin-right: 2rem;
    margin-bottom: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: .3s all;
    z-index: 999;
	padding: 0 0.5rem 0.2rem;
}

#floating-banner.show {
    opacity: 1;
    visibility: visible;
}

.floating-banner-wrap {
    width: 440px;
}

.floating-banner-wrap li {
    list-style: none;
    text-align: right;
}

.floating-banner-wrap img {
    max-width: 100%;
    border-radius: 10px;
}

.floating-banner .btn-close {
    position: absolute;
    right: 0;
    margin-top: 5px;
    margin-right: 14px;
    background-color: rgba(255, 255, 255, .5);
    font-size: 8px;
    width: 12px;
    height: 12px;
    min-width: 0;
    padding: 4px;
    border-radius: 50%;
}


/* ============================================================
   17. TABLE OF CONTENTS
   ============================================================ */
h2[id], h3[id] {
    scroll-margin-top: 100px;
}

nav.pb-toc {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 120px !important;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    z-index: 1;
}

nav.pb-toc h2.pb-toc__title {
    color: #0D2056 !important;
    font-family: 'Sora', sans-serif !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    margin: 0 0 1rem 0 !important;
    padding: 0 !important;
    letter-spacing: normal !important;
    text-align: left !important;
}

nav.pb-toc ul.pb-toc__list {
    list-style: none !important;
    padding: 0 0 0 20px !important;
    margin: 0 !important;
    position: relative !important;
    min-height: 50px;
    display: block;
    background: transparent;
    border-left: 2px solid #D9D9D9 !important;
}

nav.pb-toc ul.pb-toc__list::after {
    content: '' !important;
    display: block !important;
    position: absolute !important;
    left: -2px !important;
    top: var(--toc-indicator-top, 0) !important;
    height: var(--toc-indicator-height, 0) !important;
    width: 2px !important;
    background: #2FADEC !important;
    border-radius: 25.647px !important;
    transition:
        top 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        height 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    pointer-events: none;
    z-index: 2;
}

nav.pb-toc ul.pb-toc__list li.pb-toc__item {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    display: block;
    background: transparent;
}

nav.pb-toc ul.pb-toc__list li.pb-toc__item--sub {
    padding-left: 12px !important;
}

nav.pb-toc ul.pb-toc__list li.pb-toc__item a.pb-toc__link {
    display: block !important;
    padding: 8px 0 !important;
    color: rgba(13, 32, 86, 0.5) !important;
    font-family: 'Figtree', sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    text-decoration: none !important;
    transition: color 0.25s ease;
    background: transparent !important;
}

nav.pb-toc ul.pb-toc__list li.pb-toc__item a.pb-toc__link:hover,
nav.pb-toc ul.pb-toc__list li.pb-toc__item a.pb-toc__link.is-active {
    color: #2FADEC !important;
}


/* ============================================================
   18. RECENT POSTS & SKELETON
   ============================================================ */
.single-recent-hero .home-hero-wrap__bg {
    top: 0;
}

.single-recent-posts {
    padding: 8rem 0 6rem;
}

.single-recent-posts__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.single-recent-posts__title {
    font-family: 'Sora', sans-serif;
    font-size: var(--text-heading-sm);
    font-weight: 400;
    color: #0D2056;
    line-height: 1.3;
    letter-spacing: -0.8px;
    margin: 0;
}

.single-recent-posts__grid,
.archive-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.recent-post-card {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 0 4rem rgb(0 0 0 / 7%);
    transition: box-shadow 0.2s ease;
}

.recent-post-card:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    color: inherit;
}

.recent-post-card__image {
    width: 100%;
    aspect-ratio: 2 / 1;
    overflow: hidden;
    position: relative;
}

.recent-post-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.recent-post-card:hover .recent-post-card__image img {
    transform: scale(1.04);
}

.recent-post-card__body {
    padding: 24px 30px;
    background: #fff;
    flex: 1;
}

.recent-post-card__title {
    font-family: 'Sora', sans-serif;
    font-size: var(--text-body-lg);
    font-weight: 400;
    color: #0D2056;
    letter-spacing: -0.24px;
    line-height: 1.35;
    margin: 0 0 8px;
}

.recent-post-card__excerpt {
    font-family: 'Figtree', sans-serif;
    font-size: var(--text-body-md);
    color: #1D1C1E;
    line-height: 1.5;
    margin: 0;
}

@keyframes skeleton-shimmer {
    0%   { background-position: -600px 0; }
    100% { background-position: 600px 0; }
}

.skeleton-shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e4e4e4 50%, #f0f0f0 75%);
    background-size: 1200px 100%;
    animation: skeleton-shimmer 1.4s ease-in-out infinite;
}

.recent-post-card--skeleton {
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    overflow: hidden;
    pointer-events: none;
}

.recent-post-card--skeleton .recent-post-card__image {
    aspect-ratio: 2 / 1;
    width: 100%;
}

.recent-post-card--skeleton .recent-post-card__body {
    padding: 24px 30px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.skeleton-line {
    height: 14px;
    border-radius: 6px;
}

.skeleton-line--title {
    height: 22px;
    width: 80%;
}

.skeleton-line--text {
    width: 100%;
}

.skeleton-line--short {
    width: 55%;
}

.recent-post-card__image::after,
.heading-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #f0f0f0 25%, #e4e4e4 50%, #f0f0f0 75%);
    background-size: 1200px 100%;
    animation: skeleton-shimmer 1.4s ease-in-out infinite;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 1;
}

.recent-post-card__image.img-loaded::after,
.heading-cover.img-loaded::after {
    opacity: 0;
    animation: none;
}


/* ============================================================
   19. LEGACY FOOTER
   ============================================================ */
.footer#main-footer {
    background: var(--gradient-footer);
    color: var(--color-white);
    padding: 3rem 1rem 1rem;
    font-size: 14px;
}

.footer#main-footer .container:after {
    content: '';
    width: 100%;
    height: 1px;
    border-bottom: 1px rgba(255,255,255,.2) solid;
    display: block;
    margin: 0 auto;
    padding-top: 4rem;
}

.footer#main-footer .site-info .container:after {
    display: none;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
}

ul.contact-footer li {
    display: flex;
    margin-bottom: 1.2rem;
}

.footer-widget ul.menu li.new:after {
    content: 'New';
    background: var(--legacy-green);
    color: var(--color-white);
    font-size: 0.7rem;
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
    padding: 2px 6px;
    border-radius: 15px;
    position: relative;
    bottom: 6px;
    margin-left: 3px;
}

ul.contact-footer li span {
    width: 20px;
    margin-right: 1rem;
}

ul.contact-footer li .contact-content {
    width: 80%;
}

ul.contact-footer li span img {
    width: 100%;
}

.footer-nav a {
    color: inherit;
}

.footer#main-footer .footer-nav .container:after {
    padding-top: 2.5rem;
}

.footer-nav figure {
    margin-bottom: 1.8rem;
}

.footer#main-footer h2.wp-block-heading, .footer-widget h5 {
    font-size: 14px;
    font-weight: 600;
}

.wrap-footer-contact-hours {
    display: flex;
}

.footer#main-footer .wp-block-image img {
    height: 56px;
    width: auto;
}

.wrap-contact {
    width: 75%;
}

.footer#main-footer .col-footer:nth-child(2) ul {
    column-count: 2;
    column-gap: 20px;
}

footer .social {
    text-align: center;
}

.footer-widget ul.menu li {
    line-height: 2.5;
}

.wrap-socmed a {
    border: 1px var(--color-white) solid;
    width: 30px;
    height: 30px;
    text-align: center;
    display: inline-flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    margin-right: 5px;
}

.wrap-socmed i {
    font-size: 1em;
}

.footer-middle .footer-widget {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
}

.footer-middle img {
    width: 150px;
}

.wrap-gplay, .security {
    margin: 0 1rem;
}

.wrap-gplay img, .security img {
    max-width: 100%;
}

.security img {
    margin-left: 10px;
}

.security {
    margin-top: 0;
}

.footer#main-footer .footer-middle .container:after {
    padding-top: .5rem;
}

section.footer-middle {
    margin-bottom: 0;
    padding-top: 20px;
}

.footer#main-footer section.footer-nav, .footer#main-footer section.site-info {
    margin-bottom: 0;
}

footer .site-info {
    padding: 1rem 0 0;
}

.site-info-nav ul.menu li {
    display: inline-block;
    line-height: 1;
    margin-left: 1.5rem;
}

.site-info a, .site-info-nav a {
    color: inherit;
}

.site-info-nav {
    text-align: right;
}


/* ============================================================
   20. NEW FOOTER
   ============================================================ */
.footer {
    background-image: url("https://storage.googleapis.com/clevertap-assets/paper-lp/bg-dark-blue.webp");
    background-size: cover;
    background-position: center;
    color: rgba(255, 255, 255, 0.88);
    font-family: "Figtree", sans-serif;
    padding-top: 5.5rem;
    padding-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.footer__sparkle {
    position: absolute;
    top: 0;
    width: 100%;
    height: auto;
    opacity: 0.8;
    background-blend-mode: hard-light;
    mix-blend-mode: overlay;
    z-index: 1;
}

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

.footer a:hover,
.footer a:focus {
    color: #4ecbff;
}

.footer__content {
    max-width: 1200px;
    margin: 3rem auto 4rem;
    position: relative;
    z-index: 2;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.footer__logo img {
    height: 82px;
}

.footer__download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer__download-btn img {
    height: 36px;
}

.footer__body {
    display: grid;
    grid-template-columns: repeat(3, minmax(160px, 1fr));
    gap: 6.25rem;
    min-width: 320px;
}

.footer__menu {
    display: flex;
    flex-direction: column;
    gap: 44px;
}

.footer__menu-group {
    display: flex;
    flex-direction: column;
}

.footer__menu-group.groupCustomerCare,
.footer__menu-group.groupHours {
    max-width: 260px;
}

.footer__menu-label {
    color: var(--Sky-Blue, #2FADEC);
    font-family: 'Sora', sans-serif;
    font-size: var(--text-body-sm);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
}

.footer__menu-item {
    text-decoration: none;
    color: #fff;
    font-family: 'Figtree', sans-serif;
    font-size: var(--text-body-sm);
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.footer__bottom {
    border-top: 1px solid #2FADEC;
    padding-top: 2rem;
    position: relative;
    z-index: 2;
}

.footer__bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--text-body-sm);
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.footer__social {
    display: flex;
    gap: 1rem;
    height: 24px;
}

.footer__social img {
    height: 100%;
}

.footer__social a {
    transition: opacity 0.2s ease;
}

.footer__social a:hover {
    opacity: 0.8;
}

.footer__terms {
    display: flex;
    gap: 2rem;
}

.footer__arrow {
    width: 25px;
    height: 25px;
    margin-left: 4px;
    vertical-align: middle;
    transition: transform 0.2s ease;
}

.footer a:hover .footer__arrow {
    transform: translateX(3px);
}

.footer .noWrap    { white-space: nowrap; }
.footer .opacity60 { opacity: 0.6; }
.footer .opacity80 { opacity: 0.8; }
.footer .opacity90 { opacity: 0.9; }

.footer .flexContent {
    display: flex;
    justify-content: space-between;
}

.groupPartners .footer__menu-partners:first-child {
    margin-bottom: 4rem;
}

.groupPartners .footer__menu-partners:first-child {
    margin-bottom: 3rem;
}

.banks_logo {
    border-bottom: 1.5px dashed #2FADEC;
    padding: 2rem 0;
    justify-content: space-around;
    align-items: center;
    height: 80px;
    text-align: center;
}

.banks_logo:nth-child(2) {
    border-top: 1.5px dashed #2FADEC;
}

.banks_logo:last-child {
    border-bottom: none;
    margin-top: 1rem;
    justify-content: flex-end;
    gap: 1rem;
}

.banks_logo img { max-height: 50px; }

.andOthers { font-size: 13px; }

.footer__bi        { vertical-align: middle; margin-bottom: 6px; margin-left: 4px; height: 28px; }
.footer__ojk       { height: 23px; }
.footer__visa      { height: 23px; }
.footer__mastercard { height: 31px; }
.footer__jcb       { height: 34px; }
.footer__ae        { height: 27px; }
.footer__bri       { height: 37px; }
.footer__bni       { height: 21px; }
.footer__bca       { height: 47px; margin-bottom: -0.3rem; }
.footer__mandiri   { height: 39px; margin-bottom: 0.3rem; }
.footer__kan       { height: 30px; }
.footer__iso       { height: 38px; }
.footer__secure    { height: 20px; }


/* ============================================================
   21. COMPONENTS
   ============================================================ */

/* Baca Juga callout */
.baca-juga {
    background: #E8F3F7;
    border: 1px solid #9EE3F3;
    border-radius: 10px;
    padding: 22px 30px;
    margin: 1.5rem 0;
}

.baca-juga__inner {
    margin: 0;
    font-family: 'Figtree', sans-serif;
    font-size: var(--text-body-md);
    line-height: 1.5;
    color: #1D1C1E;
}

.baca-juga__label {
    font-weight: 400;
}

.baca-juga__link {
    font-weight: 700;
    color: #2FADEC;
    text-decoration: none;
}

.baca-juga__link:hover {
    text-decoration: underline;
    color: #2FADEC;
}

/* Contributor card */
.post-contributor {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
    margin: 2rem 0 0;
}

.post-contributor__inner {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.post-contributor__avatar img {
    width: 108px;
    height: 108px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.post-contributor__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.post-contributor__label {
    font-family: 'Figtree', sans-serif;
    font-size: var(--fs-xs);
    font-weight: 400;
    color: #2FADEC;
    line-height: 1.4;
}

.post-contributor__name {
    font-family: 'Figtree', sans-serif;
    font-size: var(--bs-body-font-size);
    font-weight: 700;
    color: #1D1C1E;
    line-height: 1.4;
}

.post-contributor__bio {
    font-family: 'Figtree', sans-serif;
    font-size: var(--fs-xs);
    font-weight: 400;
    color: #1D1C1E;
    line-height: 1.4;
    margin: 0;
}

.post-contributor__linkedin {
    display: inline-flex;
    align-items: center;
    color: #D2D2D2;
    margin-top: 6px;
    transition: color 0.2s ease;
    line-height: 1;
}

@media (hover: hover) and (pointer: fine) {
    .post-contributor__linkedin:hover { color: #2FADEC; }
}

/* ============================================================
   22. 404 PAGE
   ============================================================ */

.not-found-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient-hero);
}

.not-found-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 80% 50%, rgba(47,173,236,0.10) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(30,96,182,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.not-found-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 3rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.not-found-code {
    font-family: var(--font-display);
    font-size: clamp(7rem, 18vw, 14rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
    color: transparent;
    -webkit-text-stroke: 2px var(--color-navy-600);
    opacity: 0.12;
    white-space: nowrap;
    user-select: none;
    flex-shrink: 0;
    pointer-events: none;
}

.not-found-content {
    flex: 1;
    min-width: 0;
}

.not-found-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--color-navy-800);
    line-height: var(--lh-tight);
    margin: 0 0 1rem;
}

.not-found-desc {
    font-family: var(--font-body);
    font-size: var(--text-body-md);
    color: #4a5568;
    line-height: 1.3;
    margin: 0 0 1rem;
    max-width: 480px;
}

.not-found-search {
    margin-bottom: 1.5rem;
    margin-left: 0;
    max-width: 480px;
}

.not-found-cta {
    display: inline-flex;
}
/* ============================================================
   23. MEDIA QUERIES
   ============================================================ */

/* ── ≥1200px ── */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
    .category-pills__scroll {
        justify-content: center;
    }
    .category-pills__scroll.is-overflow {
        justify-content: flex-start;
    }
}

/* ── ≥981px (navbar desktop) ── */
@media (min-width: 981px) {
    .navbar__link:hover,
    .navbar__item.is-open .navbar__link {
        color: #2FADEC;
    }
    .navbar__link:hover .navbar__icon,
    .navbar__item.is-open .navbar__link .navbar__icon {
        transform: rotate(45deg);
    }
    .navbar__dropdown-item:hover .dropdown-item__arrow,
    .navbar__dropdown-item:focus .dropdown-item__arrow {
        opacity: 1;
        transform: translateX(0);
    }
    .navbar__item:hover .navbar__dropdown,
    .navbar__item.is-open .navbar__dropdown {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate(-50%, 0);
        transition: opacity 0.24s ease, transform 0.24s ease, visibility 0s;
    }
}

/* ── ≤1280px + ≥981px (navbar sticky width) ── */
@media (max-width: 1280px) and (min-width: 981px) {
    .navbar.is-sticky {
        width: 98%;
    }
}

/* ── ≤1280px ── */
@media (max-width: 1280px) {
    .navbar__container {
        padding: 16px 24px;
    }
    .footer {
        padding-inline: 2rem;
    }
    .footer__body {
        gap: 4rem;
    }
}

/* ── ≤1200px (legacy) ── */
@media (max-width: 1200px) {
    header li.secondary.menu-item {
        margin-left: 1rem;
    }
    header li.secondary.menu-item:lang(en) {
        margin-left: 0rem;
    }
    .post-grid-item .post-content h3 {
        height: 55px;
        overflow: hidden;
    }
    .post-grid-item .post-content {
        height: unset;
    }
    .post-grid-item .post-excerpt {
        height: 144px;
        overflow: hidden;
    }
    .sidebar span.crp_title {
        font-size: .9rem;
        width: 65%;
        margin-bottom: 10px;
    }
    .sidebar .related-post a figure {
        height: auto;
        width: 30%;
        margin-bottom: 10px;
    }
    .sidebar .related-post a figure img {
        width: 100%;
    }
    .sidebar span.crp_date {
        position: absolute;
        top: 130px;
        margin-left: 35%;
    }
    .sidebar .related-post a {
        margin-bottom: 0;
    }
    .sidebar .related-post.post-item {
        margin-bottom: 2rem;
    }
    header {
        margin-bottom: 2rem;
    }
    .breadcrumbs {
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }
    .inner-container {
        max-width: unset;
    }
    #ez-toc-container {
        display: none !important;
    }
    #sidebar-search-top {
        display: block;
    }
    #sidebar-search {
        display: none;
    }
    .sidebar {
        padding-left: 15px;
    }
    .left-sidebar.sidebar {
        padding-right: 15px;
    }
}

@media (max-width: 1199.98px) and (min-width: 981px) {
    .list-posts.row {
        justify-content: flex-start;
        gap: 0;
    }
}

@media (max-width: 1100px) and (min-width: 981px) {
    .navbar__menu {
        gap: 16px;
    }
}

/* ── ≤1199.98px (TOC) ── */
@media (max-width: 1199.98px) {
    nav.pb-toc {
        position: static;
        top: auto;
        margin-bottom: 2rem;
    }
}

/* ── ≤1024px (footer) ── */
@media (max-width: 1024px) {
    .footer#main-footer {
        padding: 5rem 2rem 2rem;
    }
    .footer__content {
        margin-bottom: 3rem;
    }
    .footer__top {
        margin-bottom: 3rem;
    }
    .footer__logo img {
        height: 70px;
    }
    .footer__body {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2.5rem;
    }
    .footer__menu {
        gap: 36px;
        max-width: 350px;
    }
    .footer__menu:last-child {
        grid-column: 1 / -1;
    }
    .groupHours .footer__menu-item {
        max-width: 280px;
    }
    .footer__bottom-content {
        gap: 1.5rem;
    }
    .footer__terms {
        gap: 1.5rem;
    }
}

/* ── ≤992px (legacy header / navbar) ── */
@media (max-width: 992px) {
    .navbar>.container {
        align-items: flex-start;
    }
    button.navbar-toggler {
        float: right;
        padding: 2px 5px;
        margin-top: 7px;
    }
    .navbar-collapse {
        margin-top: 3.5rem;
        width: 100%;
        position: absolute;
        left: 0;
        background: var(--color-white);
        padding-bottom: 0.5rem;
    }
    .navbar-nav {
        max-width: 540px;
        margin: 0 auto;
        display: block;
    }
    a.navbar-brand img {
        height: 45px;
    }
    header li a {
        margin: 0 2rem;
    }
    header li.secondary.menu-item, header li.primary.menu-item {
        display: inline-block;
        width: 48%;
        text-align: center;
    }
    header li.primary.menu-item {
        width: 50%;
    }
    header li.secondary.menu-item a {
        margin-right: 0;
    }
    header li.secondary.menu-item {
        margin-left: 0;
        margin-top: 5px;
        margin-bottom: 7px;
    }
    li.pll-parent-menu-item:nth-child(7) {
        display: block;
    }
    li.pll-parent-menu-item:last-child {
        display: none;
    }
    header li .sub-menu li {
        width: 100% !important;
    }
    .post-img img {
        max-width: unset;
        min-height: 100%;
        max-height: 120%;
    }
    .post-content.overlay-content h3 {
        font-size: 1.3em;
    }
    .section-cta a {
        font-size: 16px;
    }
    .post-grid-item.post-item {
        width: 100%;
        max-width: 360px;
        background: #E8F3F7;
    }
    .post-img.post-thumbnail {
        height: 300px;
    }
    .post-grid-item .post-content h3 {
        height: unset;
    }
    .post-grid-item .post-excerpt {
        height: 70px;
    }
    .section-cta.section-cta-right {
        margin-top: 1rem;
    }
    .footer-middle img {
        width: 120px;
    }
    .site-info {
        text-align: center;
    }
    .site-info-nav {
        text-align: center;
        margin-top: 1rem;
    }
    .heading-title h1 {
        font-size: 2em;
    }
    .backTop {
        font-size: 1.5em;
    }
    .header-archive .wrap-subcat {
        order: 2;
    }
    .header-archive .subcategories {
        overflow: auto;
        white-space: nowrap;
        padding-bottom: 1rem;
    }
    .main-content {
        line-height: 1.8em;
    }
}

/* ── ≤991.98px (carousel, grid, recent posts) ── */
@media (max-width: 991.98px) {
    .latest-carousel__slide {
        grid-template-columns: 1fr;
    }
    .latest-carousel__track {
        min-height: 0;
    }
    .latest-grid__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .single-recent-posts__grid,
    .archive-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── ≤980px (navbar mobile + btn) ── */
@media (max-width: 980px) {
    .btn__icon.--2 {
        display: block;
        width: 20px;
    }
    .btn__icon.--1 {
        display: none;
    }
    .navbar {
        position: fixed;
    }
    .navbar.is-sticky {
        position: fixed;
        top: 0;
        max-width: 100%;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid #E8F3F7;
        background: transparent;
    }
    .navbar.is-sticky .navbar__container {
        position: fixed;
        width: 100%;
        top: 0;
        max-width: 100%;
        background: rgba(255, 255, 255, 0.9);
        transition: background 0.4s ease;
    }
    .navbar__container {
        padding: 24px;
        gap: 16px;
    }
    .navbar__toggle {
        display: flex;
    }
    .navbar__menu {
        max-width: 100vw;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        background: #FFF;
        overflow-y: auto;
        overflow-x: hidden;
        opacity: 0;
        visibility: hidden;
        transform: translateX(4rem);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
    }
    .navbar__menu.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s;
    }
    .navbar__item {
        width: 100%;
        border-bottom: 1px solid #E8F3F7;
        padding: 0 20px;
    }
    .navbar__item.--mobile {
        position: sticky;
        top: 0;
        left: 0;
        right: 0;
        background: #fff;
        z-index: 10;
        padding: 16px;
        display: block;
        border-bottom: 1px solid #E8F3F7;
    }
    .navbar__link {
        width: 100%;
        padding: 16px 0;
        font-size: 16px;
        color: var(--text-body-color) !important;
    }
    .navbar__dropdown {
        position: static;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: none;
        border: none;
        border-radius: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        background: #F8FBFC;
        border-radius: 12px;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }
    .navbar__item.is-open .navbar__dropdown {
        max-height: 2000px;
        padding: 16px;
        transform: none;
        margin-bottom: 1rem;
    }
    .navbar__dropdown-group {
        padding: 0;
    }
    .navbar__dropdown-group + .navbar__dropdown-group {
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px dashed #E1EDF2;
    }
    .navbar__dropdown-grid {
        grid-template-columns: 1fr;
        border-bottom: none;
    }
    .dropdown-item {
        transition: background 0.2s ease;
    }
    .navbar__actions.--mobile {
        display: flex;
        margin-top: 1rem;
        margin-right: 16px;
        margin-bottom: 1rem;
    }
    .navbar__actions.--desktop {
        display: none;
    }
    .navbar__item.is-open .navbar__icon {
        transform: rotate(45deg);
    }
    .navbar__dropdown-group--alt {
        padding-left: 1rem;
    }
}

/* ── hover capable devices (btn animation) ── */
@media (hover: hover) and (pointer: fine) and (min-width: 980px) {
    .has-hover\:block {
        display: block;
    }
    .btn__label {
        transform: translate(0);
        transition: transform 1s cubic-bezier(.19, 1, .22, 1);
    }
    .btn:hover .btn__label {
        transform: translate(34px);
    }
    .btn__icon {
        transition: transform .75s cubic-bezier(.19, 1, .22, 1);
    }
    .btn__icon.--1 {
        transform: translate(-50px);
        transition-delay: 0s;
    }
    .btn:hover .btn__icon.--1 {
        transform: translate(0);
        transition-delay: .2s;
    }
    .btn__icon.--2 {
        transform: translate(0);
        transition-delay: .2s;
    }
    .btn:hover .btn__icon.--2 {
        transform: translate(50px);
        transition-delay: 0s;
    }
    .btn__light:hover {
        background: var(--Light-Grey03, #D1E6F2);
    }
}

/* ── ≤970px (footer bottom) ── */
@media (max-width: 970px) {
    .footer__bottom-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .footer__copyright { order: 3; }
    .footer__social {
        order: 1;
        justify-content: center;
    }
    .footer__terms {
        order: 2;
        flex-direction: column;
        gap: 1rem;
    }
}

/* ── 769px–980px (home-cta mid range) ── */
@media (min-width: 769px) and (max-width: 980px) {
    .home-cta {
        padding-inline: 1rem;
        padding-top: 4rem;
        padding-bottom: 8rem;
    }
    .home-cta__flex {
        justify-content: space-between;
        gap: 2rem;
    }
    .home-cta__text br {
        display: none;
    }
    .home-cta__text {
        max-width: 300px;
    }
}

/* ── <1200px ── */
@media (max-width: 1199px) {
    .left-sidebar {
        display: none;
    }
}

/* ── ≤768px ── */
@media (max-width: 768px) {
    .category-pills__nav {
        display: none;
    }
    .latest-grid {
        padding: 4rem 0;
    }

    #floating-banner {
        margin: 0;
        width: 100%;
        justify-content: center;
        bottom: 0;
        z-index: 9;
    }
    .floating-banner-wrap {
        width: 100%;
    }
    .floating-banner-wrap img {
        width: 100%;
    }
    .home-intro {
        padding: 2rem 0 0;
    }
    .home-intro__tagline {
        font-size: 13px;
        margin-bottom: 1rem;
    }
    .category-pills {
        gap: 0;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    .category-pill {
        padding: 0.6rem 0.8rem;
        font-size: 12px;
    }
    .home .post-grid-item.post-item {
        width: 100%;
    }
    .home-cta {
        padding: 4rem 0 8rem;
    }
    .home-cta__flex {
        flex-direction: column;
        gap: 0;
        text-align: center;
    }
    .home-cta__content {
        align-items: center;
    }
    .home-cta__title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    .home-cta__text br, .home-cta__title br {
        display: none;
    }
    .footer#main-footer {
        padding: 2rem 1.5rem 2.5rem;
    }
    .footer__top {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 2.5rem;
        text-align: center;
    }
    .footer__logo img {
        height: 60px;
    }
    .footer__download-btn {
        justify-content: center;
    }
    .footer__download-btn img {
        height: 32px;
    }
    .footer__body {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer__menu {
        gap: 32px;
    }
    .footer__menu-group.groupCustomerCare {
        margin-top: 0;
    }
    .footer__menu-item {
        font-size: 14px;
        line-height: 26px;
    }
    .footer__arrow {
        margin-left: 12px;
    }
    .groupHours .footer__menu-item {
        max-width: 100%;
    }
    .banks_logo {
        padding: 1.25rem 0;
        height: auto;
        min-height: 36px;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .banks_logo:last-child {
        justify-content: center;
    }
    .groupPartners .footer__menu-partners:first-child {
        margin-bottom: 2.5rem;
    }
    .not-found-container {
        flex-direction: column;
        gap: 1rem;
        padding-top: 6rem;
        padding-bottom: 6rem;
        text-align: center;
    }

    .not-found-code {
        font-size: clamp(5rem, 28vw, 8rem);
        opacity: 0.08;
        margin-bottom: -1rem;
    }

    .not-found-desc {
        max-width: 100%;
    }

    .not-found-search {
        max-width: 100%;
    }

    .not-found-cta {
        width: 100%;
        justify-content: center;
    }
}

/* ── ≤640px (carousel + grid) ── */
@media (max-width: 640px) {
    .home-intro {
        padding: 2rem 0 1.5rem;
    }
    .category-pills {
        margin-top: 1.5rem;
    }
    .latest-carousel {
        padding: 2rem 0 1.5rem;
    }
    .latest-carousel__heading {
        margin-bottom: 1.5rem;
    }
    .latest-carousel__content {
        padding: 0;
    }
    .latest-grid__inner {
        grid-template-columns: 1fr;
    }
    .latest-grid__body {
        padding: 1.25rem 1.5rem 1.75rem;
    }
}

/* ── ≤576px ── */
@media (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .wrap-post-content {
        padding: 2.2rem 2.6rem;
    }
    .wrap-archive .post-img.post-thumbnail {
        height: 200px;
    }
    .wrap-archive .post-thumbnail img {
        max-height: unset !important;
        width: 100%;
    }
    .wrap-archive .wrap-post-content {
        padding: 1.2rem 1.6rem;
    }
    .wrap-heading {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    .heading-title h1 {
        font-size: 1.7em;
        line-height: 1.3em;
    }
    .post-cta {
        margin-bottom: 1.5rem;
    }
    #related-posts {
        padding: 1.5rem 15px;
    }
    a.navbar-brand img {
        height: 45px;
    }
    .wrap-archive .list-posts.row {
        padding: 0 15px;
    }
    section.selected-category-posts {
        padding: 4rem 1rem;
        margin-bottom: 0;
    }
    section.media-gallery {
        padding-top: 1.5rem;
    }
    .home .footer#main-footer {
        padding-top: 1rem;
    }
    .footer#main-footer .container:after {
        padding-top: 2rem;
    }
    .footer#main-footer .footer-nav .container:after {
        padding-top: 0;
    }
    section.footer-middle { margin-bottom: 0; }
    .footer#main-footer .footer-middle .container:after {
        padding-top: 1.5rem;
    }
    .sidebar span.crp_title {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    .sidebar span.crp_date {
        top: 80px;
    }
    .section-header.section-header-inline {
        gap: 0.75rem;
    }
    .section-cta-btn {
        padding: 10px 18px;
        font-size: 16px;
    }
    .home-cta__supergraphic {
        width: 100%;
    }
    .heading-info .row.align-items-center {
        flex-direction: column;
        gap: 1rem;
    }
    .list-posts.row {
        justify-content: center;
    }
}

/* ── ≤575.98px (single-recent + archive 1-col) ── */
@media (max-width: 575.98px) {
    .single-recent-posts__grid,
    .archive-posts-grid {
        grid-template-columns: 1fr;
    }
}

/* ── ≤575px (home-cta small) ── */
@media (max-width: 575px) {
    .section-cta-btn--desktop {
        display: none;
    }
    .section-cta-btn--mobile {
        display: flex;
        width: fit-content;
        margin: 1.5rem auto 0;
    }
    .home-cta {
        padding-top: 2rem;
    }
      .media-gallery figure.wp-block-gallery {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .media-gallery figure.wp-block-image:not(:nth-child(2n))::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 1px;
        background-image: linear-gradient(to bottom, rgba(47, 173, 236, 0.4) 50%, transparent 50%);
        background-size: 1px 10px;
        background-repeat: repeat-y;
        display: block;
    }
    .media-gallery figure.wp-block-image:not(:nth-last-child(-n+2))::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background-image: linear-gradient(to right, rgba(47, 173, 236, 0.4) 50%, transparent 50%);
        background-size: 10px 1px;
        background-repeat: repeat-x;
        display: block;
    }
}

/* ── ≤480px ── */
@media (max-width: 480px) {
    .navbar__container {
        padding: 16px;
    }
    .navbar__logo {
        font-size: 18px;
    }
    .footer__content {
        margin-bottom: 2rem;
    }
    .footer__top {
        gap: 1.5rem;
    }
    .footer__logo img {
        height: 50px;
    }
    .footer__download-btn {
        gap: 0.75rem;
    }
    .footer__download-btn img {
        height: 36px;
    }
    .footer__body {
        gap: 2rem;
    }
    .footer__menu {
        gap: 28px;
    }
    .footer__menu-label {
        margin-bottom: 16px;
        font-size: 14px;
    }
    .footer__bottom {
        padding-top: 1.5rem;
    }
    .footer__bottom-content {
        gap: 1.5rem;
        font-size: 12px;
    }
    .footer__social {
        gap: 0.75rem;
        height: 20px;
    }
    .footer__terms {
        font-size: 12px;
    }
    .footer .noWrap {
        white-space: normal;
    }
    .banks_logo img  { max-height: 40px; }
    .footer__bi      { height: 24px; }
    .footer__ojk     { height: 20px; }
    .footer__visa    { height: 22px; }
    .footer__mastercard { height: 30px; }
    .footer__jcb     { height: 32px; }
    .footer__ae      { height: 26px; }
    .footer__bri     { height: 30px; }
    .footer__bni     { height: 20px; }
    .footer__bca     { height: 42px; }
    .footer__mandiri { height: 38px; }
    .footer__kan     { height: 28px; }
    .footer__iso     { height: 36px; }
    .footer__secure  { height: 20px; }
    .groupPartners .footer__menu-partners:first-child {
        margin-bottom: 2rem;
    }
    .banks_logo {
        gap: 0.75rem;
    }
}

/* ── ≤375px ── */
@media (max-width: 375px) {
    .footer__logo img {
        height: 45px;
    }
    .footer__menu:not(:last-child) {
        max-width: 250px;
    }
    .footer__menu:last-child .footer__menu-group {
        max-width: fit-content;
    }
    .footer__menu-label {
        font-size: 13px;
    }
    .footer__menu-item {
        font-size: 13px;
        line-height: 24px;
    }
    .footer__menu-group {
        max-width: 220px;
    }
    .footer__social {
        gap: 0.5rem;
        height: 18px;
    }
    .banks_logo {
        gap: 0.5rem;
    }
}
