/* CrossCurrents — Design tokens
/* ---------------------------------------------------------- */

:root {

    /* ── Brand palette ── */
    --cc-white:     #FFFFFF;
    --cc-ink:       #0B0C11;
    --cc-ink-soft:  rgba(11, 12, 17, 0.72);
    --cc-ink-muted: rgba(11, 12, 17, 0.54);
    --cc-ink-faint: rgba(11, 12, 17, 0.08);
    --cc-rule:      rgba(11, 12, 17, 0.12);

    --cc-accent:        #A6CFE2;
    --cc-accent-tint:   #EAF3F8;   /* #A6CFE2 at low opacity, flattened */
    --cc-accent-deep:   #7BB2CC;   /* for hover */

    --cc-surface:       #FFFFFF;
    --cc-surface-alt:   #F7F8FA;   /* subtle off-white for cards */

    /* Ghost system compat */
    --color-primary: var(--ghost-accent-color, #A6CFE2);
    --color-base:    #0B0C11;
    --color-border:  rgba(11, 12, 17, 0.12);
    --color-bg:      #FFFFFF;
    --color-success: #2e7d32;
    --color-error:   #b71c1c;

    /* ── Fonts ── */
    /* Geomanist is the primary typeface for everything. Ghost's custom
       font variables (--gh-font-heading / --gh-font-body) override if
       the user selects fonts in Admin. */
    --cc-font-display: var(--gh-font-heading, 'Geomanist', -apple-system, BlinkMacSystemFont, sans-serif);
    --cc-font-body:    var(--gh-font-body, 'Geomanist', -apple-system, BlinkMacSystemFont, sans-serif);
    --cc-font-mono:    'Geomanist', 'SF Mono', Menlo, monospace;

    /* Starter compat */
    --font-sans-serif: var(--cc-font-body);
    --font-serif:      var(--cc-font-display);
    --font-mono:       var(--cc-font-mono);
    --font-light: 400;
    --font-normal: 400;
    --font-bold: 700;
    --font-heavy: 900;

    /* Breakpoints */
    --xlarge: 1680px;
    --large: 1280px;
    --medium: 980px;
    --small: 740px;
    --xsmall: 480px;

    /* Sizes */
    --height: 4rem;
    --margin: 2rem;
    --radius: 0.5rem;
    --cc-max-width: 1200px;
}
/* ============================================
   Geomanist — self-hosted, GDPR-clean
   Using relative paths from built/index.css → assets/fonts/
   ============================================ */

@font-face {
    font-family: 'Geomanist';
    src: url('../fonts/geomanist-regular-webfont.woff2') format('woff2'),
         url('../fonts/geomanist-regular-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geomanist';
    src: url('../fonts/geomanist-book-italic-webfont.woff2') format('woff2'),
         url('../fonts/geomanist-book-italic-webfont.woff') format('woff');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Geomanist';
    src: url('../fonts/geomanist-medium-webfont.woff2') format('woff2'),
         url('../fonts/geomanist-medium-webfont.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geomanist';
    src: url('../fonts/geomanist-bold-webfont.woff2') format('woff2'),
         url('../fonts/geomanist-bold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geomanist';
    src: url('../fonts/geomanist-bold-italic-webfont.woff2') format('woff2'),
         url('../fonts/geomanist-bold-italic-webfont.woff') format('woff');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Geomanist';
    src: url('../fonts/geomanist-black-webfont.woff2') format('woff2'),
         url('../fonts/geomanist-black-webfont.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
/* Reset
/* ---------------------------------------------------------- */

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

html {
    font-size: 62.5%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    color: var(--cc-ink);
    font-family: var(--cc-font-body);
    font-size: 1.7rem;
    line-height: 1.6;
    font-weight: 400;
    font-style: normal;
    background: var(--cc-white);
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


p,
ul,
ol,
li,
dl,
dd,
hr,
pre,
form,
table,
video,
figure,
figcaption,
blockquote {
    margin: 0;
    padding: 0;
}

ul[class],
ol[class] {
    padding: 0;
    list-style: none;
}

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

input,
button,
select,
textarea {
    font: inherit;
    -webkit-appearance: none;
}

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

label {
    display: block;
    font-size: 0.9em;
    font-weight: 700;
}

hr {
    position: relative;
    display: block;
    width: 100%;
    height: 1px;
    border: 0;
    border-top: 1px solid currentcolor;
    opacity: 0.2;
}

::selection {
    text-shadow: none;
    background: #cbeafb;
}

mark {
    background-color: #fdffb6;
}

small {
    font-size: 80%;
}

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

ul:not([class]) li + li {
    margin-top: 0.6em;
}

a:not([class]) {
    color: var(--color-primary);
    text-decoration-skip-ink: auto;
}

a[class] {
    color: inherit;
    text-decoration: none;
    transition: 0.4s ease;
}

a[class]:hover {
    transition: 0.2s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    line-height: 1.15em;
    font-weight: 700;
}

h1 {
    font-size: 4.6rem;
    letter-spacing: -0.5px;
}
@media (max-width: 500px) {
    h1 {
        font-size: 2.7rem;
    }
}

h2 {
    font-size: 3.6rem;
}
@media (max-width: 500px) {
    h2 {
        font-size: 2.2rem;
    }
}

h3 {
    font-size: 3.2rem;
}
@media (max-width: 500px) {
    h3 {
        font-size: 1.8rem;
    }
}

h4 {
    font-size: 2.6rem;
}

h5 {
    font-size: 2.4rem;
}

h6 {
    font-size: 2.2rem;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
/* Forms
/* ---------------------------------------------------------- */

.gh-input,
.gh-textarea {
    background: var(--color-bg);
    border-radius: var(--radius);
    border: none;
    border: solid 1px var(--color-border);
    color: inherit;
    display: block;
    outline: 0;
    padding: 0 0.6em;
    text-decoration: none;
    width: 100%;
}

.gh-input:focus {
    border-color: var(--color-primary);
}

.gh-select {
    height: var(--height);
    padding-right: var(--height);
    text-overflow: ellipsis;
}

.gh-select option {
    color: var(--color-primary);
    background: var(--color-bg);
}

.gh-select:focus::-ms-value {
    background-color: transparent;
}

.gh-select::-ms-expand {
    display: none;
}

.gh-input,
.gh-select {
    height: var(--height);
}

.gh-textarea {
    padding: 0.3em 0.6em;
    resize: vertical;
}

.gh-check {
    display: block;
    margin-right: -2em;
    opacity: 0;
    width: 1em;
    z-index: -1;
}

.gh-check + label,
.gh-check + label {
    display: flex;
    align-items: center;
    color: var(--color-base);
    cursor: pointer;
    font-size: 1em;
    font-weight: var(--font-normal);
    padding-left: calc((var(--height) * 0.6) + 0.75em);
    padding-right: 2rem;
    position: relative;
    user-select: none;
}

.gh-check + label:before,
.gh-check + label:before {
    background: var(--color-bg);
    border-radius: var(--radius);
    border: solid 1px var(--color-border);
    content: '';
    display: inline-block;
    height: calc(var(--height) * 0.6);
    line-height: calc(var(--height) * 0.56);
    text-align: center;
    width: calc(var(--height) * 0.6);
    margin-right: 1rem;
}

.gh-check:checked + label:before,
.gh-check:checked + label:before {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-bg);
    content: '✓';
}

.gh-check:focus + label:before,
.gh-check:focus + label:before {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 1px var(--color-primary);
}


.gh-check + label:before {
    border-radius: var(--radius);
}

.gh-check + label:before {
    border-radius: 100%;
}
/* Buttons
/* ---------------------------------------------------------- */

.gh-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 75px;
    height: 4rem;
    padding: 0 2rem;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--cc-font-body);
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    appearance: none;
    transition: background 0.2s ease, color 0.2s ease;
    background: var(--cc-ink);
    color: var(--cc-white);
}

.gh-button:hover {
    background: var(--cc-accent-deep);
    color: var(--cc-white);
}

.gh-button.gh-button-fit {
    width: 100%;
}

.gh-button.gh-button-small {
    height: calc(var(--height) * 0.9);
    line-height: calc(var(--height) * 0.9);
    padding: 0 1.5rem;
    font-size: 1.2rem;
}

.gh-button.gh-button-large {
    height: calc(var(--height) * 1.2);
    line-height: calc(var(--height) * 1.2);
    padding: 0 2.5rem;
    font-size: 1.7rem;
}

.gh-button.gh-button-disabled,
.gh-button:disabled {
    pointer-events: none;
    opacity: 0.4;
}

.gh-button {
    color: inherit;
    background-color: transparent;
    box-shadow: inset 0 0 0 2px currentColor
}

.gh-button:hover {
    text-decoration: none;
    color: var(--color-primary) !important;
    box-shadow: inset 0 0 0 2px var(--color-primary);
    transition: 0.2s ease;
}

.gh-button.gh-button-primary {
    color: #fff !important;
    background-color: var(--color-primary);
    box-shadow: none;
}

.gh-button.gh-button-primary:hover {
    background-color: var(--color-primary);
}
/* ============================================
   CrossCurrents — Hero Section
   (All rem values scaled for Starter's 1rem = 10px base)
   ============================================ */

.cc-hero {
    background-color: var(--cc-white);
    position: relative;
    overflow: hidden;
}

/* ── TOP: greeting (photo + intro) ── */
.cc-hero__greeting {
    position: relative;
    padding: clamp(4.8rem, 7vw, 8.8rem) clamp(2.4rem, 5vw, 4.8rem) clamp(4rem, 5vw, 6.4rem);
}

.cc-hero__greeting-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: clamp(3.2rem, 4vw, 5.6rem);
}

/* Photo */
.cc-hero__photo-col {
    display: flex;
    justify-content: center;
}

.cc-hero__photo-wrap {
    position: relative;
    width: clamp(210px, 22vw, 300px);
    aspect-ratio: 1 / 1;
}

.cc-hero__photo-wrap::before {
    content: '';
    position: absolute;
    inset: -1.4rem;
    border-radius: 50%;
    background: var(--cc-accent);
    opacity: 0.35;
    z-index: 0;
}

.cc-hero__photo-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid var(--cc-white);
    box-shadow: 0 0 0 1px var(--cc-ink-faint);
    z-index: 2;
    pointer-events: none;
}

.cc-hero__photo {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 50%;
    z-index: 1;
}

/* Greeting text */
.cc-hero__greeting-text {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.cc-hero__eyebrow {
    font-family: var(--cc-font-mono);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cc-ink-muted);
}

.cc-hero__eyebrow .cc-hero__label {
    display: inline-block;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--cc-accent);
}

.cc-hero__hi {
    font-family: var(--cc-font-display);
    font-size: clamp(3.6rem, 4.5vw, 5.6rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--cc-ink);
    letter-spacing: -0.025em;
    margin: 0;
}

.cc-hero__wave {
    display: inline-block;
    transform-origin: 70% 70%;
    animation: cc-wave 2.4s ease-in-out infinite;
}

@keyframes cc-wave {
    0%, 60%, 100% { transform: rotate(0deg); }
    10%           { transform: rotate(14deg); }
    20%           { transform: rotate(-8deg); }
    30%           { transform: rotate(14deg); }
    40%           { transform: rotate(-4deg); }
    50%           { transform: rotate(10deg); }
}

.cc-hero__intro {
    font-family: var(--cc-font-body);
    font-size: clamp(1.7rem, 1.5vw, 2rem);
    line-height: 1.55;
    color: var(--cc-ink-soft);
    max-width: 52ch;
    margin: 0;
}

/* ── BOTTOM: pitch + subscribe ── */
.cc-hero__pitch {
    position: relative;
    background: var(--cc-surface-alt);
    border-top: 1px solid var(--cc-rule);
    padding: clamp(4rem, 6vw, 7.2rem) clamp(2.4rem, 5vw, 4.8rem) clamp(4.8rem, 7vw, 8rem);
}

.cc-hero__pitch-inner {
    max-width: var(--cc-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(3.2rem, 5vw, 6.4rem);
    align-items: start;
}

.cc-hero__pitch-text {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

/* Big headline */
.cc-hero__headline {
    font-family: var(--cc-font-display);
    font-size: clamp(3.6rem, 4.5vw, 5.6rem);
    font-weight: 900;
    line-height: 1.08;
    color: var(--cc-ink);
    letter-spacing: -0.025em;
    margin: 0;
}

.cc-hero__headline em {
    font-style: italic;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.cc-hero__headline em::after {
    content: '';
    position: absolute;
    bottom: 0.08em;
    left: 0;
    right: 0;
    height: 0.28em;
    background: var(--cc-accent);
    opacity: 0.6;
    z-index: -1;
    border-radius: 2px;
}

/* Dek */
.cc-hero__dek {
    font-family: var(--cc-font-body);
    font-size: clamp(1.7rem, 1.4vw, 1.9rem);
    line-height: 1.65;
    color: var(--cc-ink-soft);
    max-width: 54ch;
    margin: 0;
}

/* Tags */
.cc-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    padding-top: 0.4rem;
}

.cc-tag {
    font-family: var(--cc-font-mono);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cc-ink-soft);
    background: var(--cc-white);
    border: 1px solid var(--cc-rule);
    border-radius: 100px;
    padding: 0.6rem 1.2rem;
}

/* Subscribe block */
.cc-hero__subscribe {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    padding: 2.8rem;
    background: var(--cc-white);
    border: 1px solid var(--cc-rule);
    border-left: 4px solid var(--cc-accent);
    border-radius: 6px;
}

.cc-hero__subscribe-label {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.cc-hero__subscribe-title {
    font-family: var(--cc-font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--cc-ink);
    letter-spacing: -0.015em;
    line-height: 1.2;
}

.cc-hero__subscribe-sub {
    font-family: var(--cc-font-mono);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cc-ink-muted);
}

/* Form */
.cc-hero__form {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.cc-hero__form-row {
    display: flex;
    border: 1.5px solid var(--cc-ink);
    border-radius: 4px;
    overflow: hidden;
    background: var(--cc-white);
    transition: box-shadow 0.2s ease;
}

.cc-hero__form-row:focus-within {
    box-shadow: 0 0 0 3px var(--cc-accent);
}

.cc-hero__input {
    flex: 1;
    border: none;
    outline: none;
    padding: 1.4rem 1.6rem;
    font-family: var(--cc-font-body);
    font-size: 1.5rem;
    background: transparent;
    color: var(--cc-ink);
    min-width: 0;
}

.cc-hero__input::placeholder {
    color: var(--cc-ink-muted);
}

.cc-hero__button {
    background: var(--cc-ink);
    color: var(--cc-white);
    border: none;
    padding: 1.4rem 2.2rem;
    font-family: var(--cc-font-body);
    font-size: 1.4rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.cc-hero__button:hover {
    background: var(--cc-accent);
    color: var(--cc-ink);
}

.cc-hero__button-icon {
    transition: transform 0.2s ease;
}

.cc-hero__button:hover .cc-hero__button-icon {
    transform: translateX(3px);
}

.cc-hero__disclaimer {
    font-family: var(--cc-font-mono);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--cc-ink-muted);
    letter-spacing: 0.02em;
    margin: 0;
}

.cc-hero__success,
.cc-hero__error {
    font-family: var(--cc-font-body);
    font-size: 1.4rem;
    padding: 1rem 1.3rem;
    border-radius: 3px;
}

.cc-hero__success {
    background: var(--cc-accent-tint);
    color: var(--cc-ink);
}

.cc-hero__error {
    background: #fce4ec;
    color: #b71c1c;
}

/* ── Feed header ── */
.cc-feed-header {
    padding: 6.4rem 0 1.6rem;
    display: flex;
    align-items: baseline;
    gap: 1.6rem;
}

.cc-feed-label {
    font-family: var(--cc-font-mono);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cc-ink);
    display: inline-block;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--cc-accent);
}

.cc-feed-rule {
    flex: 1;
    height: 1px;
    background: var(--cc-rule);
}

/* ── Entrance animations ── */
.cc-hero__photo-wrap,
.cc-hero__eyebrow,
.cc-hero__hi,
.cc-hero__intro,
.cc-hero__headline,
.cc-hero__dek,
.cc-hero__subscribe,
.cc-hero__tags {
    opacity: 0;
    animation: cc-fadeUp 0.65s ease forwards;
}

.cc-hero__photo-wrap { animation-delay: 0.05s; }
.cc-hero__eyebrow    { animation-delay: 0.15s; }
.cc-hero__hi         { animation-delay: 0.22s; }
.cc-hero__intro      { animation-delay: 0.3s;  }
.cc-hero__headline   { animation-delay: 0.4s;  }
.cc-hero__dek        { animation-delay: 0.48s; }
.cc-hero__tags       { animation-delay: 0.54s; }
.cc-hero__subscribe  { animation-delay: 0.56s; }

@keyframes cc-fadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0);    }
}

