

  /* ==========================================================================
     BREADCRUMB — verbatim from rr-article-v1.html
     ========================================================================== */
  .rr-breadcrumb {
    max-width: var(--max-page); margin: 0 auto;
    padding: calc(var(--announce-h) + var(--header-h-default) + var(--space-6)) var(--space-7) 0;
    font-family: var(--font-body); font-weight: 800; font-size: 11px;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-muted);
  }
  .rr-breadcrumb a { color: var(--color-muted); transition: color var(--dur-short); }
  .rr-breadcrumb a:hover { color: var(--color-accent); }
  .rr-breadcrumb .sep { margin: 0 12px; opacity: 0.5; }

  /* ==========================================================================
     HERO — uses fs-display-hero (matches home's hero scale)
     - centered
     - no eyebrow above (Mark: remove "From Channel Street Books")
     - no colophon (homepage-only element)
     ========================================================================== */
  .hero {
    padding: var(--space-7) var(--space-7) var(--space-7);
    text-align: center;
    max-width: var(--max-page); margin: 0 auto;
  }
  .hero-tagline {
    font-family: var(--font-display); font-weight: 400;
    font-size: var(--fs-display-hero);
    line-height: 0.96; letter-spacing: -0.02em;
    color: var(--color-ink); text-transform: uppercase;
    max-width: 1200px; margin: 0 auto;
  }

  /* ==========================================================================
     SECTION HEADING ROW — verbatim from csb-home-v1.html
     ========================================================================== */
  .section-heading-row {
    display: flex; flex-direction: column; align-items: center;
    margin-bottom: var(--space-5); gap: var(--space-3); text-align: center;
  }
  .section-heading {
    font-family: var(--font-display); font-weight: 400;
    font-size: 64px;
    line-height: 0.96; letter-spacing: 0;
    color: var(--color-ink); text-transform: uppercase;
  }

  /* ==========================================================================
     ARTICLES SECTION
     - Pinned feature (.hero-article) at top
     - Below: sort/filter toolbar + single-column stacked .rr-ledger (see ledger block)
     ========================================================================== */
  .articles-section {
    padding: var(--space-7) var(--space-7) var(--space-7);
  }
  .articles-section-inner { max-width: var(--max-page); margin: 0 auto; }

  /* "FEATURED · AUTHOR SPOTLIGHT" eyebrow above the hero article block */
  .hero-article-section-eyebrow {
    display: block;
    text-align: center;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: var(--fs-label);
    letter-spacing: var(--track-label);
    text-transform: uppercase;
    color: var(--color-accent);
    max-width: 1320px;
    margin: 0 auto var(--space-4);
  }

  /* Hero Article — 2-col magazine spread (light bg, no left meta-rail).
     Borrows .featured-banner 2-col rhythm from home, light-mode for editorial. */
  .hero-article {
    display: grid;
    grid-template-columns: minmax(304px, 368px) 1fr;
    max-width: 1320px; margin: 0 auto var(--space-9);
    border: 1px solid var(--color-border);
    background: var(--color-bg);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--dur-medium) var(--ease-out),
                border-color var(--dur-short) var(--ease-out);
  }
  .hero-article:hover {
    transform: translateY(-3px);
    border-color: var(--color-accent);
  }
  .hero-article:hover .hero-article-title { color: var(--color-accent); }
  .hero-article-media { overflow: hidden; background: #F4F1EA; }
  .hero-article-media img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform var(--dur-long) var(--ease-out);
  }
  .hero-article:hover .hero-article-media img {
    transform: scale(1.04);
  }
  .hero-article-content {
    padding: var(--space-7) var(--space-7);
    display: flex; flex-direction: column;
    justify-content: flex-start;
    gap: var(--space-2);
  }
  .hero-article-meta {
    display: flex; align-items: center; gap: var(--space-2);
    font-family: var(--font-body); font-weight: 800;
    font-size: var(--fs-micro); letter-spacing: var(--track-label);
    text-transform: uppercase;
    margin-bottom: var(--space-2);
  }
  .hero-article-tag { color: var(--color-muted); }
  .hero-article-sep {
    display: inline-block;
    width: 7px; height: 7px;
    background: var(--color-accent);
    border-radius: 50%;
    text-indent: -9999px;
    overflow: hidden;
    margin: 0 8px;
    vertical-align: middle;
    position: relative;
    top: -1px;
  }
  .hero-article-date { color: var(--color-muted); }
  .hero-article-title {
    /* Sentence case (matches actual article-page top heading, Mark direction 2026-04-27) */
    font-family: var(--font-display); font-weight: 400;
    font-size: clamp(28px, 3.2vw, 48px);
    line-height: 1.05; letter-spacing: -0.015em;
    text-transform: none;
    color: var(--color-ink);
    transition: color var(--dur-short) var(--ease-out);
  }
  .hero-article-dek {
    font-family: var(--font-body);
    font-size: var(--fs-body-large);
    line-height: 1.55;
    color: var(--color-muted);
    margin-top: var(--space-3);
  }
  .hero-article-byline {
    font-family: var(--font-body); font-style: normal;
    font-weight: 800;
    font-size: var(--fs-micro);
    letter-spacing: var(--track-label);
    text-transform: uppercase;
    color: var(--color-muted);
    margin-top: var(--space-3);
  }
  .hero-article-cta {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--font-body); font-weight: 800;
    font-size: var(--fs-label); letter-spacing: var(--track-cta);
    text-transform: uppercase; color: var(--color-accent);
    margin-top: var(--space-4);
    border-bottom: 1px solid var(--color-accent);
    padding-bottom: 4px;
    align-self: flex-start;
    transition: gap var(--dur-short) var(--ease-out);
  }
  .hero-article:hover .hero-article-cta { gap: 10px; }

  /* ==========================================================================
     FULL-BLEED FEATURE HERO (.rr-hero) — Mark direction 2026-06-29.
     Image fills the band; text overlaid on a dark gradient scrim; ALL-CAPS title.
     Replaces the old 2-col .hero-article (kept above but unused).
     ========================================================================== */
  .rr-hero {
    position: relative; display: block;
    min-height: 600px;
    max-width: var(--max-page); margin: 0 auto var(--space-9);
    overflow: hidden; text-decoration: none; color: #fff;
    background: var(--color-ink);
  }
  .rr-hero--feature-wide {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .rr-hero-media { position: absolute; inset: 0; z-index: 0; display: block; }
  .rr-hero-media img {
    width: 100%; height: 100%; object-fit: cover; object-position: center center;
    display: block; transition: transform var(--dur-long) var(--ease-out);
  }
  .rr-hero:hover .rr-hero-media img { transform: scale(1.05); }
  /* Match Stitch: transparent on the left (subject), darkening to ~60% on the right
     (text). */
  .rr-hero-scrim {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(90deg, rgba(26,26,26,0) 28%, rgba(26,26,26,0.62) 100%);
  }
  .rr-hero-content {
    position: relative; z-index: 2;
    display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
    min-height: 600px; max-width: 672px; margin-left: auto;
    padding: var(--space-7);
  }
  .rr-hero--long-title .rr-hero-content {
    max-width: 900px;
    padding-left: var(--space-5);
  }
  .rr-hero-eyebrow {
    font-family: var(--font-body); font-weight: 800;
    font-size: var(--fs-micro); letter-spacing: var(--track-label);
    text-transform: uppercase; color: var(--color-accent);
    background: rgba(0,0,0,0.4); padding: 5px 10px; margin-bottom: var(--space-4);
  }
  .rr-hero-title {
    font-family: var(--font-display); font-weight: 400;
    font-size: clamp(32px, 4vw, 48px); line-height: 1.1; letter-spacing: -0.015em;
    text-transform: uppercase; color: #fff; margin-bottom: var(--space-4);
    text-shadow: 0 2px 18px rgba(0,0,0,0.35);
  }
  .rr-hero-title--long {
    font-size: clamp(28px, 2.05vw, 40px);
    line-height: 1.05;
    max-width: 880px;
  }
  body.page-id-129 .rr-hero--feature-wide {
    min-height: clamp(560px, 43.75vw, 900px);
  }
  /* Per-post crop stays specific (image composition differs per article). */
  body.page-id-129 .rr-hero--post-505.rr-hero--feature-wide .rr-hero-media img {
    object-position: left top;
  }
  body.page-id-129 .rr-hero--post-108.rr-hero--feature-wide .rr-hero-media img {
    object-position: left top;
  }
  body.page-id-129 .rr-hero--feature-wide .rr-hero-scrim {
    background: linear-gradient(90deg, rgba(26,26,26,0) 22%, rgba(26,26,26,0.36) 48%, rgba(26,26,26,0.76) 100%);
  }
  body.page-id-129 .rr-hero--feature-wide .rr-hero-content {
    justify-content: center;
    min-height: clamp(560px, 43.75vw, 900px);
    width: min(42rem, 44vw);
    max-width: none;
    margin-left: auto;
    padding: 0 clamp(36px, 6vw, 96px) 0 0;
  }
  body.page-id-129 .rr-hero--feature-wide .rr-hero-title--long {
    max-width: 100%;
    font-size: clamp(32px, 2.55vw, 48px);
    line-height: 1.05;
    letter-spacing: 0;
    overflow-wrap: normal;
    word-break: normal;
  }
  .rr-hero-dek {
    font-family: var(--font-body); font-style: italic;
    font-size: var(--fs-body-large); line-height: 1.55;
    color: rgba(255,255,255,0.9); max-width: 560px; margin-bottom: var(--space-5);
    text-shadow: 0 1px 10px rgba(0,0,0,0.4);
  }
  .rr-hero-foot { display: flex; align-items: center; gap: var(--space-5); flex-wrap: wrap; }
  .rr-hero-byline {
    font-family: var(--font-body); font-weight: 800;
    font-size: var(--fs-micro); letter-spacing: var(--track-label);
    text-transform: uppercase; color: rgba(255,255,255,0.7);
  }
  .rr-hero-cta {
    font-family: var(--font-body); font-weight: 800;
    font-size: var(--fs-label); letter-spacing: var(--track-cta);
    text-transform: uppercase; color: var(--color-accent);
    border-bottom: 1px solid var(--color-accent); padding-bottom: 3px;
    transition: color var(--dur-short), border-color var(--dur-short);
  }
  .rr-hero:hover .rr-hero-cta { color: #fff; border-color: #fff; }
  @media (prefers-reduced-motion: reduce) { .rr-hero-media img { transition: none; } }

  /* ==========================================================================
     ARTICLE INDEX — two-column grid of image-forward cards w/ sort + filter.
     Replaces the old carousel (Mark direction 2026-06-29).
     ========================================================================== */

  /* Sticky filter toolbar. Offset = announce bar + compact header (the height
     the rest of the theme settles to once scrolled). */
  .rr-toolbar {
    position: sticky;
    top: calc(var(--announce-h) + var(--header-h-compact));
    z-index: 100;
    display: flex; flex-direction: column; align-items: stretch;
    gap: var(--space-4);
    margin-top: var(--space-4);
    padding: 0 0 var(--space-4);
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
  }
  .rr-filter {
    display: flex; flex-wrap: nowrap; justify-content: center;
    gap: 7px; min-width: 0; width: 100%; max-width: none; margin: 0 auto;
  }
  .rr-chip {
    display: inline-flex; align-items: center; justify-content: center; gap: 5px;
    min-height: 36px;
    font-family: var(--font-body); font-weight: 800;
    font-size: 10px; letter-spacing: 0.09em;
    text-transform: uppercase; color: var(--color-ink);
    background: rgba(255,255,255,0.32); border: 1px solid var(--color-border);
    padding: 7px 10px; cursor: pointer; text-decoration: none; white-space: nowrap;
    transition: color var(--dur-short), border-color var(--dur-short), background var(--dur-short);
  }
  .rr-chip:hover { color: var(--color-accent); border-color: var(--color-accent); background: #fff; }
  .rr-chip.is-active { color: #fff; background: var(--color-accent); border-color: var(--color-accent); }
  .rr-chip-count { font-size: 10px; letter-spacing: 0; opacity: 0.6; }
  .rr-controls {
    display: flex; align-items: center; justify-content: space-between;
    gap: var(--space-4); width: 100%;
  }
  .rr-sortwrap { display: flex; align-items: center; gap: var(--space-2); flex-shrink: 0; }
  .rr-sort-label {
    font-family: var(--font-body); font-weight: 800;
    font-size: var(--fs-micro); letter-spacing: var(--track-label);
    text-transform: uppercase; color: var(--color-muted);
  }
  /* Custom styled sort dropdown (no native <select> chrome). */
  .rr-sort { position: relative; }
  .rr-sort-toggle {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-body); font-weight: 800;
    font-size: var(--fs-label); letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--color-ink); background: none;
    border: 1px solid var(--color-border); padding: 7px 12px; cursor: pointer;
    transition: border-color var(--dur-short), color var(--dur-short);
  }
  .rr-sort-toggle:hover { border-color: var(--color-accent); color: var(--color-accent); }
  .rr-sort-caret { font-size: 10px; line-height: 1; transition: transform var(--dur-short); }
  .rr-sort.is-open .rr-sort-caret { transform: rotate(180deg); }
  .rr-sort-options {
    position: absolute; right: 0; top: calc(100% + 4px); z-index: 30;
    min-width: 190px; margin: 0; padding: 4px; list-style: none;
    background: var(--color-bg); border: 1px solid var(--color-border-strong);
    box-shadow: 0 8px 28px rgba(26,26,26,0.12); display: none;
  }
  .rr-sort.is-open .rr-sort-options { display: block; }
  .rr-sort-opt {
    font-family: var(--font-body); font-weight: 600; font-size: var(--fs-body-sm);
    color: var(--color-ink); padding: 9px 12px; cursor: pointer; white-space: nowrap;
    transition: background var(--dur-short), color var(--dur-short);
  }
  .rr-sort-opt:hover { background: #F4F2EC; color: var(--color-accent); }
  .rr-sort-opt.is-selected { color: var(--color-accent); font-weight: 800; }
  .rr-count {
    font-family: var(--font-body); font-weight: 800;
    font-size: var(--fs-micro); letter-spacing: var(--track-label);
    text-transform: uppercase; color: var(--color-muted);
    margin: 0;
  }
  /* Two-column grid of image-forward cards. Collapses to one column at <=1024px. */
  .rr-ledger {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: var(--space-6);
    row-gap: var(--space-6);
    margin-top: var(--space-5);
  }
  .rr-cluster-divider {
    grid-column: 1 / -1;            /* category headings span both columns */
    font-family: var(--font-body); font-weight: 800;
    font-size: var(--fs-label); letter-spacing: var(--track-label);
    text-transform: uppercase; color: var(--color-accent);
    padding-bottom: var(--space-2); margin-top: var(--space-3);
    border-bottom: 1px solid var(--color-border);
  }
  /* Text-forward article row: square image LEFT, headline + summary + meta RIGHT
     (Mark direction 2026-06-30 — "looks like articles", echoes the original brief). */
  .rr-card {
    display: grid; grid-template-columns: 150px 1fr; column-gap: var(--space-4);
    align-items: start; text-decoration: none; color: inherit; cursor: pointer;
  }
  .rr-card[hidden] { display: none; }
  .rr-card-media {
    width: 150px; height: 150px; aspect-ratio: 1 / 1;
    overflow: hidden; background: #F4F1EA;
    border: 1px solid var(--color-border);
    transition: border-color var(--dur-short) var(--ease-out);
  }
  .rr-card-media img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform var(--dur-long) var(--ease-out);
  }
  .rr-card[data-post-id="505"] .rr-card-media img {
    object-position: left center;
  }
  .rr-card:hover .rr-card-media { border-color: var(--color-accent); }
  .rr-card:hover .rr-card-media img { transform: scale(1.04); }
  .rr-card-body { min-width: 0; display: flex; flex-direction: column; }
  .rr-card-tag {
    font-family: var(--font-body); font-weight: 800;
    font-size: var(--fs-micro); letter-spacing: var(--track-label);
    text-transform: uppercase; color: var(--color-accent); margin-bottom: var(--space-2);
  }
  .rr-card-title {
    font-family: var(--font-display); font-weight: 400;
    font-size: clamp(17px, 1.3vw, 22px); line-height: 1.15; letter-spacing: -0.005em;
    text-transform: uppercase; color: var(--color-ink); margin-bottom: var(--space-2);
    transition: color var(--dur-short) var(--ease-out);
  }
  .rr-card:hover .rr-card-title { color: var(--color-accent); }
  .rr-card-dek {
    font-family: var(--font-body); font-size: 13px; line-height: 1.5;
    color: var(--color-muted); margin-bottom: var(--space-3);
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  }
  .rr-card-date {
    margin-top: auto; font-family: var(--font-body); font-weight: 800;
    font-size: var(--fs-micro); letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--color-muted);
  }
  @media (prefers-reduced-motion: reduce) {
    .rr-card-media img { transition: none; }
  }

  /* Pagination — Prev / numbered pages / Next (client-side). */
  .rr-pager {
    display: flex; justify-content: center; align-items: center;
    gap: var(--space-2); flex-wrap: wrap;
    margin-top: var(--space-7);
  }
  .rr-page {
    font-family: var(--font-body); font-weight: 800;
    font-size: var(--fs-micro); letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--color-ink); background: none;
    border: 1px solid var(--color-border); padding: 8px 13px; min-width: 40px;
    cursor: pointer;
    transition: color var(--dur-short), border-color var(--dur-short), background var(--dur-short);
  }
  .rr-page:hover:not(:disabled) { color: var(--color-accent); border-color: var(--color-accent); }
  .rr-page.is-active { color: #fff; background: var(--color-accent); border-color: var(--color-accent); }
  .rr-page:disabled { opacity: 0.4; cursor: default; }

  /* ==========================================================================
     ARCHIVE — reduced prominence per Mark
     - smaller heading (sub-section size, not display-section)
     - tighter padding
     - per-item eyebrow dropped
     - smaller cluster name
     ========================================================================== */
  .archive-section {
    padding: var(--space-6) var(--space-7) var(--space-7);
    background: #F4F2EC;
  }
  .archive-section-inner { max-width: var(--max-page); margin: 0 auto; }
  .archive-heading-row {
    display: flex; flex-direction: column; align-items: center;
    margin-bottom: var(--space-5); gap: var(--space-1); text-align: center;
  }
  .archive-eyebrow {
    font-family: var(--font-body); font-weight: 800;
    font-size: var(--fs-micro); letter-spacing: var(--track-label);
    text-transform: uppercase; color: var(--color-accent);
  }
  .archive-heading {
    font-family: var(--font-display); font-weight: 400;
    font-size: 24px; line-height: 1.0;
    letter-spacing: -0.01em; color: var(--color-ink);
    text-transform: uppercase;
  }
  .archive-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: var(--space-4) auto 0;
    text-align: center;
  }
  .archive-cluster {
    font-family: var(--font-body); font-weight: 600;
    font-size: var(--fs-body-sm);
    color: var(--color-ink);
    padding: 6px 14px;
    white-space: nowrap;
    transition: color var(--dur-short);
  }
  .archive-cluster:hover { color: var(--color-accent); }
  .archive-cluster + .archive-cluster::before {
    content: '\00b7';
    color: var(--color-accent);
    margin-right: 14px;
    margin-left: -14px;
    pointer-events: none;
  }

  /* ==========================================================================
     RESPONSIVE — verbatim from home + index-specific overrides
     ========================================================================== */
  @media (max-width: 1024px) {
    .site-header-inner { padding: 0 var(--space-5); }
    .site-nav { gap: var(--space-4); }
    .rr-breadcrumb { padding-left: var(--space-5); padding-right: var(--space-5); }
    .hero { padding: var(--space-6) var(--space-5); }
    .articles-section, .archive-section, .newsletter { padding: var(--space-7) var(--space-5); }
    .archive-grid { grid-template-columns: repeat(2, 1fr); }
    /* Two-column index is desktop-only; tablets/phones use one comfortable column. */
    .rr-ledger { grid-template-columns: 1fr; column-gap: 0; }
    .rr-filter {
      justify-content: flex-start; overflow-x: auto;
      padding-bottom: var(--space-1); scrollbar-width: thin;
    }
    .rr-chip { flex: 0 0 auto; }
  }
  @media (max-width: 700px) {
    .site-nav { display: none; }
    .rr-ledger { grid-template-columns: 1fr; column-gap: 0; }
    .section-heading { font-size: 44px; }
    .rr-toolbar { position: static; gap: var(--space-3); }
    .rr-filter {
      flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto;
      max-width: none; margin: 0 calc(-1 * var(--space-5));
      padding: 0 var(--space-5) var(--space-1);
      scrollbar-width: thin;
    }
    .rr-chip { flex: 0 0 auto; }
    .rr-controls { flex-direction: column; align-items: stretch; gap: var(--space-3); }
    .rr-sortwrap {
      display: grid; grid-template-columns: auto minmax(0, 1fr);
      align-items: center;
    }
    .rr-sort { min-width: 0; }
    .rr-sort-toggle { width: 100%; }
    .rr-sort-toggle { justify-content: space-between; }
    .rr-sort-options { left: 0; right: 0; }
    /* Mobile feature hero: stack image and text so the full dek never sits on the portrait. */
    .rr-hero {
      display: flex;
      flex-direction: column;
      min-height: 0;
      overflow: hidden;
    }
    .rr-hero-content {
      max-width: none;
      min-height: 0;
      padding: var(--space-5);
      justify-content: flex-start;
    }
    .rr-hero--feature-wide {
      min-height: 0;
      margin-top: var(--space-5);
      background: var(--color-ink);
    }
    .rr-hero--feature-wide .rr-hero-media {
      position: relative;
      inset: auto;
      width: 100%;
      height: clamp(300px, 88vw, 420px);
      overflow: hidden;
    }
    .rr-hero--feature-wide .rr-hero-media img {
      transform: none !important;
    }
    .rr-hero--feature-wide .rr-hero-scrim {
      display: none;
    }
    .rr-hero--feature-wide .rr-hero-content {
      min-height: 0;
      padding: 22px 28px 24px 18px;
      background: var(--color-ink);
    }
    .rr-hero--long-title .rr-hero-content { max-width: none; padding-left: var(--space-5); }
    .rr-hero--long-title .rr-hero-media img { object-position: 30% center; }
    body.page-id-129 .rr-hero--feature-wide {
      min-height: 0;
    }
    /* Per-post crop stays specific. */
    body.page-id-129 .rr-hero--post-505.rr-hero--feature-wide .rr-hero-media img {
      object-position: 28% top;
    }
    body.page-id-129 .rr-hero--post-108.rr-hero--feature-wide .rr-hero-media img {
      object-position: 28% top;
    }
    body.page-id-129 .rr-hero--feature-wide .rr-hero-content {
      justify-content: flex-start;
      min-height: 0;
      width: auto;
      max-width: none;
      min-width: 0;
      margin: 0;
      padding: 22px 28px 24px 18px;
      box-sizing: border-box;
    }
    .rr-hero-eyebrow {
      margin-bottom: 14px;
    }
    .rr-hero--feature-wide .rr-hero-dek {
      font-size: 15px;
      line-height: 1.5;
      max-width: calc(100vw - 64px);
      margin-bottom: var(--space-5);
      overflow-wrap: anywhere;
    }
    .rr-hero--feature-wide .rr-hero-foot {
      display: flex;
      gap: var(--space-3);
      max-width: calc(100vw - 64px);
    }
    body.page-id-129 .rr-hero--feature-wide .rr-hero-title,
    body.page-id-129 .rr-hero--feature-wide .rr-hero-title--long {
      display: block;
      width: 100%;
      max-width: calc(100vw - 64px);
      min-width: 0;
      box-sizing: border-box;
      overflow-wrap: anywhere;
      word-break: normal;
      white-space: normal !important;
    }
    body.page-id-129 .rr-hero--feature-wide .rr-hero-title--long {
      font-size: clamp(21px, 5.6vw, 25px);
      line-height: 1.08;
      overflow-wrap: anywhere;
      word-break: normal;
    }
    .rr-hero-title--long span[style] {
      display: inline;
      white-space: normal !important;
      overflow-wrap: anywhere;
    }
    .archive-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 480px) {
    .section-heading { font-size: 38px; }
    .rr-filter {
      margin-right: calc(-1 * var(--space-5));
      margin-left: calc(-1 * var(--space-5));
    }
    .rr-card { grid-template-columns: 110px 1fr; column-gap: var(--space-3); }
    .rr-card-media { width: 110px; height: 110px; }
  }
