/**
 * Orbit Theme Stylesheet
 * 
 * Table of Contents:
 * 1. Reset & Base Styles
 * 2. Layout & Containers
 * 3. Typography & Text
 * 4. Forms & Inputs
 * 5. Tooltips
 * 6. Header & Navigation
 * 7. Mobile Navigation
 * 8. Posts & Archives
 * 9. Grid & Flex Utilities
 * 10. 404 Page
 * 11. Media Queries
 * 12. Block Styles Ã¢â‚¬â€ Ambient Group overlays
 */


/* ==========================================================================
   1. RESET & BASE STYLES
   ========================================================================== */

   html {
    line-height: 1.1;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

body {
    margin: 0;
}

figure {
    margin: 0;
}

img {
    border-style: none;
}

iframe {
    display: block;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

blockquote {
    margin: 0;
}

template {
    display: none;
}

[hidden] {
    display: none;
}

details {
    display: block;
}

summary {
    display: list-item;
}


/* ==========================================================================
   2. LAYOUT & CONTAINERS
   ========================================================================== */

.wrap {
    margin: auto;
    max-width: var(--wp--style--global--content-size);
    width: 100%;
    padding-left: var(--wp--preset--spacing--medium);
    padding-right: var(--wp--preset--spacing--medium);
}


/* ==========================================================================
   3. TYPOGRAPHY & TEXT
   ========================================================================== */

a {
    background-color: transparent;
    color: inherit;
    word-break: break-word;
    outline-offset: 2px;
    text-decoration: underline;
}

a:focus-visible {
    outline: 2px solid #276EF1;
}

b,
strong {
    font-weight: 700;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline dotted;
}

pre,
code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}


/* ==========================================================================
   4. FORMS & INPUTS
   ========================================================================== */

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button,
input {
    overflow: visible;
}

input[type=search] {
    box-sizing: border-box;
}

button,
[type=button],
[type=reset],
[type=submit] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

fieldset {
    padding: 0;
    border: none;
    margin: 0;
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type=checkbox],
[type=radio] {
    box-sizing: border-box;
    padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto;
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

/* Placeholders */
::-moz-placeholder {
    color: var(--wp--preset--color--primary);
    opacity: 1;
}

::-ms-input-placeholder {
    color: var(--wp--preset--color--primary);
}

::-webkit-input-placeholder {
    color: var(--wp--preset--color--primary);
}

/* ==========================================================================
   5. TOOLTIPS
   ========================================================================== */

[data-tooltip] {
    position: relative;
    z-index: 10;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    visibility: hidden;
    width: max-content;
    max-width: 150px;
    background-color: var(--wp--preset--color--black);
    color: var(--wp--preset--color--white);
    text-align: center;
    padding: 8px 10px;
    border-radius: var(--wp--custom--border--radius--small);
    position: absolute;
    z-index: 1000;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
}

[data-tooltip]::before {
    content: '';
    visibility: hidden;
    position: absolute;
    z-index: 1000;
    width: 0;
    height: 0;
    border: 7px solid transparent;
    opacity: 0;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-top-color: var(--wp--preset--color--black);
}

[data-tooltip].visible::after,
[data-tooltip].visible::before {
    visibility: visible;
    opacity: 1;
}

/* Tooltip: Below */
[data-tooltip].below::after {
    bottom: auto;
    top: calc(100% + 10px);
    transform: translateX(-50%);
}

[data-tooltip].below::before {
    bottom: auto;
    top: calc(100% - 4px);
    border-top-color: transparent;
    border-bottom-color: var(--wp--preset--color--black);
}

/* Tooltip: Right */
[data-tooltip].right::after {
    bottom: auto;
    top: 50%;
    left: calc(100% + 10px);
    transform: translateY(-50%);
}

[data-tooltip].right::before {
    top: 50%;
    left: calc(100% + 5px);
    right: auto;
    transform: translateY(-50%) rotate(45deg);
    border-bottom-color: #333;
    border-left-color: #333;
    border-top-color: transparent;
    border-right-color: transparent;
}

/* Tooltip: Left */
[data-tooltip].left::after {
    bottom: auto;
    top: 50%;
    left: auto;
    right: calc(100% + 5px);
    transform: translateY(-50%);
}

[data-tooltip].left::before {
    top: 50%;
    left: auto;
    right: calc(100% + 5px);
    transform: translateY(-50%) rotate(-45deg);
    border-bottom-color: #333;
    border-right-color: #333;
    border-top-color: transparent;
    border-left-color: transparent;
}

.tooltip-desc {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}


/* ==========================================================================
   6. HEADER & NAVIGATION
   ========================================================================== */

/* Desktop Navigation ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â hidden by default, shown at ÃƒÂ¢Ã¢â‚¬Â°Ã‚Â¥1200px (see responsive
   section). Visual treatment (pill capsule, link styling, CTA item) lives in
   the "Header ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â topbar treatment" block below. */
#nav-menu {
    display: none;
}

/* Submenu Button */
.submenu-btn {
    border: 0;
    padding: 0;
    cursor: pointer;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Submenu Dropdown */
.submenu {
    position: absolute;
    top: 60px;
    left: 50%;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 0%);
    transition: visibility 0ms ease 0ms, pointer-events 0ms ease 0ms, all 0.25s cubic-bezier(0.4, 0.01, 0.1, 1);
    z-index: 9999;
    padding-top: 15px;
}

#nav-menu li.menu-item-has-children:hover .submenu,
#nav-menu li.menu-item-has-children:focus .submenu,
#nav-menu li.menu-item-has-children:focus-within .submenu {
    opacity: 1;
    visibility: visible;
}

.submenu-inner-wrap {
    min-width: 300px;
    background-color: var(--wp--preset--color--white);
    padding: var(--wp--preset--spacing--small);
    border-radius: var(--wp--custom--border--radius--small);
    transition: visibility 0ms ease 0ms, pointer-events 0ms ease 0ms, all 0.25s cubic-bezier(0.4, 0.01, 0.1, 1);
}

.submenu-inner-wrap>p {
    font-size: var(--wp--preset--font-size--small);
    font-weight: 800;
    margin: 0 0 15px 0;
}

#nav-menu .submenu-inner a {
    color: var(--wp--preset--color--black);
}

#nav-menu .submenu ul li a {
    text-transform: capitalize;
    margin: 0;
}

/* Submenu Items */
.submenu-inner .menu-items {
    display: flex;
    padding: 0;
    margin: 0;
    flex-direction: column;
    gap: 5px;
}

.submenu-inner .menu-items>li:hover .submenu-btn {
    animation: bounce 2s ease infinite;
}

#nav-menu .submenu-inner .sub-menu {
    display: none;
    width: 100%;
    background: var(--wp--preset--color--grey);
    margin: 0 0 10px 0;
    padding: 0;
    border-radius: var(--wp--custom--border--radius--small);
    overflow: hidden;
}

#nav-menu .submenu-inner .sub-menu li {
    width: 100%;
    display: block;
}

#nav-menu .submenu-inner .sub-menu li a {
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 15px;
    border: 0;
    color: var(--wp--preset--color--primary);
    outline-offset: 0;
}

#nav-menu .submenu-inner .sub-menu li a:hover {
    border: 0;
    background: var(--wp--preset--color--secondary);
}

/* Mobile Toggle */
#toggle-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 9999;
}

#toggle {
    height: 65px;
    width: 65px;
    position: relative;
    display: flex;
    background: transparent;
    border: 5px solid transparent;
    border-radius: 100%;
    transition: 0.3s;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    margin-right: -15px;
}

#toggle .bar {
    height: 4px;
    width: 35px;
    display: block;
    margin: 0 auto;
    position: absolute;
    background-color: #fff;
    border-radius: 10px;
    transition: 0.4s;
}

#toggle .bar:nth-of-type(1) {
    top: 15px;
    transition: top 0.3s ease-in-out 0.3s, transform 0.3s ease-in-out 0.1s;
}

#toggle .bar:nth-of-type(2) {
    top: 25px;
    transition: ease 0.3s 0.25s;
}

#toggle .bar:nth-of-type(3) {
    top: 35px;
    transition: top 0.3s ease-in-out 0.3s, transform 0.3s ease-in-out 0.1s;
}

.active #toggle .bar:nth-of-type(1) {
    top: 25px;
    transform: rotate(45deg);
    transition: top 0.3s ease-in-out 0.1s, transform 0.3s ease-in-out 0.25s;
}

.active #toggle .bar:nth-of-type(2) {
    opacity: 0;
}

.active #toggle .bar:nth-of-type(3) {
    top: 25px;
    transform: rotate(-45deg);
    transition: top 0.3s ease-in-out 0.1s, transform 0.3s ease-in-out 0.25s;
}


/* --------------------------------------------------------------------------
   Header ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â topbar treatment (mirrors Plans/homepage.html .topbar)

   Sticky, backdrop-blurred bar with 3-col grid (logo | pill nav | status chip).
   Overrides the earlier #nav-menu rules via source order; HTML structure
   from inc/site-header.php is unchanged.
   -------------------------------------------------------------------------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: saturate(160%) blur(12px);
    -webkit-backdrop-filter: saturate(160%) blur(12px);
    border-bottom: 1px solid rgba(28, 33, 29, 0.04);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.site-header > .wrap {
    max-width: var(--wp--style--global--wide-size, 1320px);
    margin: 0 auto;
    height: 80px;
    padding: 15px var(--wp--preset--spacing--medium);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: var(--wp--preset--spacing--medium);
}

/* ----- Logo ----- */
.site-header__logo,
.custom-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 22px;
    letter-spacing: -0.02em;
    color: var(--wp--preset--color--charcoal, #1c211d);
    text-decoration: none;
}

.custom-logo-link .custom-logo {
    display: block;
    height: auto;
    width: 200px;
    max-height: 40px;
}

/* Text-fallback logo renders with a 2ÃƒÆ’Ã¢â‚¬â€3 grid of brand dots via an inline SVG. */
.site-header__logo::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 20px;
    flex-shrink: 0;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='30' height='20' viewBox='0 0 30 20'><circle cx='3.5' cy='3.5' r='3.5' fill='%23009fe3'/><circle cx='15' cy='3.5' r='3.5' fill='%23d61254'/><circle cx='26.5' cy='3.5' r='3.5' fill='%23fdc41f'/><circle cx='3.5' cy='16.5' r='3.5' fill='%2382378c'/><circle cx='15' cy='16.5' r='3.5' fill='%232fad66'/><circle cx='26.5' cy='16.5' r='3.5' fill='%232a086f'/></svg>");
}

/* ----- Primary nav: pill capsule, centred ----- */
.site-header #nav-menu {
    justify-self: center;
    justify-content: center;
    height: auto;
}