/* ── Responsive ── */
@media (max-width: 860px) {
    .cc-hero__pitch-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .cc-hero__greeting-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3.2rem;
    }

    .cc-hero__photo-wrap {
        margin: 0 auto;
    }

    .cc-hero__intro {
        margin: 0 auto;
    }

    .cc-hero__headline {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .cc-hero__form-row {
        flex-direction: column;
    }

    .cc-hero__button {
        justify-content: center;
    }
}
/* Global Header
/* ---------------------------------------------------------- */

.gh-head {
    padding: 3vmin 4vmin;
    font-size: 1.6rem;
    line-height: 1.3em;
    background: inherit;
}

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

.gh-head-inner {
    display: grid;
    grid-gap: 40px;
    grid-template-columns: 1fr auto 1fr;
    grid-auto-flow: row dense;
}


/* Brand
/* ---------------------------------------------------------- */

.gh-head-brand {
    grid-column-start: 2;
    display: flex;
    align-items: center;
    max-width: 200px;
    text-align: center;
    word-break: break-all;
}

.gh-head-logo {
    display: block;
    padding: 10px 0;
    font-weight: 600;
    font-size: 2.2rem;
    line-height: 1.2em;
}

.gh-head-logo img {
    max-height: 40px;
}


/* Primary Navigation
/* ---------------------------------------------------------- */

