/* ============================================================================
   theme-spirit-poster.css — "Spirit Poster" (Template C) landing theme. Every
   rule scoped under .theme-spirit-poster so a club picking this template never
   bleeds styling into the admin shell or another public site.

   Direction C is a centered, symmetric, color-blocked poster: full-bleed bands
   stack down the centreline alternating primary (red) / secondary (ink) / paper,
   like a printed game-day flyer. Everything is centre-aligned — headings, copy,
   grids, CTAs.

   Unlike the older Kinetic Sport landing theme (which hard-codes its palette),
   this theme is wired to the per-club brand palette the shell emits
   (--brand-primary = red, --brand-secondary = ink, --brand-accent = blue) over
   the fixed --brand-paper / --brand-muted neutrals, so swapping a club's brand
   preset re-skins the whole poster automatically.

   --cm-edge centres content inside the 1328px artboard while the band
   backgrounds run full-bleed to the viewport edges. Defined here on the theme
   root so the spirit sub-page skin (public-spirit-pages.css) inherits it too.

   Type stack: Anton (display) · IBM Plex Sans (body) · JetBrains Mono (labels) —
   all already loaded in App.razor.
   ============================================================================ */

.theme-spirit-poster {
    /* Brand-palette aliases — concrete fallbacks match the design's Aces colours. */
    --sp-red:   var(--brand-primary, #D8232A);
    --sp-ink:   var(--brand-secondary, #0E1216);
    --sp-blue:  var(--brand-accent, #1FA9D6);
    --sp-paper: var(--brand-paper, #F5F1EA);
    --sp-muted: var(--brand-muted, #7A7368);

    --sp-display: 'Anton', 'Impact', 'Arial Narrow', sans-serif;
    --sp-body:    'IBM Plex Sans', system-ui, sans-serif;
    --sp-mono:    'JetBrains Mono', ui-monospace, monospace;

    /* Full-bleed bands + centred 1328px content column. */
    --cm-inset: clamp(1.25rem, 4vw, 3.5rem);
    --cm-edge:  max(var(--cm-inset), calc((100% - 1328px) / 2));
    --sp-band-y: clamp(72px, 9vw, 112px);

    background: var(--sp-paper);
    color: var(--sp-ink);
    font-family: var(--sp-body);
    min-height: 100vh;
}

/* Themed selection so highlighted text reads on-theme, not OS blue. */
.theme-spirit-poster ::selection {
    background: var(--sp-red);
    color: var(--sp-paper);
}

/* Flow the paper surface under the outer "Powered by My League Hub" footer too. */
.public-site:has(.theme-spirit-poster) {
    background: var(--sp-paper);
}

/* ===== Utility strip — centered ink info bar ===== */

.theme-spirit-poster .public-site-util {
    display: block;
    background: var(--sp-ink);
    color: var(--sp-paper);
}
.theme-spirit-poster .public-site-util__inner {
    max-width: none;
    padding: 8px var(--cm-edge);
    justify-content: center;
    gap: 0;
}
.theme-spirit-poster .public-site-util__live { color: var(--sp-blue); }
.theme-spirit-poster .public-site-util__item { color: var(--sp-paper); }
/* Push the member-portal link to sit just after the live dot, centred together. */
.theme-spirit-poster .public-site-util__spacer { margin-left: 28px; }

/* ===== Header — paper, ink underline, centred symmetric wordmark ===== */

.theme-spirit-poster .public-site-header {
    background: var(--sp-paper);
    border-bottom: 2px solid var(--sp-ink);
    padding: 18px 0;
}
.theme-spirit-poster .public-site-header__inner {
    max-width: none;
    padding: 0 var(--cm-edge);
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.theme-spirit-poster .public-site-header__brand {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}
.theme-spirit-poster .public-site-header__brand-mark {
    background: var(--sp-ink);
    color: var(--sp-paper);
}
.theme-spirit-poster .public-site-header__brand-mark::after { background: var(--sp-red); }
.theme-spirit-poster .public-site-header__brand-text { text-align: center; }
.theme-spirit-poster .public-site-header__brand-name {
    font-family: var(--sp-display);
    font-size: 22px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--sp-ink);
    line-height: 1;
}
.theme-spirit-poster .public-site-header__brand-tail,
.theme-spirit-poster .public-site-header__brand-tagline {
    font-family: var(--sp-mono);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sp-muted);
    margin-top: 4px;
}
.theme-spirit-poster .public-site-header__nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}
.theme-spirit-poster .public-site-header__nav a {
    color: var(--sp-ink);
    font-family: var(--sp-mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
}
.theme-spirit-poster .public-site-header__nav a:hover {
    color: var(--sp-red);
    border-bottom-color: var(--sp-red);
}

/* ===== Hero — full-bleed red poster, centred ===== */

.theme-spirit-poster .public-site-hero {
    background: var(--sp-red);
    color: var(--sp-paper);
    text-align: center;
    padding: clamp(80px, 11vw, 132px) var(--cm-edge);
    position: relative;
    overflow: hidden;
}
/* A faint poster watermark band behind the headline — large ink wash, centred. */
.theme-spirit-poster .public-site-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 38%, rgba(0, 0, 0, 0.16), transparent 62%);
    pointer-events: none;
}
.theme-spirit-poster .public-site-hero--with-image::before {
    background: rgba(0, 0, 0, 0.62);
}
.theme-spirit-poster .public-site-hero__content {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
}
.theme-spirit-poster .public-site-hero__heading {
    font-family: var(--sp-display);
    font-size: clamp(3.25rem, 11vw, 124px);
    line-height: 0.9;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--sp-paper);
    margin: 0;
    text-wrap: balance;
    user-select: none;
    -webkit-user-select: none;
}
.theme-spirit-poster .public-site-hero__heading-word { display: inline; margin: 0 0.18em 0 0; }
.theme-spirit-poster .public-site-hero__heading-word:last-child { margin-right: 0; }
.theme-spirit-poster .public-site-hero__subheading {
    margin: 26px auto 0;
    max-width: 620px;
    font-size: 18px;
    line-height: 1.55;
    color: color-mix(in srgb, var(--sp-paper) 90%, transparent);
}

/* Poster triptych — up to three framed hero photos centred under the headline (the renderer
   forces the plain centred hero on this theme, so the split stack never appears). Frames carry a
   thick paper outline like the design's printed-photo edge; the grid centres and caps to 1–3
   columns so one or two photos still sit centred rather than stretching. */
.theme-spirit-poster .public-hero-triptych {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: clamp(2rem, 4vw, 48px) auto 0;
}
.theme-spirit-poster .public-hero-triptych__photo {
    flex: 0 1 280px;
    aspect-ratio: 4 / 5;
    background-size: cover;
    background-position: center;
    outline: 6px solid var(--sp-paper);
    outline-offset: -6px;
    background-color: color-mix(in srgb, var(--sp-ink) 30%, var(--sp-red));
}

/* Hero CTA — paper button with ink label, square poster edge. */
.theme-spirit-poster .public-site .public-site-hero__cta,
.theme-spirit-poster .public-site-hero__cta,
.theme-spirit-poster .public-site-hero__cta:link,
.theme-spirit-poster .public-site-hero__cta:visited {
    background: var(--sp-paper);
    color: var(--sp-ink);
    border-radius: 0;
    font-family: var(--sp-body);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-size: 14px;
    padding: 18px 30px;
    margin-top: 34px;
}
.theme-spirit-poster .public-site-hero__cta:hover,
.theme-spirit-poster .public-site-hero__cta:focus-visible { color: var(--sp-ink); }

/* ===== Ticker — full-bleed ink band, Anton items, blue diamond dots ===== */

.theme-spirit-poster .public-marquee {
    background: var(--sp-ink);
    color: var(--sp-paper);
    padding: 20px 0;
    border-top: 1px solid var(--sp-ink);
    border-bottom: 1px solid var(--sp-ink);
    letter-spacing: 2px;
}
.theme-spirit-poster .public-marquee__item {
    font-family: var(--sp-display);
    font-size: clamp(28px, 4vw, 52px);
    line-height: 1;
    text-transform: uppercase;
    color: var(--sp-paper);
}
/* Recolour every other item so the ticker alternates paper / blue like the design. */
.theme-spirit-poster .public-marquee__item:nth-child(4n+1) { color: var(--sp-blue); }
/* Swap the inline middot for a rotated blue diamond. */
.theme-spirit-poster .public-marquee__dot {
    color: transparent;
    position: relative;
    width: 18px;
    opacity: 1;
}
.theme-spirit-poster .public-marquee__dot::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 13px;
    height: 13px;
    background: var(--sp-blue);
    transform: translate(-50%, -50%) rotate(45deg);
}