.site-header #nav-menu ul.menu {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    margin: 0;
    padding: 5px;
    height: auto;
    background: #fff;
    border-radius: var(--wp--custom--border--radius--pill);
    box-shadow:
        0 1px 2px rgba(28, 33, 29, 0.06),
        0 0 0 1px rgba(28, 33, 29, 0.04);
    list-style: none;
}

.site-header #nav-menu .menu-item {
    position: relative;
    display: flex;
    align-items: center;
    height: auto;
    margin: 0;
    gap: 0;
}

.site-header #nav-menu li a {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--wp--preset--color--charcoal, #1c211d);
    border: 0;
    border-bottom: 0;
    margin: 0;
    border-radius: var(--wp--custom--border--radius--pill);
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease;
}

.site-header #nav-menu li a:hover,
.site-header #nav-menu li a:focus-visible {
    background: var(--wp--preset--color--tertiary-50, #ECD2EF);
    border-bottom: 0;
}

.site-header #nav-menu .current-menu-item > a,
.site-header #nav-menu .current_page_item > a,
.site-header #nav-menu .current-menu-ancestor > a {
    background: var(--wp--preset--color--tertiary-50, #ECD2EF);
}

/* Add CSS class "cta" to a menu item (Menus ÃƒÂ¢Ã¢â‚¬Â Ã¢â‚¬â„¢ item ÃƒÂ¢Ã¢â‚¬Â Ã¢â‚¬â„¢ CSS Classes) for
   a filled-ink call-to-action button in the nav. */
.site-header #nav-menu li.cta > a {
    background: var(--wp--preset--color--charcoal, #1c211d);
    color: #fff;
}

.site-header #nav-menu li.cta > a:hover,
.site-header #nav-menu li.cta > a:focus-visible {
    background: var(--wp--preset--color--primary, #00B020);
    color: #fff;
}

/* ----- Right-side status chip (re-skinning #contact-button-wrap) -----
   Edit the link text in inc/site-header.php (orbit_site_header()) to
   change "Donate Today" to the content shown here. */
.site-header #contact-button-wrap {
    justify-self: end;
}

.site-header #contact-button-wrap a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #fff;
    color: var(--wp--preset--color--charcoal, #1c211d);
    border: 1px solid rgba(28, 33, 29, 0.1);
    border-radius: var(--wp--custom--border--radius--pill);
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    box-shadow: none;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.site-header #contact-button-wrap a::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--wp--preset--color--primary, #00B020);
    box-shadow: 0 0 0 2px rgba(0, 176, 32, 0.18);
    flex-shrink: 0;
}

.site-header #contact-button-wrap a:hover {
    background: var(--wp--preset--color--tertiary-50, #ECD2EF);
    border-color: rgba(28, 33, 29, 0.18);
    color: var(--wp--preset--color--charcoal, #1c211d);
}

/* ----- Mobile toggle: darken bars so they read on the light bar ----- */
.site-header #toggle .bar {
    background-color: var(--wp--preset--color--charcoal, #1c211d);
}


/* ==========================================================================
   7. MOBILE NAVIGATION
   ========================================================================== */

#mobile-nav-menu {
    height: calc(100vh - 75px);
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 100px;
    width: 100%;
    background: var(--wp--preset--color--white);
    transition: all 0.3s ease-in-out 0.25s, transform 0.3s ease-in-out 0.25s;
    transform: translate(0px, -10px);
    z-index: 500;
}

.active #mobile-nav-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(0px, 50px);
}

.menu-mobile-container {
    overflow: scroll;
    overflow-x: hidden;
    height: 100%;
    width: 100vw;
}

#mobile-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

#mobile-menu a,
#mobile-menu span {
    display: block;
    padding: 15px;
    font-weight: 500;
    text-decoration: none;
    color: #000;
    cursor: pointer;
}

#mobile-menu li {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--wp--preset--color--grey);
}

#mobile-menu>li:first-child {
    border-top: 0;
}

#mobile-menu li.menu-item-has-children {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

#mobile-menu li ul {
    display: none;
    width: 100%;
    background: var(--wp--preset--color--tertiary-50);
    margin: 0;
    padding: 0;
}

#mobile-menu li ul li {
    border-top: 1px solid #fff;
}

#mobile-menu li ul li a {
    font-size: var(--wp--preset--font-size--tiny);
    font-weight: 400;
}

#mobile-menu button {
    background: transparent;
    border: 0;
    width: 50px;
    height: 50px;
    padding: 5px 20px 5px 0;
    cursor: pointer;
}

#mobile-menu button svg {
    transition: top 0.3s ease 0.1s, transform 0.3s ease-out;
}

#mobile-menu .menu-item.active button svg {
    transform: rotateX(180deg);
}


/* ==========================================================================
   8. POSTS & ARCHIVES
   ========================================================================== */

/* Archive Layout */
.archive .site-main {
    /* max-width: var(--wp--style--global--wide-size); */
    /* margin: auto; */
    /* padding-left: var(--wp--preset--spacing--medium); */
    /* padding-right: var(--wp--preset--spacing--medium); */
    /* margin-bottom: var(--wp--preset--spacing--xxx-large); */
}

/* Search Layout */
.search main.site-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Search Archive Form */
.search-archive > form .wp-block-search__inside-wrapper {
    border-radius: 50px;
    background: none;
}

.search-archive input#wp-block-search__input-1 {
    border-radius: 50px;
    background: none;
}

/* Archive Filter Bar */
.archive-filter-bar {
    margin: var(--wp--preset--spacing--x-large) 0;
    padding-top: 30px;
}

.archive-filter-bar .wrap {
    max-width: var(--wp--style--global--wide-size);
    margin: auto;
    padding-left: var(--wp--preset--spacing--medium);
    padding-right: var(--wp--preset--spacing--medium);
}

.archive-filters {
    display: flex;
    flex-wrap: wrap;
    gap: var(--wp--preset--spacing--small);
    align-items: center;
    max-width: 800px;
}

.archive-filters .filter-group {
    flex: 0 0 auto;
}

.archive-filters .filter-search {
}

.archive-filters select,
.archive-filters input[type="text"] {
    padding: 0.75rem 1rem;
    border: 1px solid var(--wp--preset--color--light-grey, #ddd);
    border-radius: 4px;
    font-size: 0.9375rem;
    background-color: var(--wp--preset--color--white, #fff);
    min-width: 160px;
}

.archive-filters input[type="text"] {
    width: 100%;
}

.archive-filters select:focus,
.archive-filters input[type="text"]:focus {
    outline: none;
    border-color: var(--wp--preset--color--primary);
}

.archive-filters .button {
    padding: 0.75rem 1.5rem;
    background: var(--wp--preset--color--primary);
    color: var(--wp--preset--color--white);
    border: none;
    border-radius: 4px;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.archive-filters .button:hover {
    background: var(--wp--preset--color--secondary, #333);
}

.archive-filters .filter-reset {
    margin-left: 0.5rem;
    font-size: 0.875rem;
    color: var(--wp--preset--color--primary);
}

.archive-filters .filter-submit {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .archive-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .archive-filters .filter-group {
        width: 100%;
    }

    .archive-filters select {
        width: 100%;
    }

    .archive-filters .filter-submit {
        justify-content: space-between;
    }

    .archive-filters .button {
        flex: 1;
    }
}

/* Single Post Layout */
.post.content .site-inner {
    padding: 0;
}

.post.content .site-main {
    padding-left: var(--wp--custom--layout--padding);
    padding-right: var(--wp--custom--layout--padding);
    max-width: var(--wp--custom--layout--content);
    margin: auto;
}

/* Post Entry Header - Meredith's Mission Banner */
.post .entry-header {
    position: relative;
    background: #E86B5E;
    color: var(--wp--preset--color--white);
    min-height: 420px;
    overflow: visible;
    padding-bottom: 50px;
}

.post .entry-header .wrap {
    position: relative;
    z-index: 25;
    max-width: var(--wp--custom--layout--small-content);
    padding-top: calc(3 * var(--wp--preset--spacing--large));
    padding-bottom: 180px;
}

.post .entry-header .entry-header-content {
    position: relative;
}

.post .entry-header a {
    text-decoration: none;
}

.post .entry-header a:hover {
    color: var(--wp--preset--color--white);
    opacity: 0.9;
}

/* Back to Blog Link */
.post .entry-header .back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 500;
    opacity: 0.95;
}
.entry-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}
.post .entry-header .back:hover {
    opacity: 1;
}

/* Category Badge */
.post .entry-header .category-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.95);
    color: #E86B5E;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post .entry-header .category-badge a {
    color: inherit;
}

.post .entry-header .category-badge svg {
    flex-shrink: 0;
}

/* Entry Title */
.post .entry-header .entry-title {
    font-family: 'Montserrat', var(--wp--preset--font-family--sans);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 var(--wp--preset--spacing--medium) 0;
    max-width: 800px;
}

/* Metadata Row */
.post .entry-header .entry-meta-author,
.post .entry-header .entry-meta-dates {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.95;
}

.post .entry-header .entry-meta-author {
    margin-right: var(--wp--preset--spacing--medium);
}

.post .entry-header .entry-meta-author .author-icon {
    display: inline-flex;
    align-items: center;
}

.post .entry-header .entry-meta-author .author-name {
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.post .entry-header .entry-meta-dates {
    flex-wrap: wrap;
    gap: 6px;
}

.post .entry-header .entry-meta-dates .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.post .entry-header .entry-meta-dates .meta-item:not(:last-child)::after {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: currentColor;
    border-radius: 50%;
    margin-left: 10px;
    opacity: 0.6;
}

.post .entry-header .entry-meta-dates .meta-label {
    opacity: 0.8;
}

/* Floating Hearts Animation - More Visible */
@keyframes float-heart {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-20px) rotate(8deg);
        opacity: 0.7;
    }
}

@keyframes float-heart-alt {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.35;
    }
    50% {
        transform: translateY(-15px) rotate(-5deg);
        opacity: 0.6;
    }
}

.post .entry-header .floating-hearts {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 10;
    overflow: hidden;
}

.post .entry-header .floating-heart {
    position: absolute;
    color: rgba(255, 255, 255, 0.5);
    animation: float-heart 4s ease-in-out infinite;
}

.post .entry-header .floating-heart svg {
    stroke: currentColor;
    stroke-width: 2;
}

.post .entry-header .heart-1 {
    top: 10%;
    left: 6%;
    animation-duration: 5s;
    animation-delay: 0s;
}

.post .entry-header .heart-2 {
    top: 6%;
    right: 18%;
    animation-duration: 4.5s;
    animation-delay: 0.5s;
    animation-name: float-heart-alt;
}

.post .entry-header .heart-3 {
    top: 3%;
    right: 6%;
    animation-duration: 5.5s;
    animation-delay: 1s;
}