.gh-head-menu {
    display: flex;
    align-items: center;
}

.gh-head-menu .nav {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
}

.gh-head-menu .nav li {
    margin: 0 1.5vmin 0 0;
    padding: 0;
}

.gh-head-menu .nav a {
    display: inline-block;
    padding: 5px 0;
    position: relative;
    color: var(--cc-ink-soft);
    transition: color 0.15s ease;
}

.gh-head-menu .nav a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cc-accent);
    transition: width 0.2s ease;
}

.gh-head-menu .nav a:hover {
    color: var(--cc-ink);
}

.gh-head-menu .nav a:hover::after {
    width: 100%;
}

.gh-head-menu .nav-current a {
    box-shadow: 0 -1px 0 0 currentcolor inset;
}


/* Secondary Navigation
/* ---------------------------------------------------------- */

.gh-head-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
    text-align: right;
}

.gh-head-actions-list {
    display: inline-flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

.gh-head-actions-list a:not([class]) {
    display: inline-block;
    margin: 0 0 0 1.5vmin;
    padding: 5px 0;
}


/* Mobile Menu Trigger
/* ---------------------------------------------------------- */

.gh-burger {
    position: relative;
    display: none;
    cursor: pointer;
}

.gh-burger-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33px;
    height: 33px;
}

