/* ============================================================
   T.Finch — Services / Work / Insights redesign
   Editorial cream/ink/teal system. Fully scoped under .rd-page
   so the navbar, footer, home, about and contact pages are
   untouched. Reuses the site's DM Serif Display + Inter fonts.
   ============================================================ */

.rd-page {
    /* palette sampled from the approved mockup */
    --rd-cream:  #F7F4ED;
    --rd-ink:    #001F26;
    --rd-ink-2:  #33484C;            /* muted body copy on cream */
    --rd-teal:   #006D78;            /* deep feature band */
    --rd-teal-2: #00606B;
    --rd-cyan:   #00ADBB;            /* bright accent band */
    --rd-powder: #C7EDF1;            /* light tint band */
    --rd-amber:  #F4A34B;            /* italic + label accent */
    --rd-line:   rgba(0, 31, 38, 0.13);

    --rd-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --rd-sans:  'Inter', 'Segoe UI Variable', -apple-system, BlinkMacSystemFont, sans-serif;
    --rd-mono:  var(--rd-sans);   /* labels/eyebrows use the theme sans (Inter); was DM Mono */

    background: var(--rd-cream);
    color: var(--rd-ink);
    font-family: var(--rd-sans);
    overflow: hidden;               /* contain band backgrounds */
}

