/* ============================================================================
   TCIEG THEME — screen layer
   Forked from Ghost Source 1.7.1. Loaded AFTER Source's built/screen.css so it
   overrides the base. Hand-authored, no build step. Ports the proven Code
   Injection skin (blog-code-injection.html) verbatim, then extends it with the
   branded furniture the custom theme adds: gradient hero, category nav,
   featured card, pull-quote, end-of-post CTA, lineage strip, tie-back footer.

   Design tokens are the contract, ported from tcieg.org css/styles.css :root.
   Author: Jane Calloway — Brand + Product Design Director.
   ============================================================================ */

/* ---- Self-hosted Inter (variable) --------------------------------------- */
@font-face {
  font-family: 'InterTC';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin-wght-normal.woff2') format('woff2');
}

/* ---- TCIEG brand tokens -------------------------------------------------- */
:root {
  --tc-navy:        #071b37;
  --tc-navy-2:      #0b2a4e;
  --tc-teal:        #2fb8a7;
  --tc-teal-dark:   #168f83;
  --tc-teal-hi:     #92efe3;   /* light teal for eyebrows on navy */
  --tc-mint:        #eaf8f5;
  --tc-paper:       #ffffff;
  --tc-soft:        #f5f8fb;
  --tc-ink:         #122034;
  --tc-muted:       #5d6b7d;
  --tc-line:        #dce5ee;
  --tc-radius:      24px;
  --tc-radius-sm:   12px;
  --tc-shadow:      0 24px 60px rgba(7,27,55,.12);
  --tc-shadow-card: 0 12px 32px rgba(7,27,55,.06);
  --tc-shadow-hover:0 30px 70px rgba(7,27,55,.16);

  /* Retarget Ghost's built-in accent so Portal / members / accent classes
     everywhere resolve to teal, never Source's default pink. */
  --ghost-accent-color: var(--tc-teal);

  /* Source design tokens, retargeted to the TCIEG palette. */
  --font-sans: "InterTC", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --background-color: var(--tc-paper);
  --color-primary-text: var(--tc-ink);
  --color-secondary-text: var(--tc-muted);
  --color-border: var(--tc-line);
  --container-width: 1180px;
  --content-width: 720px;
}

/* ---- Global base --------------------------------------------------------- */
body {
  background: var(--tc-soft);
  color: var(--tc-ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}
.is-title,
h1, h2, h3, h4, h5, h6 { font-family: var(--font-sans); }

/* Skip-link (a11y): visible on focus only */
.tc-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 12px 18px;
  background: var(--tc-navy);
  color: #fff;
  border-radius: 0 0 var(--tc-radius-sm) 0;
  font-weight: 700;
}
.tc-skip-link:focus { left: 0; }

/* Universal focus-visible ring (a11y) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid rgba(47,184,167,.55);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ==========================================================================
   HEADER + NAVIGATION  (.gh-navigation)
   Navy bar, light text, teal underline-grow on hover.
   ========================================================================== */
.gh-navigation {
  background: var(--tc-navy);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: saturate(140%) blur(12px);
}
.gh-navigation.has-accent-color { background: var(--tc-navy); }
.gh-navigation .gh-navigation-logo,
.gh-navigation-brand a,
.gh-navigation-menu a,
.gh-navigation-menu .nav a {
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.01em;
}
/* Logo swap: force the white/dark lockup on the navy bar */
.gh-navigation .gh-navigation-logo img {
  height: 34px;
  width: auto;
  max-width: 44vw;
}
/* Teal underline-grow on nav links (port of .site-nav a::after) */
.gh-navigation-menu .nav li a {
  position: relative;
  padding: 6px 0;
}
.gh-navigation-menu .nav li a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--tc-teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.gh-navigation-menu .nav li a:hover::after,
.gh-navigation-menu .nav-current a::after { transform: scaleX(1); }
.gh-navigation-menu a:hover,
.gh-navigation-menu .nav-current a,
.gh-navigation-menu .nav-current { color: var(--tc-teal); }

