body {
    --ghost-accent-color: #108fcf;
    --sw-primary: #108fcf;
    --sw-primary-dark: #0e80c4;
    --sw-navy: #24394c;
    --sw-navy-dark: #162636;
    --sw-ink: #1d2c3b;
    --sw-muted: #5b7288;
    --sw-surface: #f4f8fb;
    --sw-surface-strong: #e8f1f7;
    --sw-border: rgb(36 57 76 / 0.14);
    --sw-shadow: 0 22px 60px rgb(20 42 61 / 0.12);
    background:
        radial-gradient(circle at top left, rgb(16 143 207 / 0.08), transparent 28%),
        linear-gradient(180deg, #f9fcff 0, #ffffff 340px);
    color: var(--sw-ink);
}

.gh-navigation {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: auto;
    min-height: 88px;
    border-bottom: 1px solid var(--sw-border);
    background: rgb(255 255 255 / 0.94);
    backdrop-filter: blur(18px);
}

.gh-navigation-inner {
    min-height: 88px;
}

.gh-navigation--minimal .gh-navigation-inner-minimal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.gh-navigation-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.gh-navigation--minimal .gh-navigation-brand {
    flex: 0 0 auto;
}

.gh-navigation--minimal .gh-navigation-actions {
    margin-left: auto;
}

.gh-navigation.is-middle-logo .gh-navigation-inner {
    grid-template-columns: auto 1fr auto;
}

.gh-navigation.is-middle-logo .gh-navigation-brand {
    grid-column-start: 1;
}

.gh-navigation.is-middle-logo .gh-navigation-menu {
    justify-self: start;
    margin-right: 0;
    margin-left: 32px;
}

.gh-navigation.is-middle-logo .gh-navigation-actions {
    grid-column-start: 3;
    gap: 16px;
}

.gh-navigation--minimal .gh-navigation-menu,
.gh-navigation--minimal .gh-burger {
    display: none !important;
}

.gh-brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.gh-brand-logo-mark {
    display: inline-flex;
    align-items: center;
}

.gh-navigation-logo img,
.gh-footer-logo img {
    width: auto;
    max-width: 100%;
    max-height: 42px;
}

.gh-footer-logo {
    display: inline-flex;
    align-items: center;
}

.gh-navigation-menu .nav > li > a {
    position: relative;
    padding: 0.6rem 0;
    font-weight: 600;
    color: var(--sw-navy);
}

.gh-navigation-menu .nav > li > a::after {
    position: absolute;
    right: 0;
    bottom: -0.2rem;
    left: 0;
    height: 2px;
    content: "";
    border-radius: 999px;
    background: linear-gradient(90deg, var(--sw-primary), #76c8ea);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.gh-navigation-menu .nav > li > a:hover::after,
.gh-navigation-menu .nav > li.nav-current > a::after {
    transform: scaleX(1);
}

.gh-brand-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.gh-brand-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 1.45rem;
    font-weight: 650;
    letter-spacing: -0.012em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.gh-brand-link:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.gh-navigation .gh-brand-link,
.gh-footer .gh-brand-link {
    color: var(--sw-navy);
}

.gh-brand-link-ghost {
    background: rgb(16 143 207 / 0.08);
    border-color: rgb(16 143 207 / 0.08);
}

.gh-brand-link-secondary {
    background: #fff;
    border-color: var(--sw-border);
    box-shadow: 0 10px 24px rgb(20 42 61 / 0.08);
}

.gh-brand-link-primary {
    color: #fff !important;
    background: linear-gradient(135deg, var(--sw-primary), var(--sw-primary-dark));
    box-shadow: 0 14px 30px rgb(16 143 207 / 0.28);
}

.gh-header.is-classic {
    position: relative;
    overflow: hidden;
    padding-block: 84px 64px;
    color: #fff;
    background:
        radial-gradient(circle at top left, rgb(118 200 234 / 0.28), transparent 24%),
        radial-gradient(circle at bottom right, rgb(9 23 36 / 0.24), transparent 30%),
        linear-gradient(135deg, #162636 0%, #24394c 44%, #108fcf 100%);
}

.gh-header.is-classic::before,
.gh-header.is-classic.has-image::before,
.gh-header.is-classic.has-image .gh-header-image {
    display: none;
}

.gh-header.is-classic .gh-header-inner {
    gap: 22px;
    max-width: 1080px;
}

.gh-header-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem 1.4rem;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid rgb(255 255 255 / 0.16);
    border-radius: 999px;
    background: rgb(255 255 255 / 0.08);
}

.gh-header.is-classic .gh-header-title {
    max-width: 920px;
    font-size: clamp(3.8rem, 2vw + 2.8rem, 6rem);
    line-height: 1.04;
}

.gh-header-description {
    max-width: 760px;
    font-size: 1.85rem;
    line-height: 1.7;
    color: rgb(255 255 255 / 0.82);
}

.gh-header-cta-row {
    display: flex;
    justify-content: center;
    width: 100%;
}

.gh-header-cta-row .gh-brand-actions {
    justify-content: center;
}

.gh-header-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 880px;
}

.gh-header-highlight {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.95rem 1.4rem;
    font-size: 1.3rem;
    font-weight: 650;
    color: #fff;
    border: 1px solid rgb(255 255 255 / 0.14);
    border-radius: 999px;
    background: rgb(255 255 255 / 0.1);
    backdrop-filter: blur(10px);
}

.gh-header-cta-row .gh-brand-link-ghost {
    color: #fff;
    background: rgb(255 255 255 / 0.1);
    border-color: rgb(255 255 255 / 0.16);
}

.gh-header-cta-row .gh-brand-link-secondary {
    color: var(--sw-navy);
    border-color: transparent;
}

.gh-header.is-classic .gh-form {
    max-width: 680px;
    height: 62px;
    border: 1px solid rgb(255 255 255 / 0.18);
    background: rgb(255 255 255 / 0.14);
    box-shadow: 0 24px 60px rgb(9 23 36 / 0.18);
    backdrop-filter: blur(14px);
}

.gh-header.is-classic .gh-form:hover {
    background: rgb(255 255 255 / 0.18);
}

.gh-header.is-classic .gh-form-input,
.gh-header.is-classic .gh-form-input::placeholder,
.gh-header.is-classic .gh-form > svg {
    color: rgb(255 255 255 / 0.78);
}

.gh-header.is-classic .gh-form .gh-button {
    background: #fff;
    color: var(--sw-navy);
}

.gh-container {
    margin-top: 48px;
}

.gh-container-title {
    margin-bottom: 30px;
    padding-bottom: 0;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--sw-primary);
    text-transform: uppercase;
    border-bottom: 0;
}

.gh-container-title::after {
    display: block;
    width: 88px;
    height: 3px;
    margin-top: 12px;
    content: "";
    border-radius: 999px;
    background: linear-gradient(90deg, var(--sw-primary), #76c8ea);
}

.gh-section-heading {
    grid-column: 1 / -1;
    margin-bottom: 10px;
}

.gh-section-heading-compact {
    margin-bottom: 22px;
}

.gh-container-intro {
    max-width: 760px;
    margin-top: 10px;
    color: var(--sw-muted);
    font-size: 1.7rem;
    line-height: 1.65;
}

.gh-topic-strip {
    margin-top: 36px;
}

.gh-topic-strip-inner {
    padding: 34px;
    border: 1px solid var(--sw-border);
    border-radius: 32px;
    background: linear-gradient(180deg, #fff 0%, var(--sw-surface) 100%);
    box-shadow: var(--sw-shadow);
}

.gh-topic-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.gh-topic-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 1.4rem;
    color: var(--sw-navy);
    border: 1px solid var(--sw-border);
    border-radius: 999px;
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gh-topic-pill:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgb(20 42 61 / 0.1);
}

.gh-topic-pill-name {
    font-weight: 650;
}

.gh-topic-pill-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    min-height: 28px;
    padding: 0 0.8rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--sw-primary);
    border-radius: 999px;
    background: rgb(16 143 207 / 0.1);
}