.rd-page ::selection { background: var(--rd-cyan); color: #fff; }

/* ---------- shared building blocks ---------- */
.rd-eyebrow {
    display: inline-block;
    font-family: var(--rd-mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--rd-amber);
    margin-bottom: 28px;
}

.rd-band { position: relative; }

.rd-band--powder { background: var(--rd-powder); }
.rd-band--teal   { background: var(--rd-teal);  color: #fff; }
.rd-band--cyan   { background: var(--rd-cyan);  color: #fff; }

.rd-section { padding: clamp(104px, 13vw, 184px) 0; }
.rd-section--tight { padding: clamp(64px, 7vw, 108px) 0; }

/* ---------- buttons ---------- */
.rd-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 24px;
    border-radius: 100px;
    font-family: var(--rd-sans);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.rd-btn .rd-btn-arrow { transition: transform .25s ease; }
.rd-btn:hover .rd-btn-arrow { transform: translateX(4px); }

.rd-btn--solid   { background: var(--rd-cyan); color: #fff; }
.rd-btn--solid:hover { background: var(--rd-teal); color: #fff; }

.rd-btn--outline { background: transparent; color: var(--rd-ink); border-color: rgba(0,31,38,.28); }
.rd-btn--outline:hover { background: var(--rd-ink); color: var(--rd-cream); border-color: var(--rd-ink); }

.rd-btn--ghost   { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.rd-btn--ghost:hover { background: rgba(255,255,255,.14); color: #fff; }

.rd-btn--sm { padding: 10px 18px; font-size: 13px; }

/* ============================================================
   HERO
   ============================================================ */
.rd-hero { padding-top: clamp(156px, 16vw, 208px); padding-bottom: clamp(72px, 9vw, 128px); }

.rd-hero-title {
    font-family: var(--rd-serif);
    font-weight: 400;
    color: var(--rd-ink);
    font-size: clamp(38px, 4.6vw, 68px);
    line-height: 1.08;
    letter-spacing: 0;
    overflow-wrap: break-word;
}
.rd-split-title, .rd-band-title, .rd-cta-title,
.rd-featured-title, .rd-work-title, .rd-svc-name, .rd-article-title { overflow-wrap: break-word; }
.rd-hero-title em { font-style: italic; color: var(--rd-amber); }
.rd-page--insights .rd-hero-title em { color: var(--rd-cyan); }

.rd-hero-lead {
    font-size: clamp(16px, 1.25vw, 19px);
    line-height: 1.65;
    color: var(--rd-ink-2);
    max-width: 60ch;
}

/* split: full-width title, larger lead left-aligned directly beneath it */
.rd-hero--split .rd-hero-inner { display: block; }
.rd-hero--split .rd-hero-title { margin-bottom: clamp(24px, 3vw, 40px); }

/* stack: title, then body paragraphs beneath on the left */
.rd-hero--stack .rd-hero-body {
    max-width: 64ch;
    margin-top: clamp(24px, 3vw, 40px);
    display: grid;
    gap: 18px;
}
.rd-hero--stack .rd-hero-body p {
    font-size: clamp(16px, 1.25vw, 19px);
    line-height: 1.66;
    color: var(--rd-ink-2);
}

/* ============================================================
   SPLIT SECTION HEADER (title left / intro right)
   ============================================================ */
.rd-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: start;
}
.rd-split-title {
    font-family: var(--rd-serif);
    font-weight: 400;
    font-size: clamp(34px, 4.3vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.005em;
    color: var(--rd-ink);
}
.rd-band--powder .rd-split-title { color: var(--rd-ink); }
.rd-split-body { display: grid; gap: 18px; align-self: end; }
.rd-split-body p {
    font-size: clamp(15px, 1.05vw, 16.5px);
    line-height: 1.72;
    color: var(--rd-ink-2);
}
.rd-band--powder .rd-split-body p { color: #16363B; }

/* ============================================================
   FOUR-STAGE SYSTEM
   ============================================================ */
.rd-stages {
    margin-top: clamp(40px, 5vw, 72px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--rd-line);
}
.rd-stage { padding: 34px 30px 40px; border-left: 1px solid var(--rd-line); }
.rd-stage:first-child { border-left: none; padding-left: 0; }
.rd-stage-num {
    font-family: var(--rd-serif);
    font-style: italic;
    font-size: 26px;
    letter-spacing: 0;
    color: var(--rd-cyan);
    margin-bottom: 20px;
    display: block;
}
.rd-stage-name {
    font-family: var(--rd-serif);
    font-weight: 400;
    font-size: 24px;
    color: var(--rd-ink);
    margin-bottom: 14px;
}
.rd-stage-desc { font-size: 13.5px; line-height: 1.7; color: var(--rd-ink-2); }

/* ============================================================
   MAIN SERVICES (teal band + white cards)
   ============================================================ */
.rd-band--teal .rd-eyebrow { color: var(--rd-amber); }
.rd-band-title {
    font-family: var(--rd-serif);
    font-weight: 400;
    font-size: clamp(46px, 7vw, 108px);
    line-height: 1;
    letter-spacing: -0.01em;
    color: #fff;
    margin-bottom: clamp(36px, 4vw, 56px);
}
.rd-band-title em { font-style: italic; color: var(--rd-amber); }

.rd-svc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.rd-svc-card {
    background: var(--rd-cream);
    padding: clamp(28px, 2.6vw, 40px);
    display: flex;
    flex-direction: column;
}
.rd-svc-num {
    font-family: var(--rd-mono);
    font-size: 13px;
    letter-spacing: 0.14em;
    color: var(--rd-amber);
    margin-bottom: 18px;
}
.rd-svc-name {
    font-family: var(--rd-serif);
    font-weight: 400;
    font-size: clamp(22px, 1.9vw, 27px);
    line-height: 1.12;
    color: var(--rd-ink);
    margin-bottom: 14px;
}
.rd-svc-desc { font-size: 14.5px; line-height: 1.7; color: var(--rd-ink-2); margin-bottom: 22px; }
.rd-svc-list { display: grid; gap: 11px; margin-bottom: 28px; }
.rd-svc-list li {
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--rd-ink);
}
.rd-svc-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 8px;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--rd-cyan);
}
.rd-svc-card .rd-btn { margin-top: auto; align-self: flex-start; }

/* ============================================================
   CENTERED CTA  (services)
   ============================================================ */
.rd-cta-center { text-align: center; max-width: 760px; margin: 0 auto; }
.rd-cta-title {
    font-family: var(--rd-serif);
    font-weight: 400;
    font-size: clamp(34px, 4.6vw, 60px);
    line-height: 1.05;
    color: var(--rd-ink);
    margin-bottom: 20px;
}
.rd-cta-text { font-size: 16px; line-height: 1.7; color: var(--rd-ink-2); max-width: 46ch; margin: 0 auto 34px; }
.rd-cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- inline CTA (work — title left / button right) ---------- */
.rd-cta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.rd-cta-row .rd-cta-title { margin-bottom: 0; max-width: 18ch; }

/* ============================================================
   FILTER PILLS
   ============================================================ */
.rd-filters { display: flex; flex-wrap: wrap; gap: 12px; }
.rd-filter {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 100px;
    border: 1px solid rgba(0,31,38,.2);
    font-size: 14px;
    color: var(--rd-ink-2);
    background: transparent;
    transition: all .2s ease;
}
.rd-filter:hover { border-color: var(--rd-ink); color: var(--rd-ink); }
.rd-filter.is-active { background: var(--rd-ink); border-color: var(--rd-ink); color: var(--rd-cream); }

/* ============================================================
   WORK GRID
   ============================================================ */
.rd-work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(40px, 4.5vw, 72px) clamp(32px, 3vw, 56px);
}
.rd-work-card { display: flex; flex-direction: column; }
.rd-work-media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--rd-cyan);
    border: 1px solid var(--rd-line);
}
.rd-work-media img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.rd-work-card:hover .rd-work-media img { transform: scale(1.04); }
.rd-work-placeholder {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.4);
}
.rd-work-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 22px 0 14px;
    font-family: var(--rd-mono);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.rd-work-label .rd-work-num { color: var(--rd-amber); }
.rd-work-label .rd-work-cat { color: var(--rd-ink-2); }
.rd-work-label .rd-work-rule { flex: 0 0 28px; height: 1px; background: rgba(0,31,38,.3); }
.rd-work-title {
    font-family: var(--rd-serif);
    font-weight: 400;
    font-size: clamp(20px, 1.7vw, 25px);
    line-height: 1.12;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--rd-ink);
    margin-bottom: 14px;
}
.rd-work-desc { font-size: 14.5px; line-height: 1.7; color: var(--rd-ink-2); margin-bottom: 22px; }
.rd-work-card .rd-btn { align-self: flex-start; }

.rd-empty { padding: 40px 0 8px; }
.rd-empty-title { font-family: var(--rd-serif); font-size: 26px; color: var(--rd-ink); margin-bottom: 8px; }
.rd-empty-text { color: var(--rd-ink-2); }

/* ============================================================
   INSIGHTS — featured band
   ============================================================ */
