/* ==========================================================================
   Termosafe case study — reuses tokens & fonts from styles.css
   ========================================================================== */

:root {
  --teal-50: #eaf3fa;
  --teal-600: #18425b;
  --teal-700: #00283d;
  --teal-800: #001224;
  --teal-900: #00020d;

  /* per-case-study theme (defaults to the deep-teal Termosafe palette) */
  --cs-accent: var(--teal-600);
  --cs-deep: var(--teal-700);
  --cs-tint: var(--teal-50);
  --cs-border: var(--teal-100);
  --cs-chip: var(--teal-900);
  --cs-grad-from: #18425b;
  --cs-grad-to: #001224;

  /* content column = 1280px, exactly 80px margins at 1440 (the Figma frame) */
  --cs-gutter: max(clamp(24px, 5vw, 80px), calc((100% - 1280px) / 2));
}

/* case study opens over the homepage, sliding up like a full-screen panel */
@view-transition { navigation: auto; }

@media (prefers-reduced-motion: no-preference) {
  /* the two pages cross-fade, so nothing ever looks blank/loading */
  ::view-transition-old(root),
  ::view-transition-new(root) {
    mix-blend-mode: normal;
  }
  ::view-transition-old(root) {
    animation: cs-out 0.9s cubic-bezier(0.33, 0, 0.2, 1) both;
  }
  ::view-transition-new(root) {
    animation: cs-in 0.9s cubic-bezier(0.33, 0, 0.2, 1) both;
  }
}
@keyframes cs-in {
  from { opacity: 0; transform: translateY(16px) scale(0.995); }
  40%  { opacity: 1; }
  to   { opacity: 1; transform: none; }
}
@keyframes cs-out {
  from { opacity: 1; transform: none; }
  to   { opacity: 0; transform: translateY(-10px) scale(0.995); }
}

/* ---------- Header ---------- */

.cs-header {
  position: relative;
  /* top = 80 padding + 40 (close icon row) + 80 gap, since the close is fixed */
  padding: 200px var(--cs-gutter) 80px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  background: linear-gradient(to top, var(--cs-grad-from) 10%, var(--cs-grad-to) 100%);
  color: var(--white);
}
@media (max-width: 900px) {
  .cs-header { padding: 120px var(--cs-gutter) 40px; gap: 48px; }
}

/* figures must not carry the UA's 40px side margin */
.cs figure { margin: 0; }

/* close button — always visible, fixed top-right */
.cs-close {
  position: fixed;
  top: clamp(16px, 2.8vw, 40px);
  /* same gutter as the notice and the content column, so the two line up */
  right: var(--cs-gutter);
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: var(--rd-md); /* rd-8 */
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  color: var(--white);
  transition: background 0.2s ease, color 0.2s ease;
}
.cs-close:hover {
  background: rgba(255, 255, 255, 0.4);
  color: var(--cs-deep);
}
.cs-close svg { width: 28px; height: 28px; }

/* header notice — sits opposite the close button, scrolls away with the header */
.cs-notice {
  position: absolute;
  top: clamp(16px, 2.8vw, 40px);
  left: var(--cs-gutter);
  /* stop before the close button (56px) + sp-16, so the text wraps instead of
     sliding underneath it on narrow screens */
  right: calc(var(--cs-gutter) + 72px);
  /* must match the close button's height — otherwise align-items:center puts
     the two on different optical centres */
  height: 56px;
  display: flex;
  align-items: center;
  gap: 12px; /* sp-12 */
  color: var(--white);
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.4px;
}
.cs-notice img { width: 24px; height: 24px; flex: 0 0 auto; }
@media (max-width: 900px) {
  /* height stays 56px to keep the notice centred against the close button */
  .cs-notice { font-size: 16px; line-height: 20px; }
}

.cs-header__text {
  display: flex;
  flex-direction: column;
  gap: 60px; /* sp-60 between copy and chips */
}
.cs-header__copy {
  display: flex;
  flex-direction: column;
  gap: 16px; /* sp-16 between title and description */
}

.cs-title {
  margin: 0;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 600;
  font-size: 92px;
  line-height: 100px;
  letter-spacing: 0.02em;
}

.cs-subtitle {
  margin: 0;
  max-width: 1050px; /* same measure as .cs-body */
  font-weight: 400;
  font-size: 32px;
  line-height: 44px;
  letter-spacing: 0.02em;
}