.gh-feed {
    gap: 28px !important;
}

.gh-card {
    overflow: hidden;
    border: 1px solid var(--sw-border);
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--sw-shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.gh-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 70px rgb(20 42 61 / 0.16);
}

.gh-container.is-grid .gh-card::before,
.gh-container.is-grid .gh-card::after,
.gh-container.is-list .gh-card + .gh-card::before {
    display: none;
}

.gh-card-link,
.gh-container.is-list .gh-card-link {
    gap: 0;
    height: 100%;
    overflow: hidden;
    border-radius: inherit;
}

.gh-card-link:hover {
    opacity: 1;
}

.gh-card-image {
    overflow: hidden;
    background: var(--sw-surface-strong);
}

.gh-card-image-fallback {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 208px;
    padding: 22px;
    background:
        radial-gradient(circle at top right, rgb(16 143 207 / 0.28), transparent 34%),
        radial-gradient(circle at bottom left, rgb(11 58 102 / 0.34), transparent 42%),
        linear-gradient(145deg, #eff6fb 0%, #dcecf8 50%, #f7fbff 100%);
}

.gh-card-image-fallback::before,
.gh-card-image-fallback::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgb(255 255 255 / 0.58);
}

.gh-card-image-fallback::before {
    top: 22px;
    right: 26px;
    width: 92px;
    height: 92px;
}