.rd-featured { max-width: 880px; }
.rd-eyebrow--serif {
    display: inline-block;
    font-family: var(--rd-serif);
    font-style: italic;
    font-size: 19px;
    letter-spacing: 0;
    text-transform: none;
    color: var(--rd-amber);
    margin-bottom: 22px;
}
.rd-feature-tag {
    display: inline-block;
    font-family: var(--rd-mono);
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rd-ink);
    background: var(--rd-amber);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 22px;
}
.rd-featured-title {
    font-family: var(--rd-serif);
    font-weight: 400;
    font-size: clamp(26px, 2.8vw, 40px);
    line-height: 1.08;
    color: #fff;
    margin-bottom: 22px;
}
.rd-featured-excerpt {
    font-size: clamp(15px, 1.15vw, 18px);
    line-height: 1.65;
    color: rgba(255,255,255,.9);
    max-width: 60ch;
    margin-bottom: 30px;
}
.rd-featured-foot { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.rd-meta {
    font-family: var(--rd-mono);
    font-size: 12.5px;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,.8);
    display: flex; align-items: center; gap: 10px;
}
.rd-meta .rd-dot { opacity: .6; }

/* ---------- insights article grid ---------- */
.rd-article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 2.4vw, 34px);
}
.rd-article {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--rd-line);
}
.rd-article-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--rd-powder);
}
.rd-article-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.rd-article-badge {
    position: absolute;
    top: 14px; left: 14px;
    padding: 5px 13px;
    border-radius: 100px;
    background: rgba(247,244,237,.94);
    color: var(--rd-ink);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.rd-article-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.rd-article-title {
    font-family: var(--rd-serif);
    font-weight: 400;
    font-size: 21px;
    line-height: 1.16;
    color: var(--rd-ink);
    margin-bottom: 12px;
}
.rd-article-excerpt { font-size: 13.5px; line-height: 1.65; color: var(--rd-ink-2); margin-bottom: 22px; }
.rd-article-foot {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.rd-article-meta {
    font-family: var(--rd-mono);
    font-size: 11.5px;
    letter-spacing: 0.04em;
    color: var(--rd-ink-2);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
    .rd-hero--split .rd-hero-inner { grid-template-columns: 1fr; gap: 28px; align-items: start; }
    .rd-hero--split .rd-hero-lead { grid-column: 1; padding-bottom: 0; max-width: 46ch; }
    .rd-split { grid-template-columns: 1fr; gap: 22px; }
    .rd-split-body { align-self: start; }
    .rd-stages { grid-template-columns: repeat(2, 1fr); border-top: none; column-gap: 28px; }
    .rd-stage { border: none; padding: 22px 0 30px; }
    .rd-svc-grid { grid-template-columns: 1fr; }
    .rd-work-grid { grid-template-columns: 1fr; }
    .rd-article-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .rd-page .container { padding: 0 24px; }
    .rd-hero-title { font-size: clamp(30px, 8.2vw, 42px); }
    .rd-split-title { font-size: clamp(26px, 7.2vw, 34px); }
    .rd-band-title { font-size: clamp(40px, 13vw, 64px); }
    .rd-cta-title { font-size: clamp(27px, 7.4vw, 38px); }
    .rd-featured-title { font-size: clamp(28px, 7.6vw, 40px); }
    .rd-hero-lead, .rd-hero--split .rd-hero-lead { max-width: none; }
    .rd-stages { grid-template-columns: 1fr; }
    .rd-stage { padding-left: 0; }
    .rd-article-grid { grid-template-columns: 1fr; }
    .rd-cta-row { flex-direction: column; align-items: flex-start; gap: 22px; }
    .rd-cta-actions { justify-content: flex-start; }
    .rd-featured-foot { gap: 16px; }
}

/* ============================================================
   SERVICE DETAIL SUBPAGES
   ============================================================ */
.rd-sd-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
    gap: clamp(36px, 5vw, 80px);
    align-items: center;
}
.rd-sd-hero-text .rd-eyebrow { margin-bottom: 22px; }
.rd-sd-hero .rd-hero-title { font-size: clamp(32px, 3.7vw, 54px); margin-bottom: 26px; }
.rd-sd-hero .rd-hero-body { margin-top: 0; max-width: none; gap: 16px; }
.rd-sd-hero .rd-hero-body p { font-size: clamp(14.5px, 1vw, 16px); line-height: 1.72; color: var(--rd-ink-2); }

.rd-sd-hero-visual {
    position: relative;
    aspect-ratio: 4 / 3.3;
    background: #F1EBDC;
    border: 1px solid var(--rd-line);
    overflow: hidden;
}
.rd-sd-hero-visual svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.rd-sd-hero-visual::after {
    content: '';
    position: absolute; left: 0; right: 0; bottom: 0;
    height: 24%;
    background: var(--rd-teal);
}
.rd-sd-visual--network::after, .rd-sd-visual--waves::after { height: 0; }

/* Photographic hero visual: show the whole image at its natural aspect ratio.
   These photos contain text, so a fixed box + object-fit:cover would crop words. */
.rd-sd-visual--photo {
    aspect-ratio: auto;
    background: transparent;
    overflow: visible;
}
.rd-sd-visual--photo .rd-sd-hero-img {
    display: block;
    width: 100%;
    height: auto;
}
.rd-sd-visual--photo::after { height: 0; }

/* focus areas */
.rd-sd-head { margin-bottom: clamp(40px, 5vw, 64px); }
.rd-focus-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--rd-line); }
.rd-focus-card { padding: 38px clamp(24px, 3vw, 46px) 42px; border-bottom: 1px solid var(--rd-line); }
.rd-focus-card:nth-child(odd) { border-right: 1px solid var(--rd-line); padding-left: 0; }
.rd-focus-num { font-family: var(--rd-mono); font-size: 13px; letter-spacing: 0.1em; color: var(--rd-cyan); }
.rd-focus-title { font-family: var(--rd-serif); font-weight: 400; font-size: clamp(19px, 1.6vw, 23px); line-height: 1.15; color: var(--rd-ink); margin: 18px 0 12px; }
.rd-focus-desc { font-size: 14px; line-height: 1.7; color: var(--rd-ink-2); }