.post .entry-header .heart-4 {
    top: 30%;
    left: 3%;
    animation-duration: 4s;
    animation-delay: 0.3s;
    animation-name: float-heart-alt;
}

.post .entry-header .heart-5 {
    top: 22%;
    right: 22%;
    animation-duration: 6s;
    animation-delay: 0.8s;
}

.post .entry-header .heart-6 {
    top: 45%;
    right: 4%;
    animation-duration: 4.2s;
    animation-delay: 1.2s;
    animation-name: float-heart-alt;
}

.post .entry-header .heart-7 {
    top: 55%;
    left: 10%;
    animation-duration: 5.8s;
    animation-delay: 0.6s;
}

.post .entry-header .heart-8 {
    top: 40%;
    right: 14%;
    animation-duration: 4.8s;
    animation-delay: 1.5s;
    animation-name: float-heart-alt;
}

.post .entry-header .heart-9 {
    top: 18%;
    left: 18%;
    animation-duration: 5.2s;
    animation-delay: 0.2s;
}

.post .entry-header .heart-10 {
    top: 65%;
    right: 8%;
    animation-duration: 4.6s;
    animation-delay: 0.9s;
    animation-name: float-heart-alt;
}

.post .entry-header .heart-11 {
    top: 70%;
    left: 4%;
    animation-duration: 5.4s;
    animation-delay: 1.3s;
}

.post .entry-header .heart-12 {
    top: 12%;
    right: 30%;
    animation-duration: 4.4s;
    animation-delay: 0.7s;
    animation-name: float-heart-alt;
}

/* Diagonal Edge with Layered Stripes */
.post .entry-header::after {
    content: '';
    position: absolute;
    bottom: -22px;
    left: 0;
    right: 0;
    height: 150px;
    background-color: transparent;
    background-image: none;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% auto;
    z-index: 15;
}

.post .entry-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 75px;
    background: #fff;
    z-index: 14;
}

/* Donate Button - Top Right Corner */
.post .entry-header .entry-header-content {
    position: relative;
}

.post .entry-header .donate-button-banner {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    width: 52px;
    background: #F5C547;
    border-radius: 26px;
    color: #3D3D3D;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    overflow: hidden;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                background 0.2s ease,
                box-shadow 0.2s ease;
    z-index: 30;
}

.post .entry-header .donate-button-banner .donate-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
}

.post .entry-header .donate-button-banner .donate-text {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transition: opacity 0.2s ease 0s, 
                max-width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.post .entry-header .donate-button-banner:hover {
    width: 135px;
    background: #E5B83D;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.post .entry-header .donate-button-banner:hover .donate-text {
    opacity: 1;
    max-width: 80px;
    transition: opacity 0.2s ease 0.1s, 
                max-width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.post .entry-header .donate-button-banner:hover .donate-icon {
    width: 30px;
}

.post .entry-header .donate-button-banner:active {
    transform: scale(0.97);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .post .entry-header {
        min-height: 380px;
    }
    
    .post .entry-header .wrap {
        padding-top: calc(2 * var(--wp--preset--spacing--large));
        padding-bottom: 150px;
    }
    
    .post .entry-header .entry-title {
        font-size: clamp(1.5rem, 6vw, 2.25rem);
    }
    
    .post .entry-header .entry-meta-author {
        display: flex;
        margin-right: 0;
        margin-bottom: 8px;
    }
    
    .post .entry-header .entry-meta-dates {
        display: flex;
    }
    
    .post .entry-header .floating-heart {
        display: none;
    }
    
    .post .entry-header .floating-heart.heart-1,
    .post .entry-header .floating-heart.heart-2,
    .post .entry-header .floating-heart.heart-3,
    .post .entry-header .floating-heart.heart-4,
    .post .entry-header .floating-heart.heart-5 {
        display: block;
    }
    
    .post .entry-header .donate-button-banner {
        width: 46px;
        height: 46px;
        border-radius: 23px;
    }
    
    .post .entry-header .donate-button-banner .donate-icon {
        width: 46px;
        height: 46px;
    }
    
    .post .entry-header .donate-button-banner .donate-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .post .entry-header .donate-button-banner:hover {
        width: 130px;
    }
}

/* Archive Header - Same Design as Post Banner */
.archive-header {
    position: relative;
    background: #E86B5E;
    color: var(--wp--preset--color--white);
    min-height: 420px;
    overflow: visible;
    padding-bottom: 50px;
    margin-bottom: 0;
    z-index: 1;
}

.archive-header .entry-header {
    position: relative;
    background: #E86B5E;
    color: var(--wp--preset--color--white);
    min-height: 420px;
    overflow: visible;
    padding-bottom: 50px;
    width: 100%;
    margin-top: 150px;
}

.archive-header .entry-header .wrap {
    position: relative;
    z-index: 25;
    max-width: var(--wp--custom--layout--small-content);
    padding-top: calc(3 * var(--wp--preset--spacing--large));
    padding-bottom: 180px;
}

.archive-header .entry-header .entry-header-content {
    position: relative;
}

.archive-header .entry-header a {
    text-decoration: none;
}

.archive-header .entry-header a:hover {
    color: var(--wp--preset--color--white);
    opacity: 0.9;
}

/* Floating Hearts Animation for Archive Header */
.archive-header .entry-header .floating-hearts {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 10;
    overflow: hidden;
}

.archive-header .entry-header .floating-heart {
    position: absolute;
    color: rgba(255, 255, 255, 0.5);
    animation: float-heart 4s ease-in-out infinite;
}

.archive-header .entry-header .floating-heart svg {
    stroke: currentColor;
    stroke-width: 2;
}

.archive-header .entry-header .heart-1 {
    top: 10%;
    left: 6%;
    animation-duration: 5s;
    animation-delay: 0s;
}

.archive-header .entry-header .heart-2 {
    top: 6%;
    right: 18%;
    animation-duration: 4.5s;
    animation-delay: 0.5s;
    animation-name: float-heart-alt;
}

.archive-header .entry-header .heart-3 {
    top: 3%;
    right: 6%;
    animation-duration: 5.5s;
    animation-delay: 1s;
}

.archive-header .entry-header .heart-4 {
    top: 30%;
    left: 3%;
    animation-duration: 4s;
    animation-delay: 0.3s;
    animation-name: float-heart-alt;
}

.archive-header .entry-header .heart-5 {
    top: 22%;
    right: 22%;
    animation-duration: 6s;
    animation-delay: 0.8s;
}

.archive-header .entry-header .heart-6 {
    top: 45%;
    right: 4%;
    animation-duration: 4.2s;
    animation-delay: 1.2s;
    animation-name: float-heart-alt;
}

.archive-header .entry-header .heart-7 {
    top: 55%;
    left: 10%;
    animation-duration: 5.8s;
    animation-delay: 0.6s;
}

.archive-header .entry-header .heart-8 {
    top: 40%;
    right: 14%;
    animation-duration: 4.8s;
    animation-delay: 1.5s;
    animation-name: float-heart-alt;
}

.archive-header .entry-header .heart-9 {
    top: 18%;
    left: 18%;
    animation-duration: 5.2s;
    animation-delay: 0.2s;
}

.archive-header .entry-header .heart-10 {
    top: 65%;
    right: 8%;
    animation-duration: 4.6s;
    animation-delay: 0.9s;
    animation-name: float-heart-alt;
}

.archive-header .entry-header .heart-11 {
    top: 70%;
    left: 4%;
    animation-duration: 5.4s;
    animation-delay: 1.3s;
}

.archive-header .entry-header .heart-12 {
    top: 12%;
    right: 30%;
    animation-duration: 4.4s;
    animation-delay: 0.7s;
    animation-name: float-heart-alt;
}

/* Diagonal Edge with Layered Stripes for Archive Header */
.archive-header .entry-header::after {
    content: '';
    position: absolute;
    bottom: -22px;
    left: 0;
    right: 0;
    height: 150px;
    background-color: transparent;
    background-image: none;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% auto;
    z-index: 15;
}

.archive-header .entry-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 75px;
    background: #fff;
    z-index: 14;
}

/* Donate Button for Archive Header */
.archive-header .entry-header .donate-button-banner {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    width: 52px;
    background: #F5C547;
    border-radius: 26px;
    color: #3D3D3D;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    overflow: hidden;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                background 0.2s ease,
                box-shadow 0.2s ease;
    z-index: 30;
}

.archive-header .entry-header .donate-button-banner .donate-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
}

.archive-header .entry-header .donate-button-banner .donate-text {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transition: opacity 0.2s ease 0s, 
                max-width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.archive-header .entry-header .donate-button-banner:hover {
    width: 135px;
    background: #E5B83D;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.archive-header .entry-header .donate-button-banner:hover .donate-text {
    opacity: 1;
    max-width: 80px;
    transition: opacity 0.2s ease 0.1s, 
                max-width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.archive-header .entry-header .donate-button-banner:hover .donate-icon {
    width: 30px;
}

.archive-header .entry-header .donate-button-banner:active {
    transform: scale(0.97);
}

/* Archive Inner Header Content */
.archive-header .archive-inner-header {
}

.archive-header .archive-title {
    margin: 0;
    color: var(--wp--preset--color--white);
}

.archive-header .archive-description {
    color: var(--wp--preset--color--white);
}

.archive-header .archive-description p {
    color: var(--wp--preset--color--white);
    opacity: 0.95;
}

/* Remove old archive-header pseudo-elements */
.archive-header:after {
    display: none;
}

.archive-header::before {
    display: none;
}

.archive-inner-header:after,
.archive-inner-header:before {
    display: none;
}

/* Responsive adjustments for Archive Header */
@media (max-width: 768px) {
    .archive-header {
        min-height: 380px;
    }
    
    .archive-header .entry-header {
        min-height: 380px;
    }
    
    .archive-header .entry-header .wrap {
        padding-top: calc(2 * var(--wp--preset--spacing--large));
        padding-bottom: 150px;
    }
    
    .archive-header .archive-title {
        font-size: clamp(1.5rem, 6vw, 2.25rem);
    }
    
    .archive-header .entry-header .floating-heart {
        display: none;
    }
    
    .archive-header .entry-header .floating-heart.heart-1,
    .archive-header .entry-header .floating-heart.heart-2,
    .archive-header .entry-header .floating-heart.heart-3,
    .archive-header .entry-header .floating-heart.heart-4,
    .archive-header .entry-header .floating-heart.heart-5 {
        display: block;
    }
    
    .archive-header .entry-header .donate-button-banner {
        width: 46px;
        height: 46px;
        border-radius: 23px;
    }
    
    .archive-header .entry-header .donate-button-banner .donate-icon {
        width: 46px;
        height: 46px;
    }
    
    .archive-header .entry-header .donate-button-banner .donate-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .archive-header .entry-header .donate-button-banner:hover {
        width: 130px;
    }
}

/* Post Entry Content */
.post .entry-content {
}

.post .entry-content .wrap {
    max-width: var(--wp--custom--layout--small-content);
}

.post .entry-content .wrap p {
    margin-top: 0;
}

.post .entry-content .wrap p:last-of-type {
    margin-bottom: 0;
}

/* Post Images */
.post .wp-block-image.aligncenter {
    width: 100%;
}

.post .wp-block-image.aligncenter img {
    margin: auto;
}

.post article .entry-image .wrap {
    max-width: calc(var(--wp--custom--layout--small-content) * 1.25);
}

div#wpadminbar {
    z-index: 9999999;
}

/* ==========================================================================
   9. GRID & FLEX UTILITIES
   ========================================================================== */

/* Flexbox */
.flex {
    display: flex;
    flex-wrap: wrap;
    margin-right: calc(0px - var(--wp--custom--layout--small-padding));
    margin-left: calc(0px - var(--wp--custom--layout--small-padding));
}

.flex>div {
    padding: var(--wp--custom--layout--small-padding);
}

.v-align {
    align-items: center;
    height: 100%;
}

.h-align {
    justify-content: center;
}

/* Flex Column Widths */
.col-100 {
    flex: 0 0 100%;
}

.col-75 {
    flex: 0 0 75%;
}

.col-66 {
    flex: 0 0 66.6666%;
}

.col-50 {
    flex: 0 0 50%;
}

.col-33 {
    flex: 0 0 33.3333%;
}

.col-25 {
    flex: 0 0 25%;
}

.col-20,
.has-5-columns>div {
    flex: 0 0 20%;
}

.col-10 {
    flex: 0 0 10%;
}

/* CSS Grid */
.grid {
    display: grid;
    grid-column-gap: var(--wp--preset--spacing--medium);
    grid-row-gap: var(--wp--preset--spacing--medium);
}

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

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

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

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

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

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

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





/* ==========================================================================
   10. MEDIA QUERIES
   ========================================================================== */

/* Desktop (1200px+) */
@media (min-width: 1200px) {
    #nav-menu {
        display: flex;
    }

    #mobile-nav-menu {
        display: none;
    }

    #toggle-wrap {
        display: none;
    }
}