.gh-card-image-fallback::after {
    bottom: 30px;
    left: 18px;
    width: 46px;
    height: 46px;
}

.gh-card-image-mark,
.gh-card-image-badge {
    position: relative;
    z-index: 1;
}

.gh-card-image-mark {
    max-width: 12ch;
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: rgb(11 58 102 / 0.9);
}

.gh-card-image-badge {
    margin-left: auto;
    display: inline-flex;
    width: fit-content;
    padding: 0.7rem 1.1rem;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #0b3a66;
    border: 1px solid rgb(11 58 102 / 0.1);
    border-radius: 999px;
    background: rgb(255 255 255 / 0.9);
    backdrop-filter: blur(10px);
}

.gh-card-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.gh-card-link:hover .gh-card-image img {
    transform: scale(1.04);
}

.gh-container.is-list .gh-card-image {
    width: 260px;
}

.gh-card-wrapper {
    padding: 28px 28px 26px;
}

.gh-card-tag {
    display: inline-flex;
    width: fit-content;
    padding: 0.65rem 1.15rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--sw-primary);
    text-transform: uppercase;
    border-radius: 999px;
    background: rgb(16 143 207 / 0.12);
}

.gh-card-title {
    margin-top: 18px;
    color: var(--sw-navy);
}

.gh-card-excerpt {
    color: var(--sw-muted);
    line-height: 1.65;
}

.gh-card-meta {
    color: #72869a;
}