/* outcomes (teal band) */
.rd-band--teal .rd-sd-outcomes-title { color: #fff; margin-bottom: 0; }
.rd-outcomes-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(28px, 4vw, 72px);
    align-items: center;
    margin-top: clamp(36px, 4vw, 56px);
}
.rd-outcomes-visual { display: flex; justify-content: center; }
.rd-outcomes-visual svg { width: min(100%, 340px); height: auto; }
/* Data-driven radar needs room for the labels around it. */
.rd-outcomes-visual .rd-radar { width: 100%; max-width: 540px; height: auto; overflow: visible; }
.rd-radar--bare { display: none; }   /* mobile-only; swapped in below 900px */
.rd-radar-label {
    fill: rgba(255, 255, 255, 0.92);
    font-family: var(--rd-sans);
    font-size: 13px;
    letter-spacing: 0.005em;
}
.rd-outcomes-visual .rd-outcomes-img { width: min(100%, 460px); height: auto; display: block; border-radius: 4px; }
.rd-outcomes-list { display: flex; flex-direction: column; }
.rd-outcomes-list li { display: flex; align-items: center; gap: 26px; padding: 19px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.16); }
.rd-outcomes-list li:first-child { border-top: 1px solid rgba(255, 255, 255, 0.16); }
.rd-outcomes-num { font-family: var(--rd-serif); font-style: italic; font-size: 22px; color: var(--rd-amber); flex: 0 0 auto; width: 34px; }
.rd-outcomes-text { font-size: clamp(15px, 1.2vw, 18px); color: #fff; }

/* closing CTA (centred column, left-aligned text) */
.rd-sd-cta { max-width: 660px; margin: 0 auto; }
.rd-sd-cta .rd-cta-title { margin-bottom: 22px; }
.rd-sd-cta .rd-cta-text { max-width: 60ch; margin: 0 0 18px; }
.rd-sd-cta .rd-cta-actions { justify-content: flex-start; margin-top: 16px; }

/* continue exploring */
.rd-explore-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 26px; }
.rd-explore-card { display: block; padding: clamp(26px, 2.4vw, 34px); background: #fff; border: 1px solid var(--rd-line); transition: border-color .25s ease, transform .25s ease; }
.rd-explore-card:hover { border-color: var(--rd-teal); transform: translateY(-3px); }
.rd-explore-num { font-family: var(--rd-mono); font-size: 12px; letter-spacing: 0.12em; color: var(--rd-amber); }
.rd-explore-title { font-family: var(--rd-serif); font-weight: 400; font-size: clamp(18px, 1.5vw, 21px); line-height: 1.15; color: var(--rd-ink); margin: 14px 0 12px; }
.rd-explore-desc { font-size: 13.5px; line-height: 1.65; color: var(--rd-ink-2); }

@media (max-width: 900px) {
    .rd-sd-hero-grid { grid-template-columns: 1fr; }
    .rd-sd-hero-visual { order: -1; }
    .rd-focus-grid { grid-template-columns: 1fr; }
    .rd-focus-card:nth-child(odd) { border-right: none; padding-left: 0; }
    .rd-outcomes-grid { grid-template-columns: 1fr; }
    .rd-explore-grid { grid-template-columns: 1fr; }
    /* swap the labeled radar for the tighter label-less one (titles are in the list below) */
    .rd-radar--labeled { display: none; }
    .rd-radar--bare { display: block; }
}

/* ============================================================
   ABOUT — "What makes T.Finch different" comparison
   ============================================================ */
.ab-diff-title { margin-bottom: clamp(36px, 4vw, 56px); }
.ab-diff-title em { font-style: italic; color: var(--rd-amber); }
.ab-diff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--rd-line);
    overflow: hidden;
}
.ab-diff-col { padding: clamp(30px, 3.4vw, 54px); }
.ab-diff-col--old { background: #ECE5D4; }
.ab-diff-col--tfinch { background: var(--rd-teal); color: #fff; }
.ab-diff-eyebrow {
    display: block;
    font-family: var(--rd-mono);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.ab-diff-col--old .ab-diff-eyebrow { color: #8A7B5E; }
.ab-diff-col--tfinch .ab-diff-eyebrow { color: var(--rd-amber); }
.ab-diff-model {
    font-family: var(--rd-serif);
    font-weight: 400;
    font-size: clamp(22px, 2vw, 28px);
    line-height: 1.12;
    margin-bottom: 28px;
}
.ab-diff-col--old .ab-diff-model { color: var(--rd-ink); }
.ab-diff-col--tfinch .ab-diff-model { color: #fff; }
.ab-diff-list { display: grid; gap: 15px; }
.ab-diff-list li { display: flex; align-items: baseline; gap: 14px; font-size: 15px; line-height: 1.5; }
.ab-diff-col--old .ab-diff-list li { color: var(--rd-ink-2); }
.ab-diff-col--tfinch .ab-diff-list li { color: rgba(255, 255, 255, 0.92); }
.ab-mark { flex: 0 0 auto; font-size: 15px; line-height: 1.3; font-weight: 600; }
.ab-mark--x { color: #C0532F; }
.ab-mark--arrow { color: var(--rd-amber); }

@media (max-width: 760px) {
    .ab-diff-grid { grid-template-columns: 1fr; }
}

/* About: Origin heading uses the editorial header serif (Playfair). */
.ab-origin-title {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* About team: centred, larger rectangular photos (less cropping than the circle). */
.ab-team .team-avatar {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    border-radius: 10px;
    margin: 0 0 26px;
    background: #e7eef0;
}
.ab-team .team-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 10px;
}

/* ============================================================
   ARTICLE READING PAGE  (.rd-page--article)
   Editorial essay layout: meta rail + serif title, cover,
   sticky "In this essay" TOC, long-form body, continue reading.
   Body markup comes from the DB (admin-editable raw HTML), so we
   style the plain tags h2/h3/p/ul/blockquote/figure plus a few
   convention classes (.rd-rd-lead, .ar-figure, .ar-closing).
   ============================================================ */
.rd-page--article { overflow: visible; }

/* ---------- hero ---------- */
.rd-rd-hero { padding: clamp(132px, 14vw, 188px) 0 clamp(40px, 5vw, 64px); }
.rd-rd-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 22px;
    margin-bottom: clamp(40px, 5vw, 64px);
    border-bottom: 1px solid var(--rd-line);
    font-family: var(--rd-mono);
    font-size: 11.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.rd-rd-back { color: var(--rd-ink); transition: color .2s ease; }
.rd-rd-back:hover { color: var(--rd-cyan); }
.rd-rd-index { color: rgba(0, 31, 38, 0.42); }

.rd-rd-hero-grid {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: start;
}
.rd-rd-railmeta { display: flex; flex-direction: column; gap: 10px; padding-top: 12px; }
.rd-rd-cat {
    font-family: var(--rd-mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rd-amber);
    margin-bottom: 6px;
}
.rd-rd-metaline {
    font-family: var(--rd-mono);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rd-ink-2);
}
.rd-rd-title {
    font-size: clamp(34px, 4.4vw, 60px);
    line-height: 1.08;
    margin: 0;
    max-width: 16ch;
}
.rd-rd-standfirst {
    font-family: var(--rd-serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(18px, 1.7vw, 23px);
    line-height: 1.5;
    color: var(--rd-ink-2);
    max-width: 54ch;
    margin: clamp(22px, 2.6vw, 32px) 0 0;
}

/* ---------- cover ---------- */
.rd-rd-cover-sec { padding-bottom: clamp(56px, 7vw, 96px); }
.rd-rd-cover {
    margin: 0;
    border-radius: 6px;
    overflow: hidden;
    background: #F1ECE0;
    border: 1px solid var(--rd-line);
}
.rd-rd-cover img { display: block; width: 100%; height: auto; }
.rd-rd-cover-art { width: 100%; aspect-ratio: 12 / 5; }
.rd-rd-cover-art svg { display: block; width: 100%; height: 100%; }

/* ---------- body + toc layout ---------- */
.rd-rd-body-sec { padding-bottom: clamp(80px, 9vw, 128px); }
.rd-rd-layout {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: clamp(40px, 6vw, 92px);
    max-width: 1040px;
}
.rd-rd-toc { position: sticky; top: 108px; align-self: start; }
.rd-rd-toc-label {
    display: block;
    font-family: var(--rd-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(0, 31, 38, 0.42);
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--rd-line);
}
.rd-rd-toc-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.rd-rd-toc-link {
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 10px;
    align-items: start;
    color: var(--rd-ink-2);
    transition: color .2s ease;
}
.rd-rd-toc-num {
    font-family: var(--rd-mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--rd-amber);
    padding-top: 2px;
}
.rd-rd-toc-text { font-size: 13px; line-height: 1.45; }
.rd-rd-toc-link:hover { color: var(--rd-ink); }
.rd-rd-toc-link.is-active { color: var(--rd-ink); }
.rd-rd-toc-link.is-active .rd-rd-toc-text { font-weight: 600; }

/* ---------- the essay body ---------- */
.rd-rd-body { max-width: 64ch; font-size: 16.5px; }
.rd-rd-body > *:first-child { margin-top: 0; }
.rd-rd-body p {
    font-size: 16.5px;
    line-height: 1.78;
    color: var(--rd-ink-2);
    margin: 0 0 1.45em;
}
.rd-rd-body .rd-rd-lead {
    font-size: clamp(18px, 1.5vw, 21px);
    line-height: 1.62;
    color: var(--rd-ink);
}
.rd-rd-body h2 {
    font-family: var(--rd-serif);
    font-weight: 400;
    color: var(--rd-ink);
    font-size: clamp(25px, 2.9vw, 33px);
    line-height: 1.16;
    letter-spacing: -0.01em;
    margin: 2.3em 0 0.7em;
    scroll-margin-top: 104px;
}
.rd-rd-body h3 {
    font-family: var(--rd-sans);
    font-weight: 600;
    color: var(--rd-ink);
    font-size: 19px;
    line-height: 1.3;
    margin: 1.9em 0 0.5em;
}
.rd-rd-body a { color: var(--rd-teal); text-decoration: underline; text-underline-offset: 3px; }
.rd-rd-body strong { color: var(--rd-ink); font-weight: 600; }
.rd-rd-body ul, .rd-rd-body ol { margin: 0 0 1.45em; padding: 0; list-style: none; }
.rd-rd-body ul li, .rd-rd-body ol li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 11px;
    font-size: 16.5px;
    line-height: 1.7;
    color: var(--rd-ink-2);
}
.rd-rd-body ul li::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 0.62em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--rd-cyan);
}
.rd-rd-body ol { counter-reset: rd-ol; }
.rd-rd-body ol li { counter-increment: rd-ol; }
.rd-rd-body ol li::before {
    content: counter(rd-ol, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 0.1em;
    font-family: var(--rd-mono);
    font-size: 12px;
    color: var(--rd-amber);
}
.rd-rd-body blockquote {
    margin: 2em 0;
    padding: 4px 0 4px 26px;
    border-left: 2px solid var(--rd-amber);
    font-family: var(--rd-serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(20px, 2vw, 25px);
    line-height: 1.42;
    color: var(--rd-ink);
}
.rd-rd-body blockquote p { font: inherit; color: inherit; margin: 0; }
.rd-rd-body hr { border: 0; border-top: 1px solid var(--rd-line); margin: 2.4em 0; }

/* figures — teal panels with a mono caption, per the design */
.rd-rd-body figure, .rd-rd-body .ar-figure { margin: 2.4em 0; }
.rd-rd-body .ar-figure-panel {
    position: relative;
    display: flex;
    gap: 14px;
    min-height: 220px;
    padding: 26px;
    border-radius: 6px;
    background: var(--rd-cyan);
    overflow: hidden;
}
.rd-rd-body .ar-figure-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
}
.rd-rd-body .ar-figure-col + .ar-figure-col { border-left: 1px solid rgba(255,255,255,0.2); padding-left: 22px; }
.rd-rd-body .ar-figure-tag {
    font-family: var(--rd-mono);
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}
.rd-rd-body .ar-figure-word {
    font-family: var(--rd-serif);
    font-style: italic;
    font-size: clamp(22px, 2.4vw, 30px);
    color: #fff;
}
.rd-rd-body .ar-figure-panel--row { align-items: flex-end; }
.rd-rd-body .ar-figure-panel--row .ar-figure-tag { margin-right: 26px; }
.rd-rd-body .ar-figure-dot {
    position: absolute;
    top: 26px;
    right: 28px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--rd-amber);
}
.rd-rd-body .ar-figure-panel--center { align-items: center; justify-content: center; }
.rd-rd-body .ar-figure-orb {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--rd-amber);
    box-shadow: 0 0 0 14px rgba(244,163,75,0.18);
}
.rd-rd-body figcaption, .rd-rd-body .ar-figure figcaption {
    margin-top: 14px;
    font-family: var(--rd-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.6;
    color: rgba(0, 31, 38, 0.5);
}

/* closing note from T.Finch */
.rd-rd-body .ar-closing {
    margin-top: 2.6em;
    padding-top: 1.8em;
    border-top: 1px solid var(--rd-line);
}
.rd-rd-body .ar-closing-label {
    font-family: var(--rd-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rd-amber);
    margin-bottom: 12px;
}
.rd-rd-body .ar-closing p:not(.ar-closing-label) {
    font-size: 14.5px;
    line-height: 1.72;
    color: rgba(0, 31, 38, 0.55);
    margin: 0;
}

/* ---------- continue reading ---------- */
.rd-rd-more-sec {
    padding: clamp(72px, 8vw, 112px) 0 clamp(96px, 11vw, 148px);
    border-top: 1px solid var(--rd-line);
}
.rd-rd-more-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: clamp(36px, 4vw, 52px);
}
.rd-rd-more-title {
    font-family: var(--rd-serif);
    font-weight: 400;
    font-size: clamp(30px, 3.6vw, 46px);
    line-height: 1.05;
    color: var(--rd-ink);
    margin: 0;
}
.rd-rd-more-all {
    font-family: var(--rd-mono);
    font-size: 11.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--rd-ink);
    white-space: nowrap;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--rd-line);
    transition: color .2s ease, border-color .2s ease;
}
.rd-rd-more-all:hover { color: var(--rd-cyan); border-color: var(--rd-cyan); }
.rd-rd-more-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}
.rd-rd-more-card {
    display: flex;
    flex-direction: column;
    padding: clamp(26px, 2.6vw, 36px);
    border: 1px solid var(--rd-line);
    border-radius: 8px;
    background: rgba(255,255,255,0.35);
    transition: border-color .25s ease, transform .25s ease, background .25s ease;
}
.rd-rd-more-card:hover { border-color: rgba(0,31,38,0.3); transform: translateY(-3px); background: #fff; }
.rd-rd-more-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}
.rd-rd-more-cat {
    font-family: var(--rd-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rd-amber);
}
.rd-rd-more-time {
    font-family: var(--rd-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(0,31,38,0.42);
}
.rd-rd-more-card-title {
    font-family: var(--rd-serif);
    font-weight: 400;
    font-size: clamp(21px, 2vw, 26px);
    line-height: 1.18;
    color: var(--rd-ink);
    margin: 0 0 12px;
}
.rd-rd-more-card-excerpt {
    font-size: 14px;
    line-height: 1.65;
    color: var(--rd-ink-2);
    margin: 0 0 22px;
}
.rd-rd-more-read {
    margin-top: auto;
    font-family: var(--rd-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--rd-ink);
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
    .rd-rd-hero-grid { grid-template-columns: 1fr; gap: 22px; }
    .rd-rd-railmeta { flex-direction: row; flex-wrap: wrap; gap: 8px 18px; padding-top: 0; align-items: baseline; }
    .rd-rd-cat { margin-bottom: 0; }
    .rd-rd-title { max-width: none; }
    .rd-rd-layout { grid-template-columns: 1fr; gap: 0; }
    .rd-rd-toc {
        position: static;
        margin-bottom: 40px;
        padding: 22px;
        border: 1px solid var(--rd-line);
        border-radius: 8px;
        background: rgba(255,255,255,0.4);
    }
    .rd-rd-body { max-width: none; }
    .rd-rd-more-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Work case-study detail (preview) — .rd-page--case
   Editor-driven blocks; each renders only when its field is filled.
   ============================================================ */
.rd-page--case .container { max-width: 1200px; }

/* Hero */
.rd-cs-hero { padding: clamp(40px, 7vw, 96px) 0 clamp(28px, 4vw, 48px); border-bottom: 1px solid var(--rd-line); }
.rd-cs-top { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: clamp(28px, 5vw, 64px); }
.rd-cs-back { font-family: var(--rd-mono); font-size: 12px; letter-spacing: .06em; color: var(--rd-ink-2); text-decoration: none; }
.rd-cs-back:hover { color: var(--rd-ink); }
.rd-cs-eyebrow { font-family: var(--rd-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--rd-amber); }
.rd-cs-title { max-width: 17ch; }
.rd-cs-standfirst { font-family: var(--rd-serif); font-style: italic; font-size: clamp(20px, 2.4vw, 28px); line-height: 1.35; color: var(--rd-ink-2); margin: clamp(18px, 2.2vw, 28px) 0 0; max-width: 32ch; }
.rd-cs-metaline { font-family: var(--rd-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--rd-ink-2); margin-top: clamp(20px, 3vw, 32px); display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.rd-cs-metasep { opacity: .4; }
.rd-cs-hero-link { margin-top: clamp(20px, 3vw, 28px); }

/* Section rhythm */
.rd-cs-section { padding: clamp(56px, 8vw, 112px) 0; border-bottom: 1px solid var(--rd-line); }
.rd-cs-section--tight { padding: clamp(44px, 6vw, 84px) 0; }

/* Mono label */
.rd-cs-label { display: block; font-family: var(--rd-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--rd-amber); margin-bottom: 20px; }
.rd-cs-label--teal { color: var(--rd-teal); }

/* Prose */
.rd-cs-prose { font-size: clamp(15px, 1.15vw, 17px); line-height: 1.7; color: var(--rd-ink-2); margin: 0 0 16px; max-width: 60ch; }
.rd-cs-prose:last-child { margin-bottom: 0; }

/* Intro two-column */
.rd-cs-intro { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 6vw, 96px); }
.rd-cs-numlist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.rd-cs-numlist li { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; }
.rd-cs-num { font-family: var(--rd-mono); font-size: 11px; color: var(--rd-amber); padding-top: 3px; }
.rd-cs-num-text { font-size: 15px; line-height: 1.55; color: var(--rd-ink); }

/* Media: cover feature + gallery grid */
.rd-cs-media-sec { padding: clamp(48px, 6vw, 88px) 0; border-bottom: 1px solid var(--rd-line); }
.rd-cs-feature { margin: 0 0 18px; border-radius: 2px; overflow: hidden; aspect-ratio: 16 / 9; }
.rd-cs-feature img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rd-cs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
.rd-cs-grid-item { margin: 0; }
.rd-cs-grid-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; border-radius: 2px; }
.rd-cs-grid-item figcaption { font-family: var(--rd-mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--rd-ink-2); margin-top: 8px; }

/* Statement (diagnosis) */
.rd-cs-statement { display: grid; grid-template-columns: 220px 1fr; gap: clamp(24px, 4vw, 64px); }
.rd-cs-statement-head { font-family: var(--rd-serif); font-size: clamp(24px, 3vw, 38px); line-height: 1.2; color: var(--rd-teal); margin: 0 0 20px; max-width: 24ch; }

/* Takeaways (pull-quotes) */
.rd-cs-quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(24px, 4vw, 56px); margin-top: 8px; }
.rd-cs-quote { font-family: var(--rd-serif); font-style: italic; font-size: clamp(19px, 2vw, 24px); line-height: 1.4; color: var(--rd-ink); margin: 0; padding-left: 20px; border-left: 2px solid var(--rd-amber); }