/* Tablet & Below (782px) */
@media (max-width: 782px) {
    #wpadminbar {
        display: none !important;
    }
}

/* Mobile (600px) */
@media screen and (max-width: 600px) {
    .error-404 {
        min-height: 60vh;
        padding: var(--wp--preset--spacing--large) var(--wp--preset--spacing--medium);
    }

    .error-404__search .search-form {
        flex-direction: column;
    }

    .error-404__decoration {
        width: 150px;
        height: 150px;
    }
}

/* ==========================================================================
   20. CARD COMPONENT STYLES
   ========================================================================== */

/* Base Card (archive.php) */
.card {
    position: relative;
    background: var(--wp--preset--color--white);
    border-radius: var(--wp--custom--border--radius--medium);
    box-shadow: 0 0 0 1px rgb(15 11 34 / 10%);
    overflow: hidden;
    transition: all 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px -12px rgba(28, 33, 29, .18), 0 0 0 1px rgba(28, 33, 29, .04);
}

.card a,
.card .card-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.card .card-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--wp--preset--color--grey);
}

.card .card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card:hover .card-thumbnail img {
    transform: scale(1.05);
}

.card .card-meta {
    padding: var(--wp--preset--spacing--medium);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    gap: var(--wp--preset--spacing--small);
}

.card .card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 10px;
    border-radius: var(--wp--custom--border--radius--small);
    font-size: var(--wp--preset--font-size--min);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    color: var(--wp--preset--color--black);
    backdrop-filter: blur(4px);
}

.card .card-date-block {
    display: none;
    /* Only for Events */
}

.card .card-title {
    font-size: var(--wp--preset--font-size--medium);
    line-height: var(--wp--custom--line-height--small);
    margin: 0;
}

.card .card-byline, .card .event-date {
    margin-bottom: 15px;
}

.card .card-date {
}

.card .card-excerpt {
    font-size: var(--wp--preset--font-size--tiny);
    color: var(--wp--custom--color--neutral--700);
    margin-bottom: auto;
    /* Push read more to bottom */
    line-height: var(--wp--custom--line-height--normal);
}

.card .card-readmore,
.card .button {
    font-size: var(--wp--preset--font-size--tiny);
    font-weight: 700;
    color: var(--wp--preset--color--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
}

/* --------------------------------------------------------------------------
   Special Variation: Event Card (archive-event.php)
   -------------------------------------------------------------------------- */
.card.type-event .card-thumbnail {
    aspect-ratio: 16 / 9;
}

.card.type-event .card-date-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 15px;
    left: 15px;
    width: 60px;
    height: 60px;
    background: var(--wp--preset--color--white);
    border-radius: var(--wp--custom--border--radius--small);
    z-index: 5;
    box-shadow: var(--wp--preset--shadow--natural);
    text-align: center;
    line-height: 1;
}

.card.type-event .card-date-block .day {
    font-size: 24px;
    font-weight: 800;
    color: var(--wp--preset--color--primary);
    display: block;
}

.card.type-event .card-date-block .month {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--wp--preset--color--black);
    display: block;
    margin-top: 2px;
}

/* --------------------------------------------------------------------------
   Special Variation: Team Card (archive-team.php)
   -------------------------------------------------------------------------- */
.card.type-team {
    text-align: center;
    background: transparent;
    box-shadow: none;
    border: 1px solid var(--wp--preset--color--grey);
}

.card.type-team:hover {
    border-color: var(--wp--preset--color--secondary);
    box-shadow: var(--wp--preset--shadow--subtle);
    background: var(--wp--preset--color--white);
}

.card.type-team .card-thumbnail {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 30px auto 15px auto;
    aspect-ratio: 1 / 1;
    border: 4px solid var(--wp--preset--color--white);
    box-shadow: var(--wp--preset--shadow--natural);
}

.card.type-team .card-meta {
    align-items: center;
    padding-top: 0;
}

.card.type-team .card-title {
    font-size: var(--wp--preset--font-size--large);
    margin-bottom: 5px;
}

.card.type-team .team-role {
    font-size: var(--wp--preset--font-size--small);
    color: var(--wp--preset--color--primary);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.card.type-team .card-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
}

.card.type-team .card-social a {
    width: 32px;
    height: 32px;
    background: var(--wp--preset--color--octonary);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--wp--preset--color--black);
    font-size: 14px;
    transition: all 0.2s ease;
}

.card.type-team .card-social a:hover {
    background: var(--wp--preset--color--secondary);
    color: var(--wp--preset--color--white);
}

/* Mobile Adjustments */
@media screen and (max-width: 768px) {
    .card .card-meta {
        padding: var(--wp--preset--spacing--small);
    }

    .card .card-title {
        font-size: var(--wp--preset--font-size--normal);
    }
}

/* --------------------------------------------------------------------------
   Special Variation: Our Work Card (archive-our_work.php)

   Matches the "A handful of other sites we've shipped lately" section of
   Plans/homepage.html Ã¢â‚¬â€ 4:3 cover image, padded body, outcome metrics row
   pinned to the bottom above a divider.
   -------------------------------------------------------------------------- */
.card.type-our_work {
}

.card.type-our_work:hover {
}

.card.type-our_work .card-thumbnail {
}

.card.type-our_work .card-meta {
}

.card.type-our_work .card-categories {
    font-size: var(--wp--preset--font-size--min);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--wp--custom--color--neutral--600);
    background: none;
    padding: 0;
    position: static;
}

.card.type-our_work .card-title {
}

.card.type-our_work .card-excerpt {
    color: var(--wp--custom--color--neutral--700);
    margin: 0;
}

.card.type-our_work .card-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: var(--wp--preset--spacing--small);
    margin-top: auto;
    padding-top: var(--wp--preset--spacing--small);
    border-top: 1px solid var(--wp--preset--color--grey);
}

.card.type-our_work .card-metrics .metric {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.card.type-our_work .card-metrics .metric strong {
    font-size: var(--wp--preset--font-size--medium);
    font-weight: 600;
    color: var(--metric-color, var(--wp--preset--color--primary));
    line-height: 1;
}

.card.type-our_work .card-metrics .metric span {
    font-size: var(--wp--preset--font-size--min);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--wp--custom--color--neutral--600);
}


/* ==========================================================================
   12. BLOCK STYLES Ã¢â‚¬â€ Ambient Group overlays

   Two radial colour-blobs layered behind a group's content. Registered as
   block styles in inc/block-styles.php; select via the Styles panel after
   adding a Group block and (optionally) a dark background colour.

   Each preset sets two CSS custom properties (--orbit-ambient-1 / -2).
   inc/block-styles.php can override these per-instance via inline style="",
   so future editor controls can expose manual colour pickers without
   touching this stylesheet.
   ========================================================================== */