.gh-burger-inner {
    width: 100%;
    height: 100%;
}

.gh-burger-box::before {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    content: '';
    width: 100%;
    height: 1px;
    background: currentcolor;
    transition: transform 300ms cubic-bezier(.2,.6,.3,1), width 300ms cubic-bezier(.2,.6,.3,1);
    will-change: transform, width;
}

.gh-burger-inner::before,
.gh-burger-inner::after {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    content: '';
    width: 100%;
    height: 1px;
    background: currentcolor;
    transition: transform 250ms cubic-bezier(.2,.7,.3,1), width 250ms cubic-bezier(.2,.7,.3,1);
    will-change: transform, width;
}

.gh-burger-inner::before {
    transform: translatey(-6px);
}
.gh-burger-inner::after {
    transform: translatey(6px);
}

body:not(.gh-head-open) .gh-burger:hover .gh-burger-inner::before {
    transform: translatey(-8px);
}
body:not(.gh-head-open) .gh-burger:hover .gh-burger-inner::after {
    transform: translatey(8px);
}

.gh-head-open .gh-burger-box::before {
    width: 0;
    transform: translatex(19px);
    transition: transform 200ms cubic-bezier(.2,.7,.3,1), width 200ms cubic-bezier(.2,.7,.3,1);
}

.gh-head-open .gh-burger-inner::before {
    width: 26px;
    transform: translatex(6px) rotate(135deg);
}

.gh-head-open .gh-burger-inner::after {
    width: 26px;
    transform: translatex(6px) rotate(-135deg);
}


/* Layout Variants
/* ---------------------------------------------------------- */