/* ===== Stats band — the design's static centred "ticker" =====
   CTicker is NOT a scrolling slogan: it's a centred row of number/label pairs on an
   ink band, alternating paper/blue numbers with blue diamonds between. The spirit
   recipe seeds a StatsStrip here (not a Marquee), styled to that band. */

.theme-spirit-poster .public-site-section:has(.public-stats-strip) {
    background: var(--sp-ink);
    color: var(--sp-paper);
    padding-block: clamp(2.5rem, 5vw, 64px);
}
.theme-spirit-poster .public-stats-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: clamp(28px, 6vw, 84px);
}
.theme-spirit-poster .public-stats-strip__item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    background: transparent;
    border: 0;
    padding: 0;
}
/* Blue diamond separator between pairs (sits in the gap, hidden after the last). */
.theme-spirit-poster .public-stats-strip__item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: calc(-1 * clamp(14px, 3vw, 42px));
    top: 50%;
    width: 12px;
    height: 12px;
    background: var(--sp-blue);
    transform: translate(50%, -50%) rotate(45deg);
}
.theme-spirit-poster .public-stats-strip__num {
    font-family: var(--sp-display);
    font-size: clamp(40px, 6vw, 72px);
    line-height: 0.9;
    letter-spacing: -0.5px;
    color: var(--sp-paper);
}
.theme-spirit-poster .public-stats-strip__item:nth-child(2n) .public-stats-strip__num {
    color: var(--sp-blue);
}
.theme-spirit-poster .public-stats-strip__label {
    font-family: var(--sp-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--sp-paper) 70%, transparent);
}