.wp-block-group[class*="is-style-ambient-"] {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.wp-block-group[class*="is-style-ambient-"]::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(500px 300px at 80% 20%, var(--orbit-ambient-1, transparent), transparent 60%),
        radial-gradient(600px 400px at 15% 110%, var(--orbit-ambient-2, transparent), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Content sits above the gradient overlay. */
.wp-block-group[class*="is-style-ambient-"] > * {
    position: relative;
    z-index: 1;
}

/* ----- Presets -----
   Re-skinned for the Prospect Hospice palette: each preset blends two of the
   three brand tints. Block style registrations live in inc/block-styles.php. */

.wp-block-group.is-style-ambient-spring {
    --orbit-ambient-1: rgba(0, 176, 32, 0.22);     /* primary / green */
    --orbit-ambient-2: rgba(156, 59, 169, 0.22);   /* tertiary / purple */
}

.wp-block-group.is-style-ambient-bloom {
    --orbit-ambient-1: rgba(242, 36, 119, 0.25);   /* secondary / magenta */
    --orbit-ambient-2: rgba(156, 59, 169, 0.28);   /* tertiary / purple */
}

.wp-block-group.is-style-ambient-meadow {
    --orbit-ambient-1: rgba(0, 176, 32, 0.25);     /* primary / green */
    --orbit-ambient-2: rgba(242, 36, 119, 0.22);   /* secondary / magenta */
}


/* ==========================================================================
   13. BLOCK STYLES Ã¢â‚¬â€ Glow Image drop-shadows

   Palette-tinted soft drop shadow on core/image. Registered as block styles
   in inc/block-styles.php; pick from the Styles panel after inserting an
   Image block. Each preset sets --orbit-glow, which inc/block-styles.php
   can override per-instance via inline style="" (so a future editor control
   can expose a ColorPalette picker without touching this stylesheet).

   The shadow lands on <img> so it follows any border-radius set on the
   image; the custom property inherits from the <figure> wrapper where WP
   puts the is-style-* class.
   ========================================================================== */

.wp-block-image[class*="is-style-glow-"] img {
    box-shadow: 0 60px 120px -40px var(--orbit-glow, transparent);
}

/* ----- Presets ----- */

.wp-block-image.is-style-glow-primary    { --orbit-glow: rgba(0, 176, 32, 0.45); }   /* primary / green */
.wp-block-image.is-style-glow-secondary  { --orbit-glow: rgba(242, 36, 119, 0.45); }  /* secondary / magenta */
.wp-block-image.is-style-glow-tertiary   { --orbit-glow: rgba(156, 59, 169, 0.45); }  /* tertiary / purple */

/* ==========================================================================
   Sticky (core/group, core/column)

   Block style preset that pins the block to the top of the viewport once its
   parent container scrolls past. Registered in inc/block-styles.php; pick
   "Sticky on scroll" from the Styles panel after inserting a Group or Column.

   Requires the block's direct parent to be a flex/grid container (which is
   how core/columns already renders) and to be taller than the sticky item Ã¢â‚¬â€
   otherwise there is nothing to scroll past.

   Offset from the top is controlled by --orbit-sticky-top (default 140px to
   clear the fixed header). Override per-instance with inline style="" or
   globally in theme.json.
   ========================================================================== */

.is-style-sticky {
    position: sticky;
    top: var(--orbit-sticky-top, 140px);
    align-self: start;
}

/* ==========================================================================
   INSIGHTS (home) Ã¢â‚¬â€ scoped to body.insights
   Design handoff: /tmp/design-fetch/nebula-design-v2/project/Insights.html
   All colors/spacing map to theme.json tokens; page-local neutrals are
   declared once below.
   ========================================================================== */

:root {
    /* Semantic aliases â€” every value resolves to a theme.json token so
       theme.json remains the single source of truth for design atoms.
       These aliases exist purely as shorter, intent-led names; changing
       a token in theme.json updates every consumer.
       Colour atoms:     settings.custom.color.*           / settings.color.palette.*
       Gradient atoms:   settings.color.gradients.*
       Layout atom:      settings.custom.header.height */
    --site-header-h: var(--wp--custom--header--height);

    --i-bg-soft: var(--wp--preset--color--tertiary-50);
    --i-ink-soft: var(--wp--custom--color--ink-soft);
    --i-mute: var(--wp--custom--color--mute);
    --i-line: var(--wp--custom--color--line);
    --i-ink: var(--wp--preset--color--charcoal);
    --i-primary: var(--wp--preset--color--primary);
    --i-secondary: var(--wp--preset--color--secondary);
    --i-tertiary: var(--wp--preset--color--tertiary);
    --i-primary-50: var(--wp--preset--color--primary-50);
    --i-secondary-50: var(--wp--preset--color--secondary-50);
    --i-tertiary-50: var(--wp--preset--color--tertiary-50);

    /* Legacy aliases kept while older insights markup still references --i-pink/-yellow/-purple.
       Each maps to its closest brand equivalent so visual rhythm is preserved. */
    --i-pink: var(--wp--preset--color--primary);
    --i-yellow: var(--wp--preset--color--secondary);
    --i-purple: var(--wp--preset--color--tertiary);
    --i-green: var(--wp--preset--color--primary);
    --i-blue: var(--wp--preset--color--tertiary);
    --i-deep: var(--wp--preset--color--charcoal);
}

/* Shared pill button primitive â€” used by .post-share-btn and anywhere else that
   wants a rounded, subtle-bordered action chip. */
.btn-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border: 1px solid var(--i-line);
    border-radius: var(--wp--custom--border--radius--pill);
    background: var(--wp--preset--color--white);
    color: var(--i-ink);
    font: inherit;
    font-size: var(--wp--preset--font-size--min);
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: color .2s ease, border-color .2s ease, transform .2s ease;
}

.btn-pill:hover {
    border-color: var(--i-pink);
    color: var(--i-pink);
    transform: translateY(-1px);
}

.btn-pill svg { display: block; }

body.insights { font-family: 'Poppins', system-ui, sans-serif; color: var(--i-ink); }

/* ==========================================================================
   Reusable page hero (.page-hero)

   Shared chrome for full-width intro bands: soft tinted background + two
   radial blobs + contained wrap + eyebrow + h1 + lede. Add a variant modifier
   for page-specific extras:

     .page-hero.page-hero--insights  â†’  search bar + counts row
     .page-hero.page-hero--post      â†’  back link + meta row + share row
                                        (variant rules live in single-post.css)
   ========================================================================== */
.page-hero {
    background: var(--i-bg-soft);
    position: relative;
    overflow: hidden;
    padding: var(--wp--preset--spacing--small) 0 var(--wp--preset--spacing--x-large) 0;
}
.page-hero::before {
    content: "";
    position: absolute;
    right: -140px;
    top: -140px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: var(--wp--preset--color--primary-50);
    opacity: 0.5;
    pointer-events: none;
}
.page-hero::after {
    content: "";
    position: absolute;
    left: -160px;
    bottom: -160px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: var(--wp--preset--color--tertiary-50);
    opacity: 0.5;
    pointer-events: none;
}
.page-hero .hero-wrap {
    position: relative;
    padding-top: var(--wp--preset--spacing--xx-large);
    padding-bottom: var(--wp--preset--spacing--xx-large);
}
.page-hero .eyebrow {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: var(--wp--preset--font-size--min);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--i-ink-soft);
    display: inline-flex;
    gap: 12px;
    align-items: center;
    margin-bottom: var(--wp--preset--spacing--medium);
}
.page-hero .eyebrow .bar { width: 28px; height: 1.5px; background: var(--i-pink); }
.page-hero .eyebrow .num { color: var(--i-ink); font-weight: 500; }
.page-hero a.eyebrow { text-decoration: none; }
.page-hero a.eyebrow:hover { color: var(--i-pink); }
.page-hero h1 {
    font-size: var(--wp--preset--font-size--gargantuan);
    line-height: 0.94;
    letter-spacing: -0.045em;
    margin: 0;
}
.page-hero h1 em,
.page-hero h1 mark { font-style: normal; color: var(--i-pink); background: transparent; }
.page-hero h1 .y { background: linear-gradient(180deg, transparent 70%, var(--wp--preset--color--primary-50) 70%); }
.page-hero .lede {
    margin: var(--wp--preset--spacing--x-large) 0;
    font-size: var(--wp--preset--font-size--medium);
    color: var(--i-ink-soft);
    max-width: 640px;
    line-height: var(--wp--custom--line-height--normal);
}

/* ---------- Insights variant: search row + counts ---------- */
.page-hero--insights .search-row { margin-top: 48px; display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; }
.page-hero--insights .search-bar {
    background: #fff;
    border: 1px solid var(--i-line);
    border-radius: var(--wp--custom--border--radius--pill);
    padding: 6px 6px 6px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 1px 2px rgba(28, 33, 29, 0.06), 0 0 0 1px rgba(28, 33, 29, 0.04);
}
.page-hero--insights .search-bar svg { color: var(--i-ink-soft); flex-shrink: 0; }
.page-hero--insights .search-bar input { flex: 1; border: none; outline: none; background: transparent; font: inherit; font-size: 16px; padding: 14px 0; color: var(--i-ink); min-width: 0; }
.page-hero--insights .search-bar input::placeholder { color: var(--i-mute); }
.page-hero--insights .search-bar .go {
    background: var(--i-ink);
    color: #fff;
    padding: 17px 22px;
    border-radius: var(--wp--custom--border--radius--pill);
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: background .2s;
}
.page-hero--insights .search-bar .go:hover { background: var(--i-pink); }
.page-hero--insights .counts { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--i-ink-soft); display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.page-hero--insights .counts strong { color: var(--i-ink); font-weight: 600; }