.gh-head-brandnavactions .gh-head-brand {
    grid-column-start: 1;
}

.gh-head-brandnav .gh-container {
    grid-gap: 0;
    grid-template-columns: auto max-content max-content;
}
.gh-head-brandnav .gh-head-brand {
     grid-column-start: 1;
}
.gh-head-brandnav .gh-head-menu {
    margin-left: 40px;
}
.gh-head-brandnav .gh-head-menu .nav li {
    margin: 0 0 0 1.5vmin;
    padding: 0;
}

/* Center Stacked */
.gh-head-stacked .gh-container {
    grid-template-columns: 1fr;
    grid-gap: 2vmin;
}
.gh-head-stacked .gh-head-brand {
     grid-column-start: 1;
     width: 100%;
     max-width: none;
     display: flex;
     justify-content: center;
     text-align: center;
}
.gh-head-stacked .gh-head-menu,
.gh-head-stacked .gh-head-actions,
.gh-head-stacked .gh-head-actions-list {
    justify-content: center;
}
.gh-head-stacked .gh-head-actions a:first-child svg {
    margin-left: 0;
}


/* Mobile Menu
/* ---------------------------------------------------------- */
/* IDs needed to ensure sufficient specificity */

@media (max-width: 900px) {
    .gh-burger {
        display: inline-block;
    }
    #gh-head {
        transition: all 0.4s ease-out;
        overflow: hidden;
    }
    #gh-head .gh-head-inner {
        height: 100%;
        grid-template-columns: 1fr;
    }
    #gh-head .gh-head-brand {
        position: relative;
        z-index: 10;
        grid-column-start: auto;
        max-width: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        user-select: none;
    }
    #gh-head .gh-head-logo {
        font-size: 2.2rem;
    }
    #gh-head .gh-head-logo img {
        max-height: 40px;
    }
    #gh-head .gh-head-menu {
        align-self: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: 0 0 10vh 0;
        font-weight: 300;
        font-size: 3.6rem;
        line-height: 1.1em;
    }
    #gh-head .gh-head-menu .nav li {
        margin: 5px 0;
    }
    #gh-head .gh-head-menu .nav a {
        padding: 8px 0;
    }
    #gh-head .gh-head-menu .nav {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    #gh-head .gh-head-actions {
        padding: 20px 0;
        justify-content: center;
        text-align: left;
    }
    #gh-head .gh-head-actions a {
        margin: 0 10px;
    }
    /* Hide collapsed content */
    #gh-head .gh-head-actions,
    #gh-head .gh-head-menu {
        display: none;
    }
    /* Open the menu */
    .gh-head-open {
        overflow: hidden;
        height: 100vh;
    }
    .gh-head-open #gh-head {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 900;
        overflow-y: scroll;
    }
    .gh-head-open #gh-head .gh-head-inner {
        grid-template-rows: auto 1fr auto;
    }
    .gh-head-open #gh-head .gh-head-actions,
    .gh-head-open #gh-head .gh-head-menu {
        display: flex;
    }
}

@media (max-width: 600px) {
    #gh-head .gh-head-menu {
        font-size: 6vmin;
    }
}


/* Content grid
/* ---------------------------------------------------------- */

.gh-canvas,
.kg-width-full.kg-content-wide {
    --gap: 4vw;
    --main: min(var(--content-width, 720px), 100% - var(--gap) * 2);
    --wide: minmax(0, calc((var(--container-width, 1200px) - var(--content-width, 720px)) / 2));
    --full: minmax(var(--gap), 1fr);

    display: grid;
    grid-template-columns:
        [full-start] var(--full)
        [wide-start] var(--wide)
        [main-start] var(--main) [main-end]
        var(--wide) [wide-end]
        var(--full) [full-end];
}

.gh-canvas > * {
    grid-column: main-start / main-end;
}

.kg-width-wide,
.kg-content-wide > div {
    grid-column: wide-start / wide-end;
}

.kg-width-full {
    grid-column: full-start / full-end;
}

.kg-width-full img {
    width: 100%;
}


/* Content & Typography
/* ---------------------------------------------------------- */

.gh-content > * + * {
    margin-top: 4vmin;
}

.gh-content [id]:not(:first-child) {
    margin: 1.5em 0 0;
}

.gh-content > [id] + * {
    margin-top: 1.5rem;
}

.gh-content [id] + .kg-card,
.gh-content blockquote + .kg-card {
    margin-top: 6vmin;
}

.gh-canvas > blockquote,
.gh-canvas > ol,
.gh-canvas > ul,
.gh-canvas > dl,
.gh-canvas > p {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 2rem;
    line-height: 1.6em;
}

.gh-content > ul,
.gh-content > ol,
.gh-content > dl {
    padding-left: 1.9em;
}

.gh-content hr {
    margin-top: 6vmin;
}

.gh-content hr + * {
    margin-top: 6vmin !important;
}

.gh-content blockquote {
    position: relative;
    font-style: italic;
}

.gh-content blockquote::before {
    content: "";
    position: absolute;
    left: -1.5em;
    top: 0;
    bottom: 0;
    width: 0.3rem;
    background: var(--color-primary);
}

@media (max-width: 650px) {
    .gh-canvas blockquote,
    .gh-canvas ol,
    .gh-canvas ul,
    .gh-canvas dl,
    .gh-canvas p {
        font-size: 1.8rem;
    }

    .gh-content blockquote::before {
        left: -4vmin;
    }
}