/* Intervention + rollout */
.rd-cs-twocol { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 88px); }
.rd-cs-bullets { list-style: none; margin: 18px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.rd-cs-bullets li { position: relative; padding-left: 20px; font-size: 15px; line-height: 1.55; color: var(--rd-ink); }
.rd-cs-bullets li::before { content: ''; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; background: var(--rd-amber); border-radius: 50%; }
.rd-cs-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 18px; }
.rd-cs-card { display: flex; gap: 11px; align-items: center; padding: 16px; border: 1px solid var(--rd-line); border-radius: 2px; font-size: 13.5px; line-height: 1.4; color: var(--rd-ink); }
.rd-cs-card-dot { flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--rd-teal); }

/* Business impact (teal panel) */
.rd-cs-impact { background: var(--rd-teal); color: #fff; padding: clamp(56px, 8vw, 112px) 0; }
.rd-cs-impact .rd-cs-label--ondark { color: var(--rd-amber); }
.rd-cs-impact-head { font-family: var(--rd-serif); font-size: clamp(26px, 3.4vw, 44px); line-height: 1.15; margin: 0 0 clamp(28px, 4vw, 48px); max-width: 18ch; }
.rd-cs-impact-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px 48px; }
.rd-cs-impact-list li { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.22); font-size: 15px; line-height: 1.5; }
.rd-cs-impact-num { font-family: var(--rd-mono); font-size: 11px; color: var(--rd-amber); }