/* ---------- Sticky pill filter bar ---------- */
body.insights .cats-wrap {
    position: sticky;
    top: var(--site-header-h);
    z-index: 40;
    margin: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: saturate(160%) blur(12px);
    -webkit-backdrop-filter: saturate(160%) blur(12px);
    border-bottom: 1px solid rgba(28, 33, 29, 0.04);
    transition: background 0.2s ease, border-color 0.2s ease;
}
body.insights .cats-wrap .cats {
    padding-top: var(--wp--preset--spacing--small);
    padding-bottom: var(--wp--preset--spacing--small);
    display: flex;
    gap: var(--wp--preset--spacing--small);
    flex-wrap: nowrap;
    align-items: center;
    min-width: 0;
}
body.insights .cats-wrap .cats-scroller {
    position: relative;
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
}
body.insights .cats-wrap .cats-scroll {
    display: flex;
    gap: 8px;
    align-items: center;
    flex: 1 1 auto;
    min-width: 0;
    padding: 5px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
}
body.insights .cats-wrap .cats-scroller.has-overflow-end .cats-scroll {
    -webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 150px), transparent 100%);
            mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 150px), transparent 100%);
}
body.insights .cats-wrap .cats-scroller.has-overflow-start.has-overflow-end .cats-scroll {
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 150px, #000 calc(100% - 150px), transparent 100%);
            mask-image: linear-gradient(to right, transparent 0, #000 150px, #000 calc(100% - 150px), transparent 100%);
}
body.insights .cats-wrap .cats-scroller.has-overflow-start:not(.has-overflow-end) .cats-scroll {
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 150px, #000 100%);
            mask-image: linear-gradient(to right, transparent 0, #000 150px, #000 100%);
}
body.insights .cats-wrap .cats-scroll::-webkit-scrollbar { display: none; }
body.insights .cats-wrap .cats-scroll .cat {
    flex: 0 0 auto;
    white-space: nowrap;
    scroll-snap-align: start;
}
body.insights .cats-wrap .cats-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: var(--wp--custom--border--radius--pill);
    border: 1px solid var(--i-line);
    background: #fff;
    color: var(--i-ink);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 2px rgba(28, 33, 29, 0.06);
    transition: opacity .15s ease, transform .15s ease, border-color .15s ease;
}
body.insights .cats-wrap .cats-nav:hover { border-color: var(--i-ink); }
body.insights .cats-wrap .cats-nav-prev { left: -4px; }
body.insights .cats-wrap .cats-nav-next { right: -4px; }
body.insights .cats-wrap .cats-nav.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) scale(0.85);
}
body.insights .cats .cat {
    padding: 0 18px;
    height: 36px;
    border-radius: var(--wp--custom--border--radius--pill);
    border: 1px solid var(--i-line);
    background: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    transition: all .2s;
    font-family: inherit;
    color: var(--i-ink);
    text-decoration: none;
}
body.insights .cats .cat:hover { border-color: var(--i-ink); }
body.insights .cats .cat.on { background: var(--i-ink); color: #fff; border-color: var(--i-ink); }
body.insights .cats .cat .n { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11px; opacity: .6; }
body.insights .cats .cat.on .n { opacity: .8; }
body.insights .cats .sort {
    margin-left: auto;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    font-size: 13px;
    color: var(--i-ink-soft);
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
body.insights .cats .sort select {
    border: 1px solid var(--i-line);
    background: #fff;
    border-radius: var(--wp--custom--border--radius--pill);
    padding: 0 14px;
    height: 36px;
    font: inherit;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 12px;
    color: var(--i-ink);
    cursor: pointer;
}

/* Hide the legacy generic archive-filter-bar on the Insights page
   (kept in markup for non-home archive templates). */
body.insights .archive-filter-bar { display: none; }

/* ---------- Featured (sticky post) ---------- */
body.insights .insights-featured-wrap { padding: var(--wp--preset--spacing--xx-large) 0 0 0; }
body.insights .featured {
    background: var(--i-ink);
    border-radius: var(--wp--custom--border--radius--medium);
    overflow: hidden;
    color: var(--wp--preset--color--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
    position: relative;
}
body.insights .featured::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(700px 500px at 10% 10%, rgba(0, 176, 32, 0.35), transparent 60%),
                radial-gradient(500px 400px at 90% 90%, rgba(242, 36, 119, 0.18), transparent 60%);
    pointer-events: none;
}
body.insights .featured .content {
    padding: var(--wp--preset--spacing--x-large);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: var(--wp--preset--spacing--large);
    position: relative;
    z-index: 1;
}
body.insights .featured .tags { display: flex; gap: 8px; flex-wrap: wrap; }
body.insights .featured .tags span {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: var(--wp--custom--border--radius--pill);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
body.insights .featured .tags .pin { background: var(--i-yellow); color: var(--i-ink); border-color: var(--i-yellow); }
body.insights .featured h2 {
    font-size: var(--wp--preset--font-size--colossal);
    line-height: 1.02;
    letter-spacing: -0.035em;
    color: var(--wp--preset--color--white);
    margin: var(--wp--preset--spacing--small) 0 var(--wp--preset--spacing--small);
    max-width: 520px;
    font-weight: 600;
}
body.insights .featured h2 a { color: inherit; text-decoration: none; }
body.insights .featured h2 a:hover { color: var(--i-yellow); }
body.insights .featured p { color: rgba(255, 255, 255, 0.78); font-size: var(--wp--preset--font-size--normal); max-width: 460px; line-height: var(--wp--custom--line-height--normal); }
body.insights .featured .meta { display: flex; gap: 20px; align-items: center; color: rgba(255, 255, 255, 0.8); font-size: 14px; }
body.insights .featured .meta .avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--wp--preset--color--secondary);
    color: var(--wp--preset--color--white);
    display: grid;
    place-items: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}
body.insights .featured .meta strong { color: #fff; font-weight: 500; }
body.insights .featured .meta .role,
body.insights .featured .meta .published { color: rgba(255, 255, 255, 0.55); }
body.insights .featured .foot { margin-top: 28px; }
body.insights .featured .foot .btn {
    background: var(--i-yellow);
    color: var(--i-ink);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 26px;
    border-radius: var(--wp--custom--border--radius--pill);
    font-weight: 500;
    font-size: 15.5px;
    text-decoration: none;
    transition: background .2s, transform .2s;
}
body.insights .featured .foot .btn:hover { background: #fff; transform: translateY(-1px); }
body.insights .featured .cover {
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
    background: var(--wp--preset--color--tertiary);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
}
body.insights .featured .cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
body.insights .featured .cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.06) 0 12px, transparent 12px 26px);
}
body.insights .featured .cover .badge {
    position: relative;
    z-index: 1;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    padding: 8px 14px;
    border-radius: var(--wp--custom--border--radius--pill);
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
}

/* ---------- Posts grid (6-col with w2/w3/w4 spans) ---------- */
body.insights .posts-wrap { padding: var(--wp--preset--spacing--xx-large) 0 0 0; }
body.insights .posts-wrap .posts {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--wp--preset--spacing--medium);
}

/* --------------------------------------------------------------------------
   Post card variant (.card.type-post)

   Works anywhere a post card is rendered â€” insights index, single-post related
   grid, landing pages, etc. Use the base `.card` anatomy from the block above,
   plus this variant for post-specific typography + thumbnail treatment.

   Card anatomy that's universal (.card-badge, .card .meta, .card-foot, and
   the p1..p9 gradient palette) sits below so any .card can opt in.
   -------------------------------------------------------------------------- */
.card.type-post .card-thumbnail {
    aspect-ratio: 16 / 9;
    display: grid;
    place-items: center;
    background: var(--wp--preset--color--primary-50);
}
.card.type-post .card-thumbnail::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.06) 0 10px, transparent 10px 22px);
    pointer-events: none;
}
.card.type-post .card-title {
    font-size: var(--wp--preset--font-size--medium);
    letter-spacing: -0.02em;
    line-height: var(--wp--custom--line-height--small);
    font-weight: 600;
    color: var(--i-ink);
}
.card.type-post .card-excerpt {
    color: var(--i-ink-soft);
    font-size: var(--wp--preset--font-size--tiny);
    line-height: var(--wp--custom--line-height--normal);
}

/* Universal card-anatomy bits (usable on any .card) */
.card .card-badge {
    position: relative;
    z-index: 1;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: var(--wp--preset--font-size--min);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--wp--preset--color--white);
    padding: var(--wp--preset--spacing--tiny) var(--wp--preset--spacing--small);
    border-radius: var(--wp--custom--border--radius--large);
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
}
.card .meta {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: var(--wp--preset--font-size--min);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--i-mute);
    display: flex;
    gap: var(--wp--preset--spacing--tiny);
    align-items: center;
    margin-bottom: var(--wp--preset--spacing--small);
}
.card .meta .cat-tag { color: var(--i-ink); font-weight: 500; }
.card .meta .cat-tag::after {
    content: "";
    display: inline-block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--i-mute);
    margin-left: 10px;
    vertical-align: middle;
}
.card .card-foot {
    margin-top: auto;
    padding-top: var(--wp--preset--spacing--small);
    border-top: 1px solid var(--i-line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--i-ink-soft);
    font-size: var(--wp--preset--font-size--min);
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.card .card-foot .card-readmore { color: var(--i-ink); font-weight: 500; }

/* Solid tinted card-thumbnail palette — cycles through the three brand
   tints so a row of cards shows visual variety without leaning on gradients. */
.card.p1 .card-thumbnail,
.card.p4 .card-thumbnail,
.card.p7 .card-thumbnail { background: var(--wp--preset--color--primary-50); }
.card.p2 .card-thumbnail,
.card.p5 .card-thumbnail,
.card.p8 .card-thumbnail { background: var(--wp--preset--color--secondary-50); }
.card.p3 .card-thumbnail,
.card.p6 .card-thumbnail,
.card.p9 .card-thumbnail { background: var(--wp--preset--color--tertiary-50); }
.card.p1 .card-badge,
.card.p4 .card-badge,
.card.p7 .card-badge,
.card.p2 .card-badge,
.card.p5 .card-badge,
.card.p8 .card-badge,
.card.p3 .card-badge,
.card.p6 .card-badge,
.card.p9 .card-badge { color: var(--wp--preset--color--charcoal); border-color: rgba(28, 33, 29, 0.18); background: rgba(255, 255, 255, 0.6); }

/* Insights 6-col asymmetric grid spans â€” page-layout only, stays scoped. */
body.insights .posts .card.w2 { grid-column: span 2; }
body.insights .posts .card.w3 { grid-column: span 3; }
body.insights .posts .card.w4 { grid-column: span 4; }
body.insights .posts .card.w6 { grid-column: span 6; }
body.insights .posts .card.w4 .card-title { font-size: var(--wp--preset--font-size--large); }
body.insights .posts .card.w6 .card-title { font-size: var(--wp--preset--font-size--big); }
body.insights .posts .card.w4 .card-thumbnail,
body.insights .posts .card.w6 .card-thumbnail { aspect-ratio: 21 / 9; }

/* ---------- Newsletter band ---------- */
.insights-news-wrap {padding: var(--wp--preset--spacing--xx-large) 0;}
.insights-news-wrap .news {
    background: var(--i-ink);
    color: var(--wp--preset--color--white);
    border-radius: var(--wp--custom--border--radius--medium);
    padding: var(--wp--preset--spacing--xx-large);
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: var(--wp--preset--spacing--x-large);
    align-items: center;
    position: relative;
    overflow: hidden;
}
.insights-news-wrap .news::before {
    content: "";
    position: absolute;
    right: -140px;
    top: -160px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(0, 176, 32, 0.35), transparent 70%);
}
.insights-news-wrap .news::after {
    content: "";
    position: absolute;
    left: -140px;
    bottom: -160px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(242, 36, 119, 0.3), transparent 70%);
}
.insights-news-wrap .news > * { position: relative; z-index: 1; }
.insights-news-wrap .eyebrow {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.75);
    display: inline-flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 22px;
}
.insights-news-wrap .eyebrow .bar { width: 28px; height: 1.5px; background: var(--i-yellow); }
.insights-news-wrap .news h2 { font-size: var(--wp--preset--font-size--colossal); color: var(--wp--preset--color--white); letter-spacing: -0.03em; line-height: 1.05; font-weight: 600; margin: 0; }
.insights-news-wrap .news h2 em,
.insights-news-wrap .news h2 mark { font-style: normal; color: var(--i-yellow); background: transparent; }
.insights-news-wrap .news .lede { margin-top: var(--wp--preset--spacing--small); color: rgba(255, 255, 255, 0.78); font-size: var(--wp--preset--font-size--normal); max-width: 440px; line-height: var(--wp--custom--line-height--normal); }
.insights-news-wrap .form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 22px;
    padding: 8px;
}
.insights-news-wrap .form .field { display: flex; gap: 8px; align-items: center; padding: 10px 14px; }
.insights-news-wrap .form input { flex: 1; background: transparent; border: none; outline: none; color: #fff; font: inherit; font-size: 16px; padding: 8px 0; }
.insights-news-wrap .form input::placeholder { color: rgba(255, 255, 255, 0.5); }
.insights-news-wrap .form .sub {
    background: var(--i-yellow);
    color: var(--i-ink);
    padding: 14px 20px;
    border-radius: 16px;
    font-weight: 500;
    font-size: 15px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    display: inline-flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    transition: background .2s;
}
.insights-news-wrap .form .sub:hover { background: #fff; }

/* ---------- Author spotlight ---------- */
body.insights .insights-spot-wrap { background: var(--i-bg-soft); padding: var(--wp--preset--spacing--xx-large) 0; }
body.insights .insights-spot-wrap .spot { display: grid; grid-template-columns: 1fr 1.5fr; gap: var(--wp--preset--spacing--x-large); align-items: center; }
body.insights .insights-spot-wrap .card {
    background: var(--wp--preset--color--white);
    border-radius: var(--wp--custom--border--radius--medium);
    overflow: hidden;
    box-shadow: 0 12px 30px -12px rgba(28, 33, 29, 0.18), 0 0 0 1px rgba(28, 33, 29, 0.04);
    display: block;
}
body.insights .insights-spot-wrap .portrait {
    aspect-ratio: 4 / 5;
    background: var(--wp--preset--color--tertiary);
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
}
body.insights .insights-spot-wrap .portrait::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.06) 0 10px, transparent 10px 22px);
}
body.insights .insights-spot-wrap .portrait .initials { position: relative; z-index: 1; font-size: 96px; font-weight: 600; color: rgba(255, 255, 255, 0.92); letter-spacing: -0.04em; }
body.insights .insights-spot-wrap .portrait .topic { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255, 255, 255, 0.96); padding: 0 24px; text-align: center; }
body.insights .insights-spot-wrap .portrait .topic .hash { font-size: 140px; font-weight: 600; letter-spacing: -0.06em; line-height: 0.8; }
body.insights .insights-spot-wrap .portrait .topic .slug { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 14px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255, 255, 255, 0.85); word-break: break-word; }
body.insights .insights-spot-wrap .who { padding: var(--wp--preset--spacing--medium); }
body.insights .insights-spot-wrap .who .name { font-size: var(--wp--preset--font-size--large); font-weight: 600; letter-spacing: -0.02em; }
body.insights .insights-spot-wrap .who .role { margin-top: 4px; color: var(--i-ink-soft); font-size: var(--wp--preset--font-size--min); font-family: 'JetBrains Mono', ui-monospace, monospace; text-transform: uppercase; letter-spacing: 0.12em; }
body.insights .insights-spot-wrap .eyebrow {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--i-ink-soft);
    display: inline-flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 22px;
}
body.insights .insights-spot-wrap .eyebrow .bar { width: 28px; height: 1.5px; background: var(--i-pink); }
body.insights .insights-spot-wrap .eyebrow .num { color: var(--i-ink); font-weight: 500; }
body.insights .insights-spot-wrap h2 { font-size: var(--wp--preset--font-size--massive); letter-spacing: -0.03em; line-height: 1.05; font-weight: 600; margin: 0; }
body.insights .insights-spot-wrap h2 em,
body.insights .insights-spot-wrap h2 mark { font-style: normal; color: var(--i-pink); background: transparent; }
body.insights .insights-spot-wrap .quote { margin-top: var(--wp--preset--spacing--small); font-size: var(--wp--preset--font-size--medium); color: var(--i-ink-soft); line-height: var(--wp--custom--line-height--normal); border-left: 3px solid var(--i-pink); padding-left: var(--wp--preset--spacing--small); max-width: 560px; }
body.insights .insights-spot-wrap .posts-list { margin-top: 28px; display: flex; flex-direction: column; gap: 2px; }
body.insights .insights-spot-wrap .posts-list a {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 14px 0;
    border-top: 1px solid var(--i-line);
    color: var(--i-ink);
    text-decoration: none;
    transition: color .2s;
}
body.insights .insights-spot-wrap .posts-list a:last-child { border-bottom: 1px solid var(--i-line); }
body.insights .insights-spot-wrap .posts-list .num { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11px; letter-spacing: 0.2em; color: var(--i-ink-soft); }
body.insights .insights-spot-wrap .posts-list .t { font-weight: 500; letter-spacing: -0.01em; }
body.insights .insights-spot-wrap .posts-list .d { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11px; color: var(--i-ink-soft); letter-spacing: 0.1em; text-transform: uppercase; }
body.insights .insights-spot-wrap .posts-list a:hover .t { color: var(--i-pink); }