.cs-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.cs-chip {
  /* flex-centred so the caps sit optically centred in the 44px pill
     (block layout leaves them ~1.5px high because of half-leading rounding) */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px; /* sp-12 + 20 + sp-12 */
  padding: 0 24px;
  border-radius: 9999px;
  background: var(--cs-chip);
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  white-space: nowrap;
}

.cs-hero {
  width: 100%;
  border-radius: var(--rd-xl);
  overflow: hidden;
  aspect-ratio: 1280 / 413;
  background: var(--bg-neutral);
}
.cs-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* hero shown at its natural height, never cropped */
.cs-hero--full {
  aspect-ratio: auto;
  background: none;
}
.cs-hero--full img { height: auto; object-fit: contain; }

/* ---------- Sections ---------- */

.cs-section {
  padding: 80px var(--cs-gutter);
  display: flex;
  flex-direction: column;
  gap: 80px; /* between major blocks */
}
.cs-section--tint { background: var(--cs-tint); }
.cs-section--gap-100 { gap: 100px; }
@media (max-width: 900px) { .cs-section--gap-100 { gap: 56px; } }
@media (max-width: 900px) {
  .cs-section { padding-block: 56px; gap: 56px; }
}

/* eyebrow + first block form one group with a 40px rhythm */
.cs-group {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.cs-eyebrow {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.cs-eyebrow .dot { font-weight: 400; }

.cs-block {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.cs-textblock {
  display: flex;
  flex-direction: column;
  gap: 8px; /* sp-8 between heading and text */
  max-width: 1280px;
}

.cs-heading {
  margin: 0;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 600;
  font-size: 60px;
  line-height: 80px;
  letter-spacing: 0.02em;
  color: var(--cs-deep);
}

.cs-body {
  /* readable measure — roughly 70 characters per line */
  max-width: 70ch;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}
/* inside a narrow column the grid already constrains the measure */
.cs-two .cs-body,
.cs-split .cs-body { max-width: none; }
.cs-body p { margin: 0; }
.cs-body p + p { margin-top: 32px; }
.cs-hl { color: var(--cs-accent); font-weight: 600; }
.nb { white-space: nowrap; } /* hold a phrase on one line */
.cs-note .cs-hl { color: inherit; } /* highlight on the dark card stays white */

/* ---------- Setup stat cards ---------- */

.cs-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--white);
  border-radius: var(--rd-xl); /* rd-16 */
  overflow: hidden;
}
.cs-stat {
  background: var(--cs-accent);
  color: var(--white);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.cs-stats--gap-8 { gap: 8px; }
.cs-stats--3 { grid-template-columns: repeat(3, 1fr); }
.cs-stat__icon { width: 32px; height: 32px; color: var(--white); }
.cs-stat__body { display: flex; flex-direction: column; gap: 12px; }
.cs-stat__title {
  margin: 0;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 600;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: 0.56px;
}
.cs-stat__text {
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.4px;
}

/* a stat card whose title is a headline figure rather than a label */
.cs-stat--metric { gap: 24px; }
.cs-stat--metric .cs-stat__title { font-size: 44px; line-height: 52px; letter-spacing: 0; }
@media (max-width: 900px) {
  .cs-stat--metric .cs-stat__title { font-size: 32px; line-height: 40px; }
}

/* ---------- Two-column (text + media) ---------- */

.cs-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.cs-two--media-right { grid-template-columns: 620fr 600fr; }

/* ---------- Media + caption ---------- */

.cs-media { display: flex; flex-direction: column; gap: 16px; }
.cs-media__frame {
  width: 100%;
  border-radius: var(--rd-xl);
  overflow: hidden;
  background: var(--bg-neutral);
  border: 1px solid var(--bd-neutral);
}
.cs-media__frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cs-media__frame--ratio { aspect-ratio: 600 / 400; }
.cs-media__frame--wide { aspect-ratio: 1280 / 500; }

/* videos keep their full height — never cropped */
.cs-media__frame--video {
  aspect-ratio: auto;
  border: 1px solid var(--cs-border);
  border-radius: var(--rd-xl); /* rd-16 */
  overflow: hidden;
  background: none;
}
.cs-media__frame--video video,
.cs-media__frame--video img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.cs-media__caption {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.32px;
  color: var(--text-secondary);
  text-align: center;
}
.cs-media__caption--left { text-align: left; }

/* bordered frame, square corners (e.g. the moodboard) */
.cs-media__frame--square { border-radius: 0; }
/* border follows the corner radius baked into the image itself */
.cs-media__frame--rd-img { border-radius: var(--rd-sm); }

/* full height, no border at all (e.g. the styles & components board) */
.cs-media__frame--bare {
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: none;
}
.cs-media__frame--bare img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* no border, but keeps the rd-16 corner (e.g. the moodboard) */
.cs-media__frame--rd16 {
  aspect-ratio: auto;
  border: 0;
  background: none;
  border-radius: var(--rd-xl);
  overflow: hidden;
}
.cs-media__frame--rd16 img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* plain media — no frame, no clipping (e.g. the navigation diagram) */
.cs-media__frame--plain {
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: none;
}
.cs-media__frame--plain img { object-fit: contain; }

/* placeholder look for not-yet-supplied media */
.cs-media__frame.is-placeholder {
  display: grid;
  place-items: center;
  min-height: 240px;
  color: var(--text-secondary);
  font-size: 16px;
  letter-spacing: 0.32px;
  text-align: center;
  padding: 24px;
  border-style: dashed;
}

/* ---------- Sub-heading + text pair ---------- */

.cs-sub {
  display: flex;
  flex-direction: column;
  gap: 8px; /* sp-8 between title and text */
  max-width: 620px;
}
/* blank line between consecutive paragraphs (8 + 24 = 32) */
.cs-sub__text + .cs-sub__text { margin-top: 24px; }
.cs-sub__title {
  margin: 0;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0.64px;
  color: var(--cs-deep);
}
.cs-sub__text {
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.48px;
  color: var(--text-primary);
}

/* ---------- Note / principle card (dark) ---------- */

.cs-note {
  background: var(--cs-accent); /* deep-teal/600 — aubergine/600 on Fleeture */
  color: var(--white);
  border-radius: var(--rd-xl); /* rd-16 */
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 40px; /* sp-40 */
}
.cs-note__mark {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
}
.cs-note__title {
  margin: 0 0 12px; /* sp-12 */
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 600;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: 0.56px;
}
.cs-note__text {
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.4px;
}
.cs-notes-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ---------- Carousel (continuous marquee) ---------- */

.cs-carousel {
  --car-item: 586.67px;   /* one screen, 16:9 */
  --car-gap: 16px;        /* sp-16 */
  --car-count: 6;
  width: 100%;
  border-radius: var(--rd-xl); /* rd-16 on the whole block */
  overflow: hidden;
}
.cs-carousel__track {
  display: flex;
  gap: var(--car-gap);
  width: max-content;
  animation: cs-marquee 80s linear infinite;
  will-change: transform;
}
.cs-carousel:hover .cs-carousel__track { animation-play-state: paused; }
.cs-carousel__item {
  flex: 0 0 auto;
  display: block;
  width: var(--car-item);
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--white);
  border: 1px solid var(--cs-border); /* aubergine/100 */
  border-radius: var(--rd-sm);        /* br-sm */
}
@keyframes cs-marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(calc(-1 * (var(--car-item) + var(--car-gap)) * var(--car-count)), 0, 0); }
}
@media (max-width: 700px) {
  .cs-carousel { --car-item: 320px; }
}
@media (prefers-reduced-motion: reduce) {
  .cs-carousel__track { animation: none; }
  .cs-carousel { overflow-x: auto; }
}