.gh-container.is-grid.no-image .gh-feed {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gh-container.is-grid.no-image .gh-card-link {
    display: flex;
    flex-direction: column;
}

.gh-container.is-grid.no-image .gh-card-wrapper {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.gh-container.is-grid.no-image .gh-card-meta {
    margin-top: auto;
}

.post-template .gh-main,
.page-template .gh-main {
    padding-inline: var(--container-gap);
}

.gh-article {
    overflow: hidden;
    border: 1px solid var(--sw-border);
    border-radius: 32px;
    background: #fff;
    box-shadow: var(--sw-shadow);
    padding-bottom: 56px;
}

.gh-article-header {
    margin: 0;
    padding: clamp(40px, 4vw, 64px) clamp(24px, 4vw, 56px) 0;
}

.gh-article-tag {
    display: inline-flex;
    padding: 0.65rem 1.15rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--sw-primary);
    text-transform: uppercase;
    border-radius: 999px;
    background: rgb(16 143 207 / 0.12);
}

.gh-article-excerpt {
    color: var(--sw-muted);
}

.gh-article-meta {
    margin-top: 24px;
    margin-left: 0;
}

.gh-content {
    color: #31465a;
}

.gh-content blockquote:not([class]) {
    padding: 24px 28px;
    border-left: 4px solid var(--sw-primary);
    border-radius: 20px;
    background: var(--sw-surface);
}

.gh-content hr {
    background: var(--sw-border);
}

.gh-footer {
    margin-top: 96px;
    padding-bottom: 24px;
    color: var(--sw-navy);
    background: linear-gradient(180deg, rgb(36 57 76 / 0.03) 0%, #eef6fb 32%, #e3eef7 100%);
}

.gh-footer-bar {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    gap: 36px;
    margin-bottom: 0;
    padding-block: 40px;
    border-top: 1px solid var(--sw-border);
    border-bottom: 0;
}

.gh-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gh-footer-summary,
.gh-footer-copyright {
    color: var(--sw-muted);
}

.gh-footer-summary {
    max-width: 360px;
    line-height: 1.7;
}

.gh-footer-menu .nav {
    justify-content: center;
    gap: 12px 24px;
}

.gh-footer-copyright {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    text-align: right;
    white-space: normal;
}

.gh-footer-copyright p {
    margin: 0;
}

.gh-footer-copyright .gh-brand-actions {
    justify-content: flex-end;
}

@media (max-width: 991px) {
    .gh-navigation.is-middle-logo .gh-navigation-menu {
        margin-left: 20px;
    }

    .gh-container:not(.has-sidebar) :is(.gh-container-title, .gh-main, .gh-more) {
        grid-column: 1 / -1;
    }

    .gh-footer-bar {
        gap: 24px;
    }

    .gh-footer-copyright {
        align-items: center;
        text-align: center;
    }

    .gh-footer-copyright .gh-brand-actions {
        justify-content: center;
    }

    .gh-topic-strip-inner {
        padding: 28px 24px;
    }
}

@media (max-width: 767px) {
    .gh-navigation {
        backdrop-filter: none;
    }

    #gh-navigation.gh-navigation--minimal {
        height: auto;
    }

    #gh-navigation.gh-navigation--minimal .gh-navigation-inner-minimal {
        display: flex;
        gap: 16px;
        justify-content: space-between;
        min-height: 72px;
    }

    #gh-navigation.gh-navigation--minimal .gh-navigation-brand {
        display: flex;
        height: auto;
        min-height: 0;
    }

    #gh-navigation.gh-navigation--minimal .gh-navigation-actions {
        align-items: center;
        justify-content: flex-end;
        margin-left: auto;
        opacity: 1;
        position: static;
        visibility: visible;
    }

    .gh-navigation-logo img,
    .gh-footer-logo img {
        max-height: 36px;
    }

    .gh-header.is-classic {
        padding-block: 64px 52px;
    }

    .gh-header-description {
        font-size: 1.65rem;
    }

    .gh-header-cta-row,
    .gh-brand-actions {
        width: 100%;
    }

    .gh-header-cta-row .gh-brand-actions {
        justify-content: center;
    }

    .gh-header-highlights {
        justify-content: center;
    }

    .gh-header-highlight {
        width: 100%;
    }

    #gh-navigation .gh-brand-link-ghost,
    #gh-navigation .gh-brand-link-secondary {
        display: none;
    }

    #gh-navigation .gh-brand-link {
        width: auto;
    }

    .gh-container.is-list .gh-card-image {
        width: 100%;
    }

    .gh-card-wrapper {
        padding: 24px 22px;
    }

    .gh-container.is-grid.no-image .gh-feed {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gh-article {
        border-radius: 24px;
    }

    .gh-article-header {
        padding: 32px 22px 0;
    }

    .gh-footer {
        margin-top: 72px;
    }
}

@media (max-width: 640px) {
    .gh-container.is-grid.no-image .gh-feed {
        grid-template-columns: 1fr;
    }

    .gh-card-image-fallback {
        min-height: 176px;
        padding: 20px;
    }

    .gh-card-image-mark {
        font-size: 2.1rem;
    }

    .gh-card-image-badge {
        margin-left: 0;
        align-self: flex-start;
        margin-top: auto;
    }
}