/* ---------- Archive list ---------- */
body.insights .insights-arch-wrap { padding: var(--wp--preset--spacing--x-large) 0 var(--wp--preset--spacing--xx-large); }
body.insights .insights-arch-wrap .arch-head {margin-bottom: var(--wp--preset--spacing--large);gap: var(--wp--preset--spacing--medium) var(--wp--preset--spacing--xxx-large);display: flex;align-items: flex-end;}
body.insights .insights-arch-wrap .arch-head > * {
    flex-basis: 0;
    flex-grow: 1;
}
body.insights .insights-arch-wrap .arch-head .eyebrow { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.22em; color: var(--i-ink-soft); display: inline-flex; gap: 12px; align-items: center; margin-bottom: 22px; }
body.insights .insights-arch-wrap .arch-head .eyebrow .bar { width: 28px; height: 1.5px; background: var(--i-pink); }
body.insights .insights-arch-wrap .arch-head .eyebrow .num { color: var(--i-ink); font-weight: 500; }
body.insights .insights-arch-wrap .arch-head h2 {font-size: var(--wp--preset--font-size--massive);margin: 0;}
body.insights .insights-arch-wrap .arch-head h2 em,
body.insights .insights-arch-wrap .arch-head h2 mark { font-style: normal; color: var(--i-pink); background: transparent; }
body.insights .insights-arch-wrap .arch-head .lede {margin: var(--wp--preset--spacing--small) 0 0;color: var(--i-ink-soft);font-size: var(--wp--preset--font-size--normal);line-height: var(--wp--custom--line-height--normal);}
body.insights .arch { display: flex; flex-direction: column; }
body.insights .arch-row {
    display: grid;
    grid-template-columns: 110px 120px 1fr 160px 100px;
    gap: 28px;
    align-items: center;
    padding: 22px 0;
    border-top: 1px solid var(--i-line);
    transition: transform .2s;
    text-decoration: none;
    color: var(--i-ink);
}
body.insights .arch-row:last-child { border-bottom: 1px solid var(--i-line); }
body.insights .arch-row:hover { transform: translateX(12px); }
body.insights .arch-row:hover .t { color: var(--i-pink); }
body.insights .arch-row .date { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11.5px; letter-spacing: 0.15em; color: var(--i-ink-soft); text-transform: uppercase; }
body.insights .arch-row .cat-tag {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    display: inline-flex;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: var(--wp--custom--border--radius--pill);
    background: var(--i-bg-soft);
    color: var(--i-ink);
    justify-self: self-start;
}
body.insights .arch-row .t {font-size: var(--wp--preset--font-size--small);font-weight: 500;letter-spacing: -0.01em;transition: color .2s;}
body.insights .arch-row .auth { font-size: var(--wp--preset--font-size--tiny); color: var(--i-ink-soft); }
body.insights .arch-row .read {font-family: 'JetBrains Mono', ui-monospace, monospace;font-size: 11px;letter-spacing: 0.15em;color: var(--i-ink-soft);text-transform: uppercase;text-align: right;}
body.insights .arch-foot { margin-top: 40px; text-align: center; }
body.insights .arch-foot .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 26px;
    border-radius: var(--wp--custom--border--radius--pill);
    font-weight: 500;
    font-size: 15.5px;
    border: 1.5px solid var(--i-ink);
    color: var(--i-ink);
    text-decoration: none;
    transition: background .2s, color .2s, transform .2s;
    background: transparent;
    font-family: inherit;
}
body.insights .arch-foot .btn-ghost:hover { background: var(--i-ink); color: #fff; transform: translateY(-1px); }

/* ---------- CTA band ---------- */
.insights-cta-band {padding: 0 0 var(--wp--preset--spacing--xx-large) 0;}
.insights-cta-band .cta-inner {
    border-radius: var(--wp--custom--border--radius--medium);
    padding: var(--wp--preset--spacing--xxx-large);
    background: var(--wp--preset--color--tertiary);
    color: var(--wp--preset--color--white);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: var(--wp--preset--spacing--x-large);
    align-items: center;
}
.insights-cta-band .cta-inner::before {
    content: "";
    position: absolute;
    right: -160px;
    top: -160px;
    width: 520px;
    height: 520px;
    background: radial-gradient(closest-side, rgba(0, 176, 32, 0.4), transparent 70%);
}
.insights-cta-band .cta-inner::after {
    content: "";
    position: absolute;
    left: -120px;
    bottom: -180px;
    width: 500px;
    height: 500px;
    background: radial-gradient(closest-side, rgba(255, 255, 255, 0.15), transparent 70%);
}
.insights-cta-band .cta-inner > * { position: relative; z-index: 1; }
.insights-cta-band .eyebrow {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: var(--wp--preset--font-size--min);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.8);
    display: inline-flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 22px;
}
.insights-cta-band .eyebrow .bar { width: 28px; height: 1.5px; background: var(--i-yellow); }
.insights-cta-band h2 { font-size: var(--wp--preset--font-size--massive); letter-spacing: -0.035em; color: var(--wp--preset--color--white); line-height: 1.05; font-weight: 600; margin: 0; }
.insights-cta-band h2 em,
.insights-cta-band h2 mark { font-style: normal; color: var(--i-yellow); background: transparent; }
.insights-cta-band p { margin-top: var(--wp--preset--spacing--small); color: rgba(255, 255, 255, 0.85); max-width: 440px; font-size: var(--wp--preset--font-size--normal); line-height: var(--wp--custom--line-height--normal); }
.insights-cta-band .actions { margin-top: var(--wp--preset--spacing--medium); display: flex; gap: var(--wp--preset--spacing--small); flex-wrap: wrap; }
.insights-cta-band .btn-primary {
    background: var(--i-yellow);
    color: var(--i-ink);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 26px;
    border-radius: var(--wp--custom--border--radius--pill);
    font-weight: 500;
    font-size: 15.5px;
    text-decoration: none;
    transition: background .2s, transform .2s;
}
.insights-cta-band .btn-primary:hover { background: #fff; transform: translateY(-1px); }
.insights-cta-band .btn-ghost {
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 26px;
    border-radius: var(--wp--custom--border--radius--pill);
    font-weight: 500;
    font-size: 15.5px;
    text-decoration: none;
    transition: background .2s, color .2s, transform .2s;
    background: transparent;
}
.insights-cta-band .btn-ghost:hover { background: #fff; color: var(--i-ink); transform: translateY(-1px); }
.insights-cta-band .cta-inner--solo { grid-template-columns: 1fr; }
.insights-cta-band .cta-meta { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255, 255, 255, 0.6); display: flex; flex-direction: column; gap: 6px; }
.insights-cta-band .cta-meta .label { display: block; }
.insights-cta-band .cta-meta .value { display: block; color: var(--wp--preset--color--white); font-family: 'Poppins', ui-sans-serif, system-ui, sans-serif; font-size: 15px; letter-spacing: -0.01em; text-transform: none; text-decoration: none; margin-bottom: 14px; transition: color .2s; }
.insights-cta-band .cta-meta .value:last-child { margin-bottom: 0; }
.insights-cta-band .cta-meta .value--accent { color: var(--i-yellow); }
.insights-cta-band .cta-meta a.value:hover { color: var(--i-yellow); }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
    body.insights .posts-wrap .posts { grid-template-columns: repeat(2, 1fr); }
    body.insights .posts .card.w2,
    body.insights .posts .card.w3,
    body.insights .posts .card.w4,
    body.insights .posts .card.w6 { grid-column: span 2; }
    body.insights .featured,
    .insights-news-wrap .news,
    .insights-cta-band .cta-inner,
    body.insights .insights-spot-wrap .spot { grid-template-columns: 1fr; }
    body.insights .arch-row { grid-template-columns: 1fr; gap: 6px; }
    body.insights .arch-row:hover { transform: none; }
}