/* Search + burger icons -> white, teal on hover */
.gh-navigation .gh-icon-button,
.gh-navigation .gh-search,
.gh-navigation .gh-burger,
.gh-navigation .gh-navigation-actions svg,
.gh-navigation .gh-navigation-brand svg { color: #fff; fill: currentColor; }
.gh-navigation .gh-icon-button:hover { color: var(--tc-teal); }

/* Members actions: Sign in link white; Subscribe = teal pill */
.gh-navigation-members a:not(.gh-button) { color: #fff; }
.gh-navigation-members a:not(.gh-button):hover { color: var(--tc-teal); }

/* ==========================================================================
   BUTTONS  (.gh-button)  — teal, never pink
   ========================================================================== */
.gh-button,
.gh-form .gh-button,
.gh-footer-signup .gh-button,
button.gh-button {
  background: var(--tc-teal);
  border-color: var(--tc-teal);
  color: #fff;
  border-radius: var(--tc-radius-sm);
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(47,184,167,.28);
  transition: background .18s ease, transform .12s ease, box-shadow .18s ease;
}
.gh-button:hover,
.gh-form .gh-button:hover,
button.gh-button:hover {
  background: var(--tc-teal-dark);
  border-color: var(--tc-teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(22,143,131,.34);
}
.gh-button:focus-visible {
  outline: 3px solid rgba(47,184,167,.55);
  outline-offset: 2px;
}
/* Outline variant */
.gh-button.gh-button-outline {
  background: transparent;
  box-shadow: none;
  border: 1.5px solid var(--tc-teal);
  color: var(--tc-teal);
}
.gh-navigation .gh-button.gh-button-outline {
  border-color: rgba(255,255,255,.55);
  color: #fff;
}
.gh-navigation .gh-button.gh-button-outline:hover {
  border-color: var(--tc-teal);
  color: var(--tc-teal);
}

/* Email input focus -> teal ring */
.gh-form-input:focus,
input[type="email"]:focus {
  border-color: var(--tc-teal);
  box-shadow: 0 0 0 3px rgba(47,184,167,.20);
  outline: none;
}

/* ==========================================================================
   TC HERO BAND  (homepage + archive)  — the tcieg.org gradient
   ========================================================================== */
.tc-hero {
  background:
    radial-gradient(circle at 15% 18%, rgba(47,184,167,.22), transparent 36%),
    linear-gradient(135deg, var(--tc-navy) 0%, #0c315d 54%, #0e514f 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.tc-hero::after {
  content: "";
  position: absolute;
  inset: auto -18% -38% auto;
  width: 640px; height: 640px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  pointer-events: none;
}
.tc-hero-inner {
  width: min(var(--container-width), calc(100% - 40px));
  margin-inline: auto;
  padding: 92px 0 84px;
  position: relative;
  z-index: 1;
}
.tc-hero .tc-eyebrow { color: var(--tc-teal-hi); }
.tc-hero h1 {
  font-size: clamp(2.45rem, 5vw, 4.4rem);
  line-height: .98;
  letter-spacing: -.05em;
  margin: 0 0 20px;
  max-width: 900px;
  color: #fff;
}
.tc-hero .tc-lead {
  font-size: clamp(1.12rem, 1.7vw, 1.32rem);
  max-width: 760px;
  color: rgba(255,255,255,.87);
  margin: 0;
  line-height: 1.5;
}

/* Shared eyebrow */
.tc-eyebrow {
  display: block;
  margin: 0 0 12px;
  color: var(--tc-teal-dark);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
}

/* ==========================================================================
   CATEGORY NAV  — segmented pill control on the soft band
   ========================================================================== */
.tc-category-nav {
  background: var(--tc-soft);
  border-bottom: 1px solid var(--tc-line);
}
.tc-category-nav-inner {
  width: min(var(--container-width), calc(100% - 40px));
  margin-inline: auto;
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.tc-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--tc-teal);
  color: var(--tc-teal-dark);
  background: transparent;
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .01em;
  transition: background .16s ease, color .16s ease, transform .12s ease;
}
.tc-cat-pill:hover { transform: translateY(-1px); }
.tc-cat-pill.is-active,
.tc-cat-pill:hover {
  background: var(--tc-teal);
  color: #fff;
  border-color: var(--tc-teal);
}
.tc-cat-pill.is-all {
  border-color: var(--tc-line);
  color: var(--tc-muted);
}
.tc-cat-pill.is-all.is-active,
.tc-cat-pill.is-all:hover {
  background: var(--tc-navy);
  color: #fff;
  border-color: var(--tc-navy);
}

/* ==========================================================================
   HOMEPAGE CONTENT WRAP
   ========================================================================== */
.tc-home-body {
  width: min(var(--container-width), calc(100% - 40px));
  margin-inline: auto;
  padding: 64px 0 40px;
}
.tc-section-title {
  color: var(--tc-navy);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  letter-spacing: -.03em;
  margin: 0 0 22px;
}

/* ---- Featured card (large) ---------------------------------------------- */
.tc-featured-wrap { margin-bottom: 44px; }
.tc-featured-card {
  display: block;
  border: 1px solid var(--tc-line);
  border-left: 4px solid var(--tc-teal);
  border-radius: var(--tc-radius);
  background: #fff;
  padding: 32px;
  box-shadow: var(--tc-shadow-card);
  transition: transform .2s ease, box-shadow .2s ease;
}
.tc-featured-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--tc-shadow-hover);
}
.tc-featured-card .fc-label {
  display: inline-block;
  color: var(--tc-teal-dark);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
  margin-bottom: 12px;
}
.tc-featured-card h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  line-height: 1.15;
  color: var(--tc-navy);
  margin: 0 0 12px;
  letter-spacing: -.02em;
}
.tc-featured-card p {
  color: var(--tc-muted);
  font-size: 1.1rem;
  max-width: 70ch;
  margin: 0 0 16px;
}
.tc-featured-card .fc-more { color: var(--tc-teal-dark); font-weight: 800; }
.tc-featured-card .fc-date { color: var(--tc-muted); font-weight: 500; font-size: .85rem; margin-left: 6px; }
.tc-featured-figure {
  margin: 0 0 22px;
  border-radius: var(--tc-radius-sm);
  overflow: hidden;
}
.tc-featured-figure img { display: block; width: 100%; height: auto; }