/* Cards
/* ---------------------------------------------------------- */

.gh-content :not(.kg-card):not([id]) + .kg-card {
    margin-top: 6vmin;
}

.gh-content .kg-card + :not(.kg-card) {
    margin-top: 6vmin;
}

figcaption {
    padding: 1.5rem 1.5rem 0;
    text-align: center;
    color: rgba(0,0,0,0.5);
    font-weight: 600;
    font-size: 1.3rem;
    line-height: 1.4em;
}

figcaption strong {
    color: rgba(0,0,0,0.8);
}

.gh-canvas :not(pre) code {
    vertical-align: middle;
    padding: 0.15em 0.4em 0.15em;
    border: #e1eaef 1px solid;
    font-weight: 400 !important;
    font-size: 0.9em;
    line-height: 1em;
    color: #dc0050;
    background: #f0f6f9;
    border-radius: 0.25em;
}

.gh-canvas > pre {
    overflow: scroll;
    padding: 16px 20px;
    background: rgba(255,255,255,0.8);
    border-radius: 5px;
    box-shadow: 0 2px 6px -2px rgba(0,0,0,.1), 0 0 1px rgba(0,0,0,.4);
}

.kg-embed-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Default to 16 / 9 aspect ratio for YouTube & Vimeo embeds  */
.kg-embed-card > :where(iframe[src*="youtube.com"],iframe[src*="vimeo.com"]) {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

.kg-image-card img {
    margin: auto;
}


/* Card captions
/* ---------------------------------------------------------- */

.kg-width-full.kg-card-hascaption {
    display: grid;
    grid-template-columns: inherit;
}

.kg-width-wide.kg-card-hascaption img {
    grid-column: wide-start / wide-end;
}
.kg-width-full.kg-card-hascaption img {
    grid-column: 1 / -1;
}

.kg-width-full.kg-card-hascaption figcaption {
    grid-column: main-start / main-end;
}


/* Tables
/* ---------------------------------------------------------- */

.gh-content table {
    border-collapse: collapse;
    width: 100%;
}

.gh-content th {
    padding: 0.5em 0.8em;
    text-align: left;
    font-size: .75em;
    text-transform: uppercase;
}

.gh-content td {
    padding: 0.4em 0.7em;
}

.gh-content tbody tr:nth-child(2n + 1) {
    background-color: rgba(0,0,0,0.1);
    padding: 1px;
}

.gh-content tbody tr:nth-child(2n + 2) td:last-child {
    box-shadow:
        inset 1px 0 rgba(0,0,0,0.1),
        inset -1px 0 rgba(0,0,0,0.1);
}

.gh-content tbody tr:nth-child(2n + 2) td {
    box-shadow: inset 1px 0 rgba(0,0,0,0.1);
}

.gh-content tbody tr:last-child {
    border-bottom: 1px solid rgba(0,0,0,.1);
}
/* Read More
/* ---------------------------------------------------------- */

.gh-readmore {
    padding: 8vmin 4vmin;
    font-size: 2.6rem;
}

.gh-readmore-inner {
    display: grid;
    grid-gap: 8vmin;
    grid-template-columns: 1fr 1fr;
}

.gh-readmore-prev {
    justify-content: flex-end;
    text-align: right;
}

.gh-readmore a {
    display: flex;
    color: currentColor;
    text-decoration: none;
}

.gh-readmore h4 {
    width: 100%;
    font-size: inherit;
}

.gh-readmore svg {
    display: inline-block;
    vertical-align: middle;
    height: 1em;
    margin: 0.15em 0 0;
}

.gh-readmore svg + h4,
.gh-readmore h4 + svg {
    margin-left: 2vmin;
}

@media (max-width: 700px) {
    .gh-readmore {
        font-size: 1.6rem;
    }
    .gh-readmore svg {
        margin: 0.1em 0 0;
    }
}
/* Members Auth Template
/* ---------------------------------------------------------- */

.gh-auth-form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 10vmin;
    text-align: center;
}

.gh-auth-title {
    margin: 0 0 0.1em;
    font-size: 4.2rem;
}

.gh-auth-form p {
    margin: 10px 0 4vmin 0;
    font-size: 1.7rem;
    color: rgba(0,0,0,0.6)
}

.gh-auth-form p small {
    display: inline-block;
    margin: 15px 0 0 0;
    font-size: 1.4rem;
}

.gh-auth-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 460px;
    margin: 0 auto;
}

.gh-auth-box .gh-button {
    margin-left: 10px;
}

@media (max-width: 600px) {
    .gh-auth-box {
        flex-direction: column;
        max-width: 400px;
    }
    .gh-auth-box .gh-button {
        width: 100%;
        margin: 15px 0 0 0;
    }
}

/* Members Forms
/* ---------------------------------------------------------- */

form[data-members-form] .gh-button-loader,
form[data-members-form] .message-success,
form[data-members-form] .message-error {
    display: none;
}

.gh-button-content {
    min-width: 100px;
}

.message-success svg,
.message-error svg {
    position: relative;
    top: -1px;
    margin-right: 5px;
    height: 15px;
    width: 15px;
}
.message-success svg {
    fill: #fff;
}
.message-error svg {
    fill: var(--color-error);
}