@media (max-width: 768px) {
    .page-hero--insights .search-row { grid-template-columns: 1fr; }
    body.insights .featured .content { padding: var(--wp--preset--spacing--large) var(--wp--preset--spacing--medium); gap: var(--wp--preset--spacing--small); }
    body.insights .featured .cover { min-height: 280px; }

    body.insights .posts-wrap .posts { gap: var(--wp--preset--spacing--small); }
    body.insights .cats-wrap .cats { flex-wrap: wrap; }
    body.insights .cats-wrap .cats-scroller { flex-basis: 100%; }
    body.insights .cats-wrap .cats-nav { display: none; }
    body.insights .cats .sort { margin-left: 0; width: 100%; justify-content: flex-start; flex-wrap: wrap; }
}

/* ---------- core/table Ã¢â‚¬â€ default style matches nblocks/comparison-table ---------- */
.wp-block-table {
    background: #fff;
    border: 1px solid var(--wp--preset--color--grey);
    border-radius: var(--wp--custom--border--radius--medium);
    overflow: hidden;
}
.wp-block-table table { width: 100%; border-collapse: collapse; }
.wp-block-table thead { background: var(--wp--preset--color--charcoal); color: #fff; }
.wp-block-table thead th {
    font-family: var(--wp--preset--font-family--mono);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    text-align: left;
    padding: 22px 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.wp-block-table thead th:last-child { border-right: none; }
.wp-block-table tbody td,
.wp-block-table:not(.has-fixed-layout) td {
    padding: 22px 28px;
    border-right: 1px solid var(--wp--preset--color--grey);
    border-top: 1px solid var(--wp--preset--color--grey);
    vertical-align: top;
}
.wp-block-table tbody tr:first-child td { border-top: none; }
.wp-block-table tbody td:last-child,
.wp-block-table:not(.has-fixed-layout) td:last-child { border-right: none; }
.wp-block-table tfoot tr td { border-top: 1px solid var(--wp--preset--color--grey); }

/* When the block has no <thead> WP still wraps all rows in <tbody>; the block
 * above already covers that. If the editor marks the first row as a header via
 * the header-row toggle, WP emits a <thead>, which gets the dark treatment. */

/* Caption: keep outside the rounded container's contrast zone. */
.wp-block-table figcaption {
    color: var(--wp--preset--color--charcoal);
    font-size: 13.5px;
    margin-top: 8px;
    text-align: center;
}

@media (max-width: 768px) {
    .wp-block-table { overflow-x: auto; }
    .wp-block-table thead th,
    .wp-block-table tbody td,
    .wp-block-table:not(.has-fixed-layout) td { padding: 16px 18px; }
}


/* ==========================================================================
   Services page â€” block style variations (registered in inc/block-styles.php)
   Built against theme.json tokens; no literals.
   ========================================================================== */

/* ---------------------------------------------------------------- */
/*  Checklist / Crosslist (core/list) â€” palette-aware fit & not-fit */
/* ---------------------------------------------------------------- */

/* Checklist (base in style.css) â€” the tick circle colour is controlled
   independently of the list's text colour via a `checkmark-{slug}` class
   added in the editor's Advanced â†’ Additional CSS classes field. This keeps
   text formatting the editor's concern (via the standard colour controls)
   while the tick stays a design-system accent. Tick glyph is an SVG baked
   with stroke="white", so these rules only repaint the circle. */
.wp-block-list.is-style-checklist.checkmark-primary   > li::before { background-color: var(--wp--preset--color--primary); }
.wp-block-list.is-style-checklist.checkmark-secondary > li::before { background-color: var(--wp--preset--color--secondary); }
.wp-block-list.is-style-checklist.checkmark-tertiary  > li::before { background-color: var(--wp--preset--color--tertiary); }
.wp-block-list.is-style-checklist.checkmark-charcoal  > li::before { background-color: var(--wp--preset--color--charcoal); }

/* Crosslist â€” white circle with a currentColor border and a currentColor X.
   The X is a ::after layer using a CSS mask so its colour follows the list's
   text colour without needing explicit per-palette rules. */
.wp-block-list.is-style-crosslist,
ul.is-style-crosslist {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.wp-block-list.is-style-crosslist > li,
ul.is-style-crosslist > li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0.5em 0;
    padding-left: 0;
    position: relative;
}

.wp-block-list.is-style-crosslist > li::before,
ul.is-style-crosslist > li::before {
    content: "";
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--wp--preset--color--white);
    border: 1.5px solid currentColor;
    box-sizing: border-box;
    margin-top: calc((1.55em - 22px) / 2);
}

.wp-block-list.is-style-crosslist > li::after,
ul.is-style-crosslist > li::after {
    content: "";
    position: absolute;
    left: 0;
    top: calc((1.55em - 22px) / 2);
    width: 22px;
    height: 22px;
    background-color: currentColor;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round'><line x1='7' y1='7' x2='17' y2='17'/><line x1='17' y1='7' x2='7' y2='17'/></svg>") center / 10px 10px no-repeat;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round'><line x1='7' y1='7' x2='17' y2='17'/><line x1='17' y1='7' x2='7' y2='17'/></svg>") center / 10px 10px no-repeat;
    pointer-events: none;
}

/* ---------------------------------------------------------------- */
/*  Feature card (core/group) â€” icon square + heading + paragraph   */
/* ---------------------------------------------------------------- */

.wp-block-group.is-style-feature-card {
    background: var(--wp--preset--color--white);
    border-radius: var(--wp--custom--border--radius--medium);
    box-shadow: var(--wp--preset--shadow--natural);
    padding: var(--wp--preset--spacing--large);
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 100%;
    transition: box-shadow .24s cubic-bezier(.2,.8,.2,1), transform .24s cubic-bezier(.2,.8,.2,1);
}

.wp-block-group.is-style-feature-card:hover {
    box-shadow: var(--wp--preset--shadow--deep);
    transform: translateY(-2px);
}

/* The first child is expected to be an nblocks/icon block â€” give it
   the 52x52 rounded wash square styling without requiring the editor
   to nest extra wrappers. */
.wp-block-group.is-style-feature-card > .wp-block-nblocks-icon:first-child {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.wp-block-group.is-style-feature-card h3 {
    font-size: var(--wp--preset--font-size--large);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: var(--wp--custom--line-height--small);
    margin: 0;
}

.wp-block-group.is-style-feature-card p {
    font-size: var(--wp--preset--font-size--normal);
    line-height: var(--wp--custom--line-height--medium);
    color: var(--wp--preset--color--charcoal);
    margin: 0;
}

/* ---------------------------------------------------------------- */
/*  Stat band (core/group) â€” gradient section wrapper               */
/* ---------------------------------------------------------------- */

.wp-block-group.is-style-stat-band {
    position: relative;
    overflow: hidden;
    background: var(--wp--preset--color--tertiary);
    color: var(--wp--preset--color--white);
    padding: var(--wp--preset--spacing--xx-large) var(--wp--preset--spacing--medium);
    border-radius: var(--wp--custom--border--radius--medium);
}

.wp-block-group.is-style-stat-band::before,
.wp-block-group.is-style-stat-band::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(20px);
}

.wp-block-group.is-style-stat-band::before {
    top: -40%;
    right: -10%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, color-mix(in srgb, var(--wp--preset--color--secondary) 35%, transparent), transparent 60%);
}

.wp-block-group.is-style-stat-band::after {
    bottom: -30%;
    left: -5%;
    width: 440px;
    height: 440px;
    background: radial-gradient(circle, color-mix(in srgb, var(--wp--preset--color--primary) 25%, transparent), transparent 60%);
}

.wp-block-group.is-style-stat-band > .wp-block-group__inner-container,
.wp-block-group.is-style-stat-band > * {
    position: relative;
    z-index: 1;
}

.wp-block-group.is-style-stat-band h2,
.wp-block-group.is-style-stat-band h3 {
    color: var(--wp--preset--color--white);
}

.wp-block-group.is-style-stat-band p {
    color: color-mix(in srgb, var(--wp--preset--color--white) 82%, transparent);
}

/* Inside the band, each core/column's first heading should read as a stat. */
.wp-block-group.is-style-stat-band .wp-block-columns {
    border-top: 1px solid color-mix(in srgb, var(--wp--preset--color--white) 33%, transparent);
    padding-top: var(--wp--preset--spacing--large);
    margin-top: var(--wp--preset--spacing--large);
}

.wp-block-group.is-style-stat-band .wp-block-column > :first-child {
    font-size: var(--wp--preset--font-size--gargantuan);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 0.95;
    margin: 0 0 14px;
}

.wp-block-group.is-style-stat-band .wp-block-column > :last-child {
    font-family: var(--wp--preset--font-family--mono);
    font-size: var(--wp--preset--font-size--min);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: color-mix(in srgb, var(--wp--preset--color--white) 82%, transparent);
    line-height: var(--wp--custom--line-height--medium);
    margin: 0;
}

/* ---------------------------------------------------------------- */
/*  CTA card (glass) â€” on dark gradient backgrounds                 */
/* ---------------------------------------------------------------- */

.wp-block-group.is-style-cta-card-glass,
.wp-block-column.is-style-cta-card-glass {
    background: color-mix(in srgb, var(--wp--preset--color--white) 8%, transparent);
    border: 1px solid color-mix(in srgb, var(--wp--preset--color--white) 14%, transparent);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border-radius: var(--wp--custom--border--radius--medium);
    padding: var(--wp--preset--spacing--large);
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: var(--wp--preset--color--white);
}

.wp-block-group.is-style-cta-card-glass,
.wp-block-column.is-style-cta-card-glass p {
    color: color-mix(in srgb, var(--wp--preset--color--white) 85%, transparent);
    margin: 0;
    text-wrap: pretty;
}

/* ---------------------------------------------------------------- */
/*  Steps (smaller number circles)                */
/* ---------------------------------------------------------------- */

.wp-block-nblocks-steps.is-style-compact .nblocks-step__number {
    width: 38px;
    height: 38px;
    font-size: 16px;
}