/* ===== Shared section band — full-bleed, centred content ===== */

.theme-spirit-poster .public-site-section {
    max-width: none;
    margin: 0;
    padding: var(--sp-band-y) var(--cm-edge);
    text-align: center;
}
.theme-spirit-poster .public-site-section__title {
    font-family: var(--sp-display);
    font-size: clamp(2.5rem, 7vw, 84px);
    line-height: 0.96;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    color: var(--sp-ink);
    border: 0;
    padding: 0;
    margin: 0 auto;
    text-wrap: balance;
}
.theme-spirit-poster .public-site-section__lede,
.theme-spirit-poster .public-site-section__intro {
    color: var(--sp-muted);
    font-size: 17px;
    line-height: 1.55;
    max-width: 600px;
    margin: 20px auto 0;
    text-align: center;
}
.theme-spirit-poster .public-site-section__cta {
    border-radius: 0;
    border: 1.5px solid var(--sp-red);
    color: var(--sp-red);
    font-family: var(--sp-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-size: 13px;
    margin: 22px auto 0;
}
.theme-spirit-poster .public-site-section__cta:hover { background: var(--sp-red); color: var(--sp-paper); }

/* Section eyebrow (Locations) — centred red bar + mono kicker. */
.theme-spirit-poster .public-site-section__eyebrow { justify-content: center; }
.theme-spirit-poster .public-site-section__eyebrow-bar { background: var(--sp-red); }
.theme-spirit-poster .public-site-section__eyebrow-text { color: var(--sp-red); }

/* ===== GRIT — paper band, centred 4-up anchor letters ===== */

.theme-spirit-poster .public-site-section:has(.public-pillars) {
    background: var(--sp-paper);
    color: var(--sp-ink);
}
/* Meta becomes a real centred block above the letter grid (base is display:contents). */
.theme-spirit-poster .public-pillars-meta {
    display: block;
    margin-bottom: clamp(2rem, 4vw, 48px);
}
.theme-spirit-poster .public-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.theme-spirit-poster .public-pillars__row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    grid-template-columns: none;
    gap: 0;
    padding: 28px 12px 0;
    border: 0;
    border-top: 2px solid var(--sp-ink);
}
.theme-spirit-poster .public-pillars__letter {
    font-family: var(--sp-display);
    font-size: clamp(4.5rem, 9vw, 132px);
    line-height: 0.85;
    letter-spacing: -2px;
}
/* Letters cycle red → ink → blue → ink across the four columns. */
.theme-spirit-poster .public-pillars__row:nth-child(4n+1) .public-pillars__letter { color: var(--sp-red); }
.theme-spirit-poster .public-pillars__row:nth-child(4n+2) .public-pillars__letter { color: var(--sp-ink); }
.theme-spirit-poster .public-pillars__row:nth-child(4n+3) .public-pillars__letter { color: var(--sp-blue); }
.theme-spirit-poster .public-pillars__row:nth-child(4n+4) .public-pillars__letter { color: var(--sp-ink); }
.theme-spirit-poster .public-pillars__name {
    font-family: var(--sp-display);
    /* 30px to match the design's poster-weight value name (was 21px, too light). */
    font-size: 30px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--sp-ink);
    margin: 12px 0 0;
}
.theme-spirit-poster .public-pillars__body {
    color: var(--sp-muted);
    font-size: 13.5px;
    line-height: 1.5;
    margin: 10px 0 0;
}
@media (max-width: 860px) {
    .theme-spirit-poster .public-pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .theme-spirit-poster .public-pillars { grid-template-columns: 1fr; }
}