form[data-members-form].success .message-success,
form[data-members-form].error .message-error {
    position: fixed;
    top: 20px;
    left: 4vmin;
    right: 4vmin;
    z-index: 9999;
    max-width: calc(1400px - 8vmin);
    margin: 0 auto;
    padding: 10px 0;
    color: #fff;
    font-size: 1.4rem;
    line-height: 1.5em;
    font-weight: 500;
    text-align: center;
    background: var(--color-base);
    border-radius: var(--radius);
}
form[data-members-form].success .message-success {
    background: var(--color-success);
}
form[data-members-form].error .message-error {
    color: var(--color-error);
    background: #fff;
    box-shadow: var(--color-error) 0 0 0 1px;
}

form[data-members-form] .gh-button {
    position: relative;
    min-width: 120px;
}

/*-- Loading --*/

/* Hide button text */
form[data-members-form].loading .gh-button-content {
    visibility: hidden;
}

/* Show loading spinner */
form[data-members-form].loading .gh-button-loader {
    display: inline-block;
    position: absolute;
    left: 50%;
    bottom: -30%;
    margin: 0 0 0 -19px;
    transform: scale(0.6);
}

.gh-button-loader svg path,
.gh-button-loader svg rect{
  fill: #fff;
}

/*-- Show success message on success --*/
form[data-members-form].success .message-success {
    display: block;
}

/*-- Show error message on error --*/
form[data-members-form].error .message-error {
    display: block;
}
/* Error Templates
/* ---------------------------------------------------------- */

.gh-error {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 2vmin;
}

.gh-error-content {
    flex: 1 0 auto;
    text-align: center;
}

.gh-error-code {
    margin: 0;
    font-size: 14vmin;
}

.gh-error-description {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
    font-size: 4vmin;
    line-height: 1.2em;
    font-weight: 300;
    opacity: 0.6;
}

.gh-error-link {
    display: block;
    margin-top: 4vmin;
    font-size: 1.6rem;
}

.gh-error-stack {
    max-width: 600px;
    margin: 0 auto 0;
    padding: 8vmin 0;
    text-align: left;
}

.gh-error-stack-list {
    margin: 4vmin 0 0;
    font-size: 1.4rem;
}

.gh-error-stack-list > li {
    padding: 2rem 0;
    margin: 0;
    border-top: rgba(0,0,0,0.1) 1px solid;
}

.gh-error-stack-function {
    margin: 0 0 0.5em;
    font-size: 1.8rem;
    color: red;
}
/* Global Footer - overridden by CrossCurrents footer in index.css */

.gh-foot a {
    color: inherit;
}
a.gh-powered,
a.gh-powered:hover {
    display: inline-flex;
    align-items: center;
    padding: 6px 9px 6px 6px;
    border: none;
    font-size: 12px;
    line-height: 12px;
    letter-spacing: -0.3px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    font-weight: 600;
    text-decoration: none;
    color: #383838;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 0 1px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.08);
    cursor: pointer;
}

a.gh-powered svg {
    height: 16px;
    width: 16px;
    margin: 0 6px 0 0;
}

.gh-pagination .pagination {
    display: flex;
    justify-content: space-between;
    margin-block: 4vmin;
}.gh-post-comments {
    margin-block: 8vmin 4vmin;
}/* ============================================
   Main
   ============================================ */

html,
.gh-viewport {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: var(--cc-white);
}

.gh-main {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

.gh-page {
    padding: 0 4vmin;
}

.gh-article {
    padding: 8vmin 0;
}

.gh-container {
    width: 100%;
    max-width: var(--cc-max-width);
    margin: 0 auto;
}

/* ── Site header ── */
.gh-head {
    font-family: var(--cc-font-body);
    border-bottom: 1px solid var(--cc-rule);
    background: var(--cc-white);
}

.gh-head-logo {
    font-family: var(--cc-font-display);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--cc-ink);
    font-size: 2rem;
}

.gh-head-menu a {
    color: var(--cc-ink-soft);
    transition: color 0.15s ease;
}

.gh-head-menu a:hover {
    color: var(--cc-ink);
}

/* ── Post feed ── */
.gh-postfeed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
    gap: 6.4rem 4rem;
    padding: 4.8rem 0 9.6rem;
}

/* Featured first card */
.gh-postfeed > *:first-child {
    grid-column: 1 / -1;
}

.gh-postfeed > *:first-child .gh-card-link {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4.8rem;
    align-items: center;
    padding: 3.2rem 0;
    border-bottom: 1px solid var(--cc-rule);
}

.gh-postfeed > *:first-child .gh-card-image,
.gh-postfeed > *:first-child .gh-card-picture img {
    aspect-ratio: 4 / 3;
    margin-bottom: 0;
    border-radius: 4px;
}

.gh-postfeed > *:first-child .gh-card-content {
    text-align: left;
    margin: 0;
    max-width: 100%;
}

.gh-postfeed > *:first-child .gh-card-title {
    font-size: clamp(3rem, 3vw, 4.4rem);
    line-height: 1.1;
}

@media (max-width: 800px) {
    .gh-postfeed > *:first-child .gh-card-link {
        grid-template-columns: 1fr;
        gap: 2.4rem;
    }
}

/* Card link */
.gh-card-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--cc-ink);
}

.gh-card-picture {
    display: block;
    overflow: hidden;
    border-radius: 4px;
}