/* ---- Post grid ----------------------------------------------------------- */
.tc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.tc-card {
  display: flex;
  flex-direction: column;
  background: var(--tc-paper);
  border: 1px solid var(--tc-line);
  border-radius: var(--tc-radius);
  box-shadow: var(--tc-shadow-card);
  overflow: hidden;
  transition: transform .16s ease, box-shadow .18s ease;
}
.tc-card:hover { transform: translateY(-3px); box-shadow: var(--tc-shadow-hover); }
.tc-card-link { display: flex; flex-direction: column; height: 100%; }
.tc-card-figure { margin: 0; aspect-ratio: 16/9; overflow: hidden; background: var(--tc-soft); }
.tc-card-figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tc-card-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.tc-card-tag {
  color: var(--tc-teal-dark);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 800;
  margin: 0 0 8px;
}
.tc-card-title {
  color: var(--tc-navy);
  font-size: 1.16rem;
  line-height: 1.28;
  letter-spacing: -.01em;
  margin: 0 0 10px;
}
.tc-card:hover .tc-card-title { color: var(--tc-teal-dark); }
.tc-card-excerpt { color: var(--tc-muted); font-size: .98rem; margin: 0 0 16px; }
.tc-card-meta {
  margin-top: auto;
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--tc-muted);
  font-size: .84rem;
}
.tc-card-meta .bull { color: var(--tc-line); }

/* Pagination */
.tc-pagination {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 46px 0 8px;
}
.tc-pagination a,
.tc-pagination span {
  padding: 10px 18px;
  border-radius: var(--tc-radius-sm);
  border: 1px solid var(--tc-line);
  color: var(--tc-navy);
  font-weight: 700;
  background: #fff;
}
.tc-pagination a:hover { border-color: var(--tc-teal); color: var(--tc-teal-dark); }
.tc-pagination .tc-page-number { border: none; color: var(--tc-muted); background: transparent; }

/* ==========================================================================
   POST FEED CARDS (Source native .gh-card) — retint for archive/related feeds
   ========================================================================== */
.gh-card {
  background: var(--tc-paper);
  border: 1px solid var(--tc-line);
  border-radius: var(--tc-radius);
  box-shadow: var(--tc-shadow-card);
  overflow: hidden;
  transition: transform .16s ease, box-shadow .18s ease;
}
.gh-card:hover { transform: translateY(-3px); box-shadow: var(--tc-shadow-hover); }
.gh-card-title { color: var(--tc-navy); letter-spacing: -0.01em; }
.gh-card-link:hover .gh-card-title { color: var(--tc-teal-dark); }
.gh-card-excerpt { color: var(--tc-muted); }
.gh-card-tag { color: var(--tc-teal-dark); text-transform: uppercase; letter-spacing: .1em; font-weight: 800; font-size: .72rem; }
.gh-card-meta, .gh-card-author, .gh-card-date { color: var(--tc-muted); }
.gh-container-title { color: var(--tc-navy); }