/* ---------- Review (reuse homepage .review look) ---------- */

.cs-review {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--cs-border);
  border-radius: var(--rd-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.cs-review__mark { align-self: flex-end; width: 40px; height: 40px; }
.cs-review__text {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 1050px; /* same measure as .cs-body */
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.4px;
  color: var(--text-primary);
}
.cs-review__text p { margin: 0; }
/* case-study review highlights use the deep-teal accent, per the design */
.cs-review__text .hl { color: var(--cs-accent); font-weight: 600; }
.cs-review .review__person { color: var(--text-primary); }

/* heading + single element, tight 16px rhythm (e.g. Review) */
.cs-block--tight { gap: 16px; }

/* row: text left, media right within a subsection */
.cs-split {
  display: grid;
  grid-template-columns: 620fr 600fr;
  gap: 60px;
  align-items: center;
}
/* media on the left (600), text on the right (620) */
.cs-split--media-left { grid-template-columns: 600fr 620fr; }
/* the note card's line length sets the column width here */
.cs-split--wide-text { grid-template-columns: 590fr 630fr; }
/* extra breathing room above a media group (sp-60) */
.cs-block--gap-60 { gap: 60px; }
.cs-block--gap-24 { gap: 24px; } /* sp-24 between a heading and the block under it */

/* sp-100 above and below, on top of the 80px section rhythm */
.cs-sep-100 { margin-block: 20px; }
@media (max-width: 900px) { .cs-sep-100 { margin-block: 0; } }

/* sp-100 above only — same rhythm as .cs-sep-100 without adding space below */
.cs-above-100 { margin-top: 20px; }
@media (max-width: 900px) { .cs-above-100 { margin-top: 0; } }

/* stack of rows with sp-80 between them */
.cs-stack-80 {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* note card + text — the card is wide enough to keep "2-3 hours," on line one */
.cs-split--note {
  grid-template-columns: 455px minmax(0, 1fr);
  align-items: center;
}
/* wide text column beside a fixed 560 media (Otalio "The turn") */
.cs-split--text-673 { grid-template-columns: 760fr 460fr; gap: 60px; }

/* Fleeture's card is narrower in the design */
.cs--fleeture .cs-split--note { grid-template-columns: 355px minmax(0, 1fr); }

/* text starts at the top of the row instead of centring against the media */
.cs-split--top { align-items: start; }

/* reflection card is full width; only the copy inside keeps the body measure */
.cs-note--measure > :not(.cs-note__mark) { max-width: 1050px; }

/* sp-80 above, inside a 40px-gap group */
.cs .cs-above-80 { margin-top: 40px; } /* beats `.cs figure { margin: 0 }` */
@media (max-width: 900px) { .cs .cs-above-80 { margin-top: 16px; } }

/* card-states grid (6 tiles) */
.cs-cards6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cs-cards6 img {
  width: 100%;
  height: auto;
  aspect-ratio: 832 / 519; /* reserve space so lazy loading triggers */
  display: block;
  /* corners are already baked into the exports — no extra clipping */
}

/* ---------- Contact + footer (shared with the homepage) ---------- */

.cs-contact {
  margin-top: 80px; /* sp-80 */
  padding: 0 var(--cs-gutter) clamp(24px, 2.8vw, 40px);
}
@media (max-width: 900px) {
  .cs-contact { margin-top: 64px; }
}

/* reveal */
@media (prefers-reduced-motion: no-preference) {
  .cs-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
  }
  .cs-reveal.is-visible { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1000px) {
  .cs-stats, .cs-stats--3 { grid-template-columns: repeat(2, 1fr); }
  .cs-two, .cs-two--media-right, .cs-split,
  .cs-split--note, .cs--fleeture .cs-split--note { grid-template-columns: 1fr; }
  .cs-notes-2 { grid-template-columns: 1fr; }
  .cs-cards6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .cs-stats { grid-template-columns: 1fr; }
  .cs-cards6 { grid-template-columns: 1fr; }
}


/* ---------- Quote-style note (italic, with a mark) ---------- */
.cs-note--quote { gap: 32px; } /* sp-32 when there is no separate title */
.cs-note--quote .cs-note__text {
  /* greedy wrapping — `pretty` rebalances and pushes a word to line two */
  text-wrap: wrap;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.48px;
}

/* ---------- Theme: Fleeture (aubergine) ---------- */
.cs--fleeture {
  --cs-accent: #664080;   /* aubergine/600 */
  --cs-deep:   #4c2a63;   /* aubergine/700 */
  --cs-tint:   #faf7fd;
  --cs-border: #e1cef1;   /* aubergine/100 */
  --cs-chip:   #1d032d;   /* aubergine/900 */
  --cs-grad-from: #664080;
  --cs-grad-to:   #1d032d;
}


/* ==========================================================================
   MOBILE (<=720px) — matches the homepage frame
   ========================================================================== */




/* ---------- Type steps (fixed sizes, stepped at breakpoints) ---------- */

@media (max-width: 1100px) {
  .cs-title    { font-size: 68px; line-height: 76px; }
  .cs-subtitle { font-size: 28px; line-height: 38px; }
  .cs-heading  { font-size: 48px; line-height: 64px; }
}

@media (max-width: 900px) {
  .cs-title    { font-size: 56px; line-height: 64px; }
  .cs-subtitle { font-size: 26px; line-height: 36px; }
  .cs-heading  { font-size: 40px; line-height: 52px; }
  .cs-note--quote .cs-note__text { font-size: 20px; line-height: 28px; letter-spacing: 0.4px; }
  .cs-body,
  .cs-sub__text { font-size: 20px; line-height: 28px; letter-spacing: 0.4px; }
  .cs-body p + p { margin-top: 28px; }
  .cs-sub__title { font-size: 28px; line-height: 36px; letter-spacing: 0.56px; }
  .cs-stat__title, .cs-note__title { font-size: 24px; line-height: 32px; letter-spacing: 0.48px; }
}

@media (max-width: 600px) {
  .cs-title    { font-size: 40px; line-height: 48px; }
  .cs-subtitle { font-size: 24px; line-height: 32px; }
  .cs-heading  { font-size: 32px; line-height: 40px; }
}


/* ==========================================================================
   MOBILE (<=720px) — matches the homepage frame and type scale.
   Placed last on purpose: the type-step queries above also match at this
   width, so these have to come after them to win.
   ========================================================================== */

@media (max-width: 720px) {
  /* Text sits at 32px so it lines up with text inside the cards (8px frame +
     24px card padding). Blocks — images, cards, the carousel — are pulled back
     out to the 8px frame. `width: auto` matters: with `width: 100%` a negative
     margin only shifts the box left and leaves a gap on the right. */
  :root { --cs-gutter: 32px; }

  .cs-hero,
  .cs-media__frame,
  .cs-carousel,
  .cs-cards6,
  .cs-stats,
  .cs-note,
  /* .cs-review is a <figure>, and `.cs figure { margin: 0 }` outranks a single
     class — the extra .cs here wins the specificity contest */
  .cs .cs-review {
    margin-inline: -24px;
    width: auto;
  }

  /* card padding matches the homepage, so their text lands at 32px too */
  .cs-stat,
  .cs-note,
  .cs-review { padding: 24px; }

  /* the contact card is a block: back to the 8px frame */
  .cs-contact {
    margin-top: 56px; /* same as .cs-section padding-block at this width */
    padding-inline: 8px;
    padding-bottom: 16px; /* under the footer text block */
  }

  /* close button sits on the frame, not the text column */
  .cs-close { right: 8px; }

  /* the close button is fixed at top:16px and is 56px tall, so 112px puts a
     clean 40px between its bottom edge and the top of the title */
  .cs-header {
    padding-top: 112px;
    padding-bottom: 40px; /* gap under the hero image */
    gap: 32px; /* under the chips */
  }
  .cs-header__text { gap: 32px; } /* above the chips */
  .cs-chips { gap: 12px; }


  /* every framed image drops to rd-md; --plain is a transparent cut-out with
     no frame, so it stays square */
  .cs-hero,
  .cs-media__frame,
  .cs-media__frame--video,
  .cs-media__frame--rd16,
  .cs-carousel,
  .cs-carousel__item { border-radius: var(--rd-md); }

  .cs-review__mark { width: 32px; height: 32px; }
  .cs-review { gap: 24px; } /* above and under the review text */

  /* --- type: the same 0.85 scale as the homepage --- */
  .cs-title    { font-size: 34px; line-height: 41px; }
  .cs-subtitle { font-size: 20px; line-height: 27px; }
  .cs-heading  { font-size: 27px; line-height: 34px; }
  .cs-eyebrow  { font-size: 14px; line-height: 17px; letter-spacing: 0.27px; }
  .cs-chip     { font-size: 14px; letter-spacing: 0.27px; }
  .cs-body,
  .cs-sub__text,
  .cs-stat__text,
  .cs-review__text,
  .cs-note--quote .cs-note__text {
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0.34px;
  }
  .cs-body p + p { margin-top: 24px; }
  .cs-sub__title { font-size: 24px; line-height: 31px; letter-spacing: 0.48px; }
  .cs-stat__title,
  .cs-note__title { font-size: 20px; line-height: 27px; letter-spacing: 0.41px; }
  .cs-stat--metric .cs-stat__title { font-size: 37px; line-height: 44px; }
  .cs-media__caption { font-size: 14px; line-height: 17px; letter-spacing: 0.27px; }
}