/* ===== Clinics (Weekday schedule) — ink band, 5-up paper cards ===== */

.theme-spirit-poster .public-site-section:has(.public-weekday-grid) {
    background: var(--sp-ink);
    color: var(--sp-paper);
}
.theme-spirit-poster .public-site-section:has(.public-weekday-grid) .public-site-section__title { color: var(--sp-paper); }
.theme-spirit-poster .public-site-section:has(.public-weekday-grid) .public-site-section__lede { color: color-mix(in srgb, var(--sp-paper) 72%, transparent); }

.theme-spirit-poster .public-weekday-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: clamp(2rem, 4vw, 48px);
}
.theme-spirit-poster .public-weekday-card {
    background: var(--sp-paper);
    color: var(--sp-ink);
    border: 0;
    border-top: 6px solid var(--sp-red);
    border-radius: 0;
    align-items: center;
    text-align: center;
    padding: 0 0 22px;
    min-height: 300px;
}
/* Day colours cycle red / blue across the five cards like the design's day accents. */
.theme-spirit-poster .public-weekday-card:nth-child(2n) { border-top-color: var(--sp-blue); }
.theme-spirit-poster .public-weekday-card__day {
    background: transparent;
    color: var(--sp-red);
    font-family: var(--sp-display);
    font-size: 56px;
    line-height: 1;
    letter-spacing: -1px;
    padding: 22px 0 4px;
    text-align: center;
}
.theme-spirit-poster .public-weekday-card:nth-child(2n) .public-weekday-card__day { color: var(--sp-blue); }
.theme-spirit-poster .public-weekday-card__time {
    color: var(--sp-muted);
    font-family: var(--sp-mono);
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 0 16px;
    text-align: center;
}
.theme-spirit-poster .public-weekday-card__title {
    font-family: var(--sp-display);
    font-size: 21px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--sp-ink);
    padding: 8px 16px 0;
    text-align: center;
}
.theme-spirit-poster .public-weekday-card__details {
    color: var(--sp-muted);
    font-size: 13px;
    line-height: 1.5;
    padding: 8px 18px 0;
    text-align: center;
    flex: 1;
}
.theme-spirit-poster .public-weekday-card__cta {
    margin-top: 16px;
    background: var(--sp-red);
    color: var(--sp-paper);
    border-top: 0;
    font-family: var(--sp-body);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    padding: 11px 22px;
    align-self: center;
}
.theme-spirit-poster .public-weekday-card:nth-child(2n) .public-weekday-card__cta { background: var(--sp-blue); }
.theme-spirit-poster .public-weekday-card__cta:hover { filter: brightness(1.06); }
@media (max-width: 860px) {
    .theme-spirit-poster .public-weekday-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
}

/* ===== Facilities (Locations) — paper band, centred 3-up cards ===== */

.theme-spirit-poster .public-site-section:has(.public-locations) {
    background: var(--sp-paper);
    color: var(--sp-ink);
}
.theme-spirit-poster .public-locations {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: clamp(2rem, 4vw, 48px);
    text-align: left;
}
.theme-spirit-poster .public-locations__row {
    display: block;
    grid-template-columns: none;
    gap: 0;
    padding: 26px;
    border: 1px solid color-mix(in srgb, var(--sp-ink) 12%, transparent);
    border-top: 4px solid var(--sp-red);
}
.theme-spirit-poster .public-locations__row:nth-child(2) { border-top-color: var(--sp-blue); }
.theme-spirit-poster .public-locations__row:nth-child(3) { border-top-color: var(--sp-ink); }
.theme-spirit-poster .public-locations__index {
    font-family: var(--sp-display);
    font-size: 40px;
    line-height: 1;
    color: color-mix(in srgb, var(--sp-ink) 22%, transparent);
}
.theme-spirit-poster .public-locations__role {
    font-family: var(--sp-mono);
    font-size: 11px;
    letter-spacing: 1.4px;
    color: var(--sp-red);
    margin-top: 14px;
}
.theme-spirit-poster .public-locations__name {
    font-family: var(--sp-display);
    font-size: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--sp-ink);
}
.theme-spirit-poster .public-locations__address {
    font-family: var(--sp-mono);
    font-size: 13.5px;
    color: var(--sp-muted);
    margin-top: 12px;
}
.theme-spirit-poster .public-locations__notes {
    color: var(--sp-muted);
    font-size: 14px;
    line-height: 1.5;
    font-style: normal;
    margin-top: 12px;
}
.theme-spirit-poster .public-locations__actions {
    align-items: stretch;
    margin-top: 18px;
}
.theme-spirit-poster .public-locations__directions,
.theme-spirit-poster .public-locations__directions:link,
.theme-spirit-poster .public-locations__directions:visited {
    background: var(--sp-ink);
    color: var(--sp-paper);
    border: 0;
    border-radius: 0;
    font-family: var(--sp-body);
}
.theme-spirit-poster .public-locations__directions:hover { background: var(--sp-red); }
.theme-spirit-poster .public-locations__directions:hover * { color: var(--sp-paper); }
.theme-spirit-poster .public-locations__map,
.theme-spirit-poster .public-locations__map:link,
.theme-spirit-poster .public-locations__map:visited {
    color: var(--sp-muted);
    font-family: var(--sp-mono);
}
@media (max-width: 860px) {
    .theme-spirit-poster .public-locations { grid-template-columns: 1fr; }
}