/* ==========================================================================
   ARCHIVE (tag/author) hero — reuse the gradient band, scoped
   ========================================================================== */
.tc-archive-hero .tc-hero-inner { padding: 76px 0 68px; }
.tc-archive-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  letter-spacing: -.045em;
  margin: 0 0 16px;
  color: #fff;
}
.tc-archive-hero .tc-lead { color: rgba(255,255,255,.85); }
.tc-author-avatar {
  width: 84px; height: 84px;
  border-radius: 50%;
  border: 3px solid var(--tc-teal);
  object-fit: cover;
  margin-bottom: 20px;
  display: block;
}

/* ==========================================================================
   ARTICLE / POST PAGE
   ========================================================================== */
.gh-article-header.gh-canvas { padding-top: 56px; }
.gh-article-tag,
.gh-article-tag a {
  color: var(--tc-teal-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .82rem;
}
.gh-article-title { color: var(--tc-navy); letter-spacing: -0.03em; }
.gh-article-excerpt { color: var(--tc-muted); }
.gh-article-meta,
.gh-article-meta-date,
.gh-article-author-name,
.gh-article-meta-content,
.gh-article-meta-length { color: var(--tc-muted); }

.gh-content { color: var(--tc-ink); }
.gh-content > * { max-width: 70ch; }
.gh-content > .kg-width-wide,
.gh-content > .kg-width-full,
.gh-content > figure { max-width: none; }
.gh-content h1, .gh-content h2, .gh-content h3, .gh-content h4 {
  color: var(--tc-navy); letter-spacing: -0.02em;
}
.gh-content a {
  color: var(--tc-teal-dark);
  text-decoration: underline;
  text-decoration-color: rgba(47,184,167,.45);
  text-underline-offset: 2px;
}
.gh-content a:hover { color: var(--tc-teal); }

/* Plain blockquote -> mint callout */
.gh-content blockquote:not([class]) {
  border-left: 4px solid var(--tc-teal);
  background: var(--tc-mint);
  border-radius: 0 var(--tc-radius-sm) var(--tc-radius-sm) 0;
  color: var(--tc-ink);
  padding: 18px 24px;
  font-style: normal;
}

/* Pull-quote (Koenig alt blockquote) */
.gh-content blockquote.kg-blockquote-alt {
  border: none;
  background: transparent;
  text-align: center;
  color: var(--tc-navy);
  font-size: 1.6rem;
  font-style: italic;
  line-height: 1.4;
  max-width: none;
  margin: 40px auto;
  padding: 0 8px;
  position: relative;
}
.gh-content blockquote.kg-blockquote-alt::before {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: var(--tc-teal);
  margin: 0 auto 22px;
}

/* Ghost callout card -> mint retint */
.gh-content .kg-callout-card {
  background: var(--tc-mint);
  border-left: 4px solid var(--tc-teal);
  border-radius: 0 var(--tc-radius-sm) var(--tc-radius-sm) 0;
  color: var(--tc-ink);
}
.gh-content .kg-callout-card-grey { background: var(--tc-soft); }

/* ---- End-of-post CTA (navy -> teal gradient card) ----------------------- */
.tc-post-cta {
  width: min(var(--content-width), calc(100% - 40px));
  margin: 56px auto 8px;
  border-radius: var(--tc-radius);
  background: linear-gradient(135deg, var(--tc-navy) 0%, #0c315d 55%, var(--tc-teal-dark) 100%);
  color: #fff;
  padding: 40px 40px 44px;
  box-shadow: var(--tc-shadow);
}
.tc-post-cta .tc-eyebrow { color: var(--tc-teal-hi); }
.tc-post-cta h2 { color: #fff; margin: 0 0 10px; font-size: 1.7rem; letter-spacing: -.02em; }
.tc-post-cta p { color: rgba(255,255,255,.85); margin: 0 0 22px; max-width: 60ch; }
.tc-post-cta .gh-form { display: flex; gap: 10px; max-width: 460px; flex-wrap: wrap; }
.tc-post-cta .gh-form-input {
  flex: 1;
  min-width: 220px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  border-radius: var(--tc-radius-sm);
  padding: 12px 16px;
}
.tc-post-cta .gh-form-input::placeholder { color: rgba(255,255,255,.6); }

/* Related posts row inherits .tc-grid via template */
.tc-related { width: min(var(--container-width), calc(100% - 40px)); margin: 56px auto 20px; }
.tc-related h2 { color: var(--tc-navy); font-size: 1.4rem; letter-spacing: -.02em; margin: 0 0 22px; }

/* ==========================================================================
   FOOTER  — navy, teal top-rule, tie-back line
   ========================================================================== */
.gh-footer {
  background: var(--tc-navy);
  color: rgba(255,255,255,.82);
  border-top: 3px solid var(--tc-teal);
}
.gh-footer.has-accent-color { background: var(--tc-navy); }
.gh-footer .gh-footer-logo img { height: 32px; width: auto; }
.gh-footer .gh-footer-logo,
.gh-footer-signup-header,
.gh-footer .is-title { color: #fff; }
.gh-footer-signup-subhead,
.gh-footer-copyright,
.gh-footer-copyright a { color: rgba(255,255,255,.72); }
.gh-footer-menu a,
.gh-footer-menu .nav a { color: rgba(255,255,255,.82); }
.gh-footer-menu a:hover { color: var(--tc-teal); }
.gh-footer .gh-social-links a svg { color: rgba(255,255,255,.82); fill: currentColor; }
.gh-footer .gh-social-links a:hover svg { color: var(--tc-teal); }
.gh-footer .gh-form-input,
.gh-footer input[type="email"] {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
}
.gh-footer .gh-form-input::placeholder { color: rgba(255,255,255,.5); }

/* Tie-back line as a real element (not a ::after hack) */
.tc-tieback {
  width: min(var(--container-width), calc(100% - 40px));
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.6);
  font-size: .86rem;
  letter-spacing: .01em;
  text-align: center;
}
.tc-tieback a { color: rgba(255,255,255,.82); text-decoration: underline; text-underline-offset: 2px; }
.tc-tieback a:hover { color: var(--tc-teal); }

/* ==========================================================================
   LINEAGE STRIP  (reusable idiom — the "where this sits" motif)
   Ported from tcieg.org .timeline.lineage.
   ========================================================================== */
.tc-lineage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.tc-lineage-step { position: relative; padding: 0 22px; }
.tc-lineage-step:first-child { padding-left: 0; }
.tc-lineage-step:last-child { padding-right: 0; }
.tc-lineage-step::after {
  content: ""; position: absolute; top: 50%; right: -2px;
  width: 22px; height: 2px; background: var(--tc-teal);
  transform: translateY(-50%); z-index: 2;
}
.tc-lineage-step::before {
  content: ""; position: absolute; top: 50%; right: -2px;
  width: 0; height: 0;
  border-top: 5px solid transparent; border-bottom: 5px solid transparent;
  border-left: 7px solid var(--tc-teal);
  transform: translateY(-50%); z-index: 3;
}
.tc-lineage-step:last-child::after,
.tc-lineage-step:last-child::before { display: none; }
.tc-lineage-step article {
  background: var(--tc-paper); border: 1px solid var(--tc-line);
  border-radius: var(--tc-radius); padding: 24px 22px;
  box-shadow: 0 14px 32px rgba(7,27,55,.05);
  height: 100%; display: flex; flex-direction: column; gap: 8px;
}
.tc-lineage-step span { color: var(--tc-teal-dark); font-weight: 800; font-size: .82rem; letter-spacing: .04em; line-height: 1.2; }
.tc-lineage-step p { color: var(--tc-ink); font-size: .98rem; font-weight: 560; margin: 0; }
.tc-lineage-step--current article { border-color: var(--tc-teal); box-shadow: 0 16px 36px rgba(22,143,131,.14); }
.tc-lineage-step--current span { color: var(--tc-navy); }

/* ==========================================================================
   MISC
   ========================================================================== */
::selection { background: var(--tc-mint); color: var(--tc-navy); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  .tc-lineage { grid-template-columns: 1fr 1fr; gap: 18px; }
  .tc-lineage-step { padding: 0; }
  .tc-lineage-step::after, .tc-lineage-step::before { display: none; }
}
@media (max-width: 640px) {
  .tc-hero-inner { padding: 62px 0 56px; }
  .tc-home-body { padding: 48px 0 32px; }
  .tc-grid { grid-template-columns: 1fr; }
  .tc-lineage { grid-template-columns: 1fr; gap: 14px; }
  .tc-post-cta { padding: 30px 24px 34px; }
  .tc-featured-card { padding: 26px; }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .gh-card:hover, .tc-card:hover, .tc-featured-card:hover,
  .tc-cat-pill:hover, .gh-button:hover { transform: none; }
}