/* Related */
.rd-cs-more-head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin-bottom: clamp(28px, 4vw, 44px); }
.rd-cs-more-title { font-family: var(--rd-serif); font-size: clamp(24px, 3vw, 36px); margin: 0; }
.rd-cs-more-all { font-family: var(--rd-mono); font-size: 12px; letter-spacing: .06em; color: var(--rd-ink-2); text-decoration: none; white-space: nowrap; }
.rd-cs-more-all:hover { color: var(--rd-ink); }
.rd-cs-more-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 36px); }
.rd-cs-more-card { text-decoration: none; color: inherit; display: block; }
.rd-cs-more-media { aspect-ratio: 4 / 3; border-radius: 2px; overflow: hidden; margin-bottom: 16px; }
.rd-cs-more-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.rd-cs-more-card:hover .rd-cs-more-media img { transform: scale(1.04); }
.rd-cs-more-cat { font-family: var(--rd-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--rd-amber); }
.rd-cs-more-card-title { font-family: var(--rd-serif); font-size: 20px; margin: 8px 0; line-height: 1.2; }
.rd-cs-more-card-desc { font-size: 14px; line-height: 1.5; color: var(--rd-ink-2); margin: 0; }

@media (max-width: 860px) {
    .rd-cs-intro, .rd-cs-statement, .rd-cs-twocol { grid-template-columns: 1fr; gap: 28px; }
    .rd-cs-cards { grid-template-columns: 1fr; }
    .rd-cs-more-grid { grid-template-columns: 1fr; }
}