/* ===== Contact — full-bleed red band, centred ink cards ===== */

.theme-spirit-poster .public-contact-section {
    background: var(--sp-red);
    color: var(--sp-paper);
    max-width: none;
    margin: 0;
    padding: var(--sp-band-y) var(--cm-edge);
    text-align: center;
    display: block;
}
.theme-spirit-poster .public-contact-section__bg { display: none; }
.theme-spirit-poster .public-contact-card-meta {
    display: block;
    margin-bottom: clamp(1.5rem, 3vw, 34px);
}
.theme-spirit-poster .public-contact-section .public-site-section__title {
    color: var(--sp-paper);
    border: 0;
}
.theme-spirit-poster .public-contact-section .public-site-section__lede,
.theme-spirit-poster .public-contact-section .public-site-section__intro {
    color: color-mix(in srgb, var(--sp-paper) 90%, transparent);
}
.theme-spirit-poster .public-contact-card {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}
.theme-spirit-poster .public-contact-card__item {
    background: var(--sp-ink);
    color: var(--sp-paper);
    border: 0;
    border-radius: 0;
    text-align: left;
    min-width: 200px;
    padding: 16px 24px;
}
.theme-spirit-poster .public-contact-card__label {
    font-family: var(--sp-mono);
    font-size: 10.5px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--sp-paper) 60%, transparent);
    margin-bottom: 6px;
}
.theme-spirit-poster .public-contact-card__value {
    font-size: 17px;
    font-weight: 700;
    color: var(--sp-paper);
}
.theme-spirit-poster .public-contact-card__value a { color: var(--sp-paper); }
/* CTA — paper button under the cards, centred. */
.theme-spirit-poster .public-contact-card__cta {
    background: var(--sp-paper);
    color: var(--sp-ink);
    border-radius: 0;
    font-family: var(--sp-body);
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    font-size: 14px;
    padding: 20px 34px;
    margin: 34px auto 0;
}
.theme-spirit-poster .public-contact-card__cta:hover { color: var(--sp-ink); filter: brightness(0.97); }

/* ===== Cards on the paper body (News / Events / Teams / Bento / Gallery / Slideshow) =====
   Kept simple — most Spirit Poster sites use the athletic section set above, but a club
   that adds these blocks still gets on-theme surfaces rather than the generic Radzen look. */
.theme-spirit-poster .public-announcement-card,
.theme-spirit-poster .public-event-card,
.theme-spirit-poster .public-teams-card,
.theme-spirit-poster .public-bento__tile,
.theme-spirit-poster .public-gallery__tile,
.theme-spirit-poster .public-slideshow__slide {
    background: #ffffff;
    border-color: color-mix(in srgb, var(--sp-ink) 12%, transparent);
    border-radius: 0;
    color: var(--sp-ink);
}
.theme-spirit-poster .public-announcement-card__title,
.theme-spirit-poster .public-event-card__title,
.theme-spirit-poster .public-teams-card__name,
.theme-spirit-poster .public-bento__heading,
.theme-spirit-poster .public-slideshow__heading {
    font-family: var(--sp-display);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--sp-ink);
}

/* ===== Outer-layout footer ("Powered by My League Hub") ===== */
.public-site:has(.theme-spirit-poster) .public-site__footer {
    background: transparent;
    border-top-color: color-mix(in srgb, var(--sp-ink) 10%, transparent);
    color: var(--sp-muted);
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 12px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

/* ===== Responsive ===== */
@media (max-width: 720px) {
    .theme-spirit-poster .public-site-section { padding: clamp(56px, 12vw, 80px) var(--cm-inset); }
    .theme-spirit-poster .public-contact-section { padding: clamp(56px, 12vw, 80px) var(--cm-inset); }
}