.gh-card-image {
    width: 100%;
    object-fit: cover;
    margin-bottom: 2.4rem;
    aspect-ratio: 16 / 10;
    transition: transform 0.4s ease;
    border-radius: 4px;
}

.gh-card-link:hover .gh-card-image {
    transform: scale(1.02);
}

.gh-card-content {
    text-align: left;
    font-size: 1.6rem;
    max-width: 100%;
    margin: 0;
}

.gh-card-content p {
    margin: 1.2rem 0 1.6rem;
    padding: 0;
    color: var(--cc-ink-soft);
    line-height: 1.55;
    font-size: 1.55rem;
}

.gh-card-meta {
    display: block;
    margin: 0 0 1.2rem;
    font-family: var(--cc-font-mono);
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cc-ink-muted);
}

.gh-card-title {
    font-family: var(--cc-font-display);
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: var(--cc-ink);
    margin: 0;
}

.gh-card-content > strong {
    display: inline-block;
    padding: 0;
    font-weight: 500;
    font-family: var(--cc-font-mono);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cc-ink);
    border-bottom: 2px solid var(--cc-accent);
    padding-bottom: 2px;
    margin-top: 0.4rem;
    transition: color 0.2s ease;
}

.gh-card-link:hover .gh-card-content > strong {
    color: var(--cc-accent-deep);
}


/* ── Page ── */
.gh-page-head {
    margin: 0 auto;
    padding: 8vmin 0 4vmin;
    text-align: center;
}

.gh-page-head > h1 {
    font-family: var(--cc-font-display);
    font-weight: 900;
    letter-spacing: -0.025em;
    color: var(--cc-ink);
}

.gh-page-image {
    margin: 4vmin 0 0 0;
}

.gh-page-head > p {
    max-width: 720px;
    margin: 0.5em auto 0;
    padding: 0 6vmin;
    font-size: 1.9rem;
    line-height: 1.5;
    color: var(--cc-ink-soft);
}


/* ── Post ── */
.gh-header {
    padding: 0 0 8vmin 0;
    text-align: center;
}

.gh-post-title {
    font-family: var(--cc-font-display);
    font-weight: 900;
    letter-spacing: -0.025em;
    color: var(--cc-ink);
}

.gh-post-meta {
    display: block;
    margin: 0 0 1.6rem;
    font-family: var(--cc-font-mono);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cc-ink-muted);
}

.gh-excerpt {
    margin: 1.6rem 0 0 0;
    color: var(--cc-ink-soft);
    font-size: 1.9rem;
    line-height: 1.55;
}

.gh-feature-image {
    grid-column: wide-start / wide-end;
    width: 100%;
    margin: 8vmin 0 0;
}

.gh-feature-image img {
    margin-inline: auto;
    width: 100%;
    border-radius: 4px;
}

.gh-post-footer {
    margin: 3.2rem 0;
}


/* ── Author Archive ── */
.gh-author-image {
    height: 12vmin;
    width: 12vmin;
    margin: 0 auto 1.5em;
    border-radius: 100%;
    overflow: hidden;
    object-fit: cover;
}

.gh-author-meta {
    margin: 2vmin 0 0 0;
    font-size: 1.7rem;
    color: var(--cc-ink-soft);
}

.gh-author-links {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gh-author-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin: 0 0.75vmin;
    color: var(--cc-ink);
}

.gh-author-links a + a:before {
    display: block;
    content: "";
    margin: 0 1.25vmin 0 0;
    height: 1em;
    width: 1px;
    background: var(--cc-rule);
    transform: rotate(20deg);
}


/* ============================================
   FOOTER — CrossCurrents
   ============================================ */
.gh-foot {
    display: block !important;
    background: var(--cc-ink);
    color: var(--cc-white);
    padding: 8rem 4vmin 3.2rem !important;
    margin-top: 9.6rem;
    font-family: var(--cc-font-body);
    align-items: unset;
    justify-content: unset;
}

.gh-foot .gh-container {
    max-width: var(--cc-max-width);
    width: 100%;
}

.cc-footer {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4.8rem;
    padding-bottom: 4.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cc-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.cc-footer__tagline {
    font-family: var(--cc-font-mono);
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cc-accent);
    margin: 0;
}

.cc-footer__wordmark {
    font-family: var(--cc-font-display);
    font-weight: 900;
    font-size: 3rem;
    letter-spacing: -0.02em;
    color: var(--cc-white);
    line-height: 1;
}

.cc-footer__blurb {
    font-size: 1.5rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
    max-width: 42ch;
    margin: 0.4rem 0 0;
}

.cc-footer__col-label {
    font-family: var(--cc-font-mono);
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cc-accent);
    margin: 0 0 1.8rem;
    display: block;
}

/* Footer navigation pulled from Ghost secondary nav */
.cc-footer__nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cc-footer__nav li {
    margin: 0;
    padding: 0;
}

.cc-footer__nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.15s ease;
    display: inline-block;
}

.cc-footer__nav a:hover {
    color: var(--cc-accent);
}

.cc-footer__bottom {
    padding-top: 3.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.6rem;
    font-family: var(--cc-font-mono);
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
}

.cc-footer__bottom a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.15s ease;
}

.cc-footer__bottom a:hover {
    color: var(--cc-accent);
}

.gh-foot .gh-foot-meta,
.gh-foot .gh-foot-menu {
    display: none;
}

@media (max-width: 800px) {
    .cc-footer {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .cc-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