/* ---- Work case-study: design fidelity (rv9) ---- */
/* Note: rd-cs-eyebrow already has text-transform/letter-spacing; adding layout + gap only */
/* Note: rd-cs-more-cat already has text-transform/letter-spacing; no duplication needed */
.rd-page--case .rd-cs-title { text-transform: uppercase; letter-spacing: -0.01em; }
.rd-page--case .rd-cs-eyebrow { display: inline-flex; align-items: baseline; gap: 10px; }
.rd-page--case .rd-cs-pnum { font-variant-numeric: tabular-nums; opacity: .55; }
.rd-page--case .rd-cs-ruled { border-top: 1px solid var(--rd-line); }
.rd-page--case .rd-cs-impact.rd-cs-ruled { border-top-color: rgba(255,255,255,.16); }

/* Optional free-form section: rich admin HTML — mirrors .rd-cs-prose sizing/colour */
.rd-page--case .rd-cs-rich > * { margin: 0 0 16px; }
.rd-page--case .rd-cs-rich > *:last-child { margin-bottom: 0; }
.rd-page--case .rd-cs-rich p { font-size: clamp(15px, 1.15vw, 17px); line-height: 1.7; color: var(--rd-ink-2); max-width: 64ch; }
.rd-page--case .rd-cs-rich h2 { font-size: clamp(19px, 1.6vw, 23px); line-height: 1.3; color: var(--rd-ink); margin: 32px 0 12px; }
.rd-page--case .rd-cs-rich h3 { font-size: clamp(16px, 1.3vw, 19px); line-height: 1.4; color: var(--rd-ink); margin: 26px 0 10px; }
.rd-page--case .rd-cs-rich ul, .rd-page--case .rd-cs-rich ol { font-size: clamp(15px, 1.15vw, 17px); line-height: 1.7; color: var(--rd-ink-2); padding-left: 1.2em; }
.rd-page--case .rd-cs-rich li { margin: 0 0 8px; }

