/* /assets/css/public-case-study.css
   Styles for the public case study page (/pages/public/case-study.php).
   Matches Figma nodes 99:9168 (desktop) and 100:9927 (mobile).
   Inherits the shared topbar, footer, and profile-card styles from
   /assets/css/public-profile.css. */

.cs-body .pp-topbar-inner {
  max-width: 1440px;
  padding: 24px 90px;
}

.cs-top-actions {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.cs-create-account {
  color: #1c1c1e;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
  transition: color .15s ease;
}
.cs-create-account:hover { color: #242424; }

.cs-login-link {
  font-size: 15px;
  font-weight: 500;
  color: #242424;
}

.cs-body .pp-page {
  padding: 24px 90px 36px;
}

.cs-body .pp-shell {
  max-width: 1260px;
  gap: 24px;
}

.cs-body .cs-side {
  position: static;
  top: auto;
}

/* ============ Case content article ============
   Flat surface matching /pages/explore/case.php — no card chrome, no inner
   padding (the .pp-shell already provides the page gutter). The same
   reading layout is used across cases/view, explore/case, and this
   public page so all three feel like one design. */
.cs-card {
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

/* ----- Hero (tags, title, tagline) ----- */
.cs-hero {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Tags act as breadcrumb-like row with dot dividers between items. */
.cs-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  font-size: 13px;
}

.cs-tag {
  display: inline-flex;
  align-items: center;
  color: #475569;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.cs-tag + .cs-tag::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #cbd5e1;
  margin: 0 10px;
  flex: 0 0 5px;
}

.cs-title {
  /* Matches `.cases-view-page .case-title` from cases-view.css. */
  margin: 0;
  font-size: clamp(32px, 2.8vw, 40px);
  font-weight: 600;
  line-height: 1.12;
  color: #1c1c1e;
  letter-spacing: -0.02em;
}

.cs-tagline {
  /* Matches `.cases-view-page .case-tagline`. */
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: #5f6368;
  letter-spacing: 0;
}

/* ----- Horizontal divider used between hero / meta / sections / footer ----- */
.cs-hero-divider {
  height: 1px;
  background: #ebedf0;
  margin: 4px 0;
}

/* ----- Meta strip: created date + view/like/share counters ----- */
.cs-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cs-meta-date {
  /* Matches `.cases-view-page .case-meta-date`. */
  color: #5f6368;
  font-size: 15px;
  letter-spacing: 0;
}

.cs-meta-stats {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.cs-stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #696969;
  font-size: 13px;
  line-height: 1;
}

.cs-stat svg {
  width: 16px;
  height: 16px;
  display: block;
  color: #94a3b8;
}

/* ----- Engagement footer: share + love rows ----- */
.cs-engage-block {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 4px 0 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.cs-engage-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.cs-engage-share,
.cs-engage-like {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.cs-engage-label {
  font-size: 15px;
  line-height: 1.25;
  color: #344054;
  letter-spacing: -0.005em;
}

.cs-share-buttons {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.cs-share-btn {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  border: 1px solid #f1f4f8;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.cs-share-btn:hover {
  transform: translateY(-1px);
  background: #f3f6fb;
  box-shadow: 0 2px 6px rgba(16, 24, 40, 0.08);
}

.cs-share-ico {
  width: 18px;
  height: 18px;
  display: block;
}

/* ----- Sections ----- */
.cs-card .cs-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* The card-level gap between adjacent sections matches `.cases-view-page
   .case-sections` (30px). The .cs-card flex container uses this gap. */
.cs-card { gap: 30px; }

.cs-section h2 {
  /* Matches `.cases-view-page .case-section h2`. */
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #1c1c1e;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.cs-prose {
  /* Matches `.cases-view-page .case-prose p`. */
  color: #242424;
  font-size: 17px;
  line-height: 1.68;
}

.cs-prose p { margin: 0 0 12px; }
.cs-prose p:last-child { margin-bottom: 0; }

.cs-placeholder {
  color: #94a3b8;
  font-style: italic;
}

.cs-list {
  margin: 0;
  padding-left: 20px;
  color: #242424;
  font-size: 17px;
  line-height: 1.68;
}

.cs-list li { margin: 2px 0; }
.cs-list li::marker { color: #94a3b8; }

/* ----- Tables ----- */
.cs-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #ebedf0;
  border-radius: 10px;
}

.cs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  color: #313131;
}

.cs-table thead th {
  background: #f7f8fa;
  font-weight: 600;
  color: #475569;
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid #ebedf0;
  white-space: nowrap;
  letter-spacing: -0.005em;
}

.cs-table tbody td {
  padding: 13px 14px;
  border-top: 1px solid #ebedf0;
  vertical-align: top;
  line-height: 1.6;
}

.cs-table tbody tr:first-child td { border-top: 0; }

.cs-placeholder-cell {
  text-align: center;
  color: #94a3b8;
  font-style: italic;
  padding: 18px 14px !important;
}

/* ----- Like button ----- */
.cs-like-btn {
  border: 1px solid #ebedf0;
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: color .15s ease, background .15s ease, border-color .15s ease, transform .15s ease;
  flex: 0 0 40px;
  padding: 0;
}
.cs-like-btn svg { width: 18px; height: 18px; }
.cs-like-btn:hover { color: #ef4444; border-color: #fecaca; background: #fef2f2; }
.cs-like-btn.is-liked { color: #ef4444; border-color: #fecaca; background: #fef2f2; }
.cs-like-btn.is-liked svg path { fill: currentColor; }
.cs-like-btn:active { transform: scale(.96); }

/* ----- Preview banner (owner only) ----- */
.cs-preview-banner {
  background: #fef3c7;
  border: 1px solid #fde68a;
  color: #92400e;
  padding: 12px 16px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
}
.cs-preview-banner strong { color: #92400e; font-weight: 600; }

/* ============ Side column ============
   Profile card spec mirrors Figma 103:10635 (desktop) / 103:10665 (mobile).
   Card padding 24px, photo 64×64, 9px gap between photo and name, 3px gap
   between name and headline, 18px gap each side of each divider. */
.cs-side .pp-profile-card {
  padding: 24px;
  gap: 0;
  border-radius: 20px;
}

.cs-side .pp-profile-card .pp-avatar-wrap {
  margin: 0 0 9px;
}

.cs-side .pp-profile-card .pp-avatar {
  width: 64px;
  height: 64px;
}

.cs-side .pp-name-row {
  margin: 0;
  gap: 8px;
}

.cs-side .pp-name {
  margin: 0;
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  color: #2c2d30;
  letter-spacing: -0.01em;
}

.cs-side .pp-headline {
  margin: 3px 0 0;
  font-size: 15px;
  line-height: 22px;
  color: #344054;
  letter-spacing: -0.005em;
  font-weight: 400;
}

.cs-side .pp-profile-card .pp-divider {
  margin: 18px 0;
  height: 1px;
  background: #ebedf0;
}

.cs-side .pp-bio {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #344054;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.005em;
}

.cs-side .pp-bio p { margin: 0; }

.cs-side .pp-follow-label {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
  color: #344054;
  letter-spacing: -0.005em;
}

.cs-side .pp-profile-card .pp-socials {
  gap: 12px;
}

.cs-side .pp-profile-card .pp-social {
  width: 42px;
  height: 36px;
  border-radius: 8px;
}

.cs-side .pp-profile-card .pp-social svg {
  width: 22px;
  height: 22px;
}

.cs-author-link {
  color: inherit;
  text-decoration: none;
}
.cs-author-link:hover { color: #242424; }

/* Related cases */
.cs-related-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #f1f2f4;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cs-related-card h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #1c1c1e;
  letter-spacing: -0.005em;
  text-transform: none;
}

.cs-related-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cs-related-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  color: inherit;
  padding-bottom: 14px;
  border-bottom: 1px solid #ebedf0;
}
.cs-related-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.cs-related-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #696969;
  font-size: 12.5px;
}

.cs-related-item h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #1c1c1e;
  line-height: 1.4;
  letter-spacing: -0.005em;
}

.cs-related-item p {
  margin: 0;
  color: #696969;
  font-size: 12.5px;
}

.cs-related-item:hover h4 { color: #242424; }

.cs-related-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #242424;
  text-decoration: none;
  font-weight: 500;
  align-self: flex-start;
}
.cs-related-more svg { width: 12px; height: 12px; }
.cs-related-more:hover { text-decoration: underline; }

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .cs-body .pp-topbar-inner {
    padding: 20px 24px;
  }

  .cs-body .pp-page {
    padding: 20px 20px 30px;
  }

  .cs-card { padding: 24px; gap: 18px; }

  .cs-body .cs-side {
    order: 0;
    position: static;
  }

  .cs-title { font-size: 22px; }
}

@media (max-width: 760px) {
  .cs-body .pp-topbar-inner {
    padding: 18px 20px;
  }

  .cs-body .pp-brand img {
    height: 18px;
  }

  .cs-create-account {
    display: none;
  }

  .cs-body .pp-page {
    padding: 20px 16px 28px;
  }

  .cs-body .pp-shell {
    gap: 18px;
  }

  .cs-side .cs-related-card { order: 1; }
  .cs-side .pp-profile-card { order: 2; }
  .cs-side .pp-awards-card { order: 3; }

  .cs-card {
    padding: 20px 18px;
    border-radius: 18px;
    gap: 16px;
  }

  .cs-title { font-size: 20px; line-height: 1.24; }
  .cs-tagline { font-size: 14px; line-height: 1.5; }

  .cs-meta-row {
    align-items: flex-start;
    gap: 10px;
  }

  .cs-meta-date,
  .cs-stat { font-size: 12.5px; }

  .cs-engage-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .cs-engage-share,
  .cs-engage-like {
    width: 100%;
    justify-content: space-between;
  }

  .cs-engage-label { font-size: 14px; }

  .cs-share-buttons { gap: 8px; }

  .cs-share-btn { width: 34px; height: 34px; }

  .cs-section h2 { font-size: 16px; }
  .cs-prose, .cs-list { font-size: 14px; }

  .cs-table { font-size: 13px; }
  .cs-table thead th { padding: 10px 12px; }
  .cs-table tbody td { padding: 10px 12px; }

  .cs-related-card { padding: 18px 18px; border-radius: 18px; }

  /* Profile card on mobile mirrors Figma 103:10665 — same typography as
     desktop card, just inside a narrower column. */
  .cs-side .pp-profile-card { padding: 24px; border-radius: 20px; }
  .cs-side .pp-profile-card .pp-avatar { width: 64px; height: 64px; }
  .cs-side .pp-name { font-size: 22px; line-height: 30px; }
  .cs-side .pp-headline { font-size: 15px; line-height: 22px; }
  .cs-side .pp-bio { font-size: 14px; line-height: 22px; }
  .cs-side .pp-follow-label { font-size: 15px; line-height: 24px; }
  .cs-side .pp-profile-card .pp-social { width: 42px; height: 36px; }

  .cs-body .pp-footer-links { order: 1; }
  .cs-body .pp-footer-copy { order: 2; }
}

/* ===== Medium-style public case refresh ===== */
.cs-body {
  background: #fff;
  color: #242424;
  font-family: 'PT Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-case-title: "PT Serif", Georgia, Cambria, "Times New Roman", serif;
}

.cs-body .pp-topbar,
.cs-body .pp-page,
.cs-body .pp-footer {
  background: #fff;
}

.cs-body .pp-topbar-inner {
  max-width: 1200px;
  padding: 20px 24px;
}

.cs-body .pp-page {
  padding: 48px 0 80px;
}

.cs-body .pp-shell {
  max-width: 1200px;
  padding: 0 24px;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
}

.cs-body .cs-side {
  border-left: 1px solid #e6e6e6;
  padding-left: 24px;
}

.cs-create-account:hover,
.cs-login-link,
.cs-title,
.cs-author-link:hover,
.cs-related-item:hover h4,
.cs-related-more {
  color: #242424;
}

.cs-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  gap: 18px;
}

.cs-card > .cs-section + .cs-section,
.cs-card > .cs-pull-quote + .cs-section,
.cs-card > .cs-section + .cs-pull-quote {
  margin-top: 12px;
}

.cs-hero {
  gap: 18px;
}

.cs-tag,
.cs-meta-date,
.cs-stat,
.cs-tagline {
  color: #475569;
}

.cs-tag + .cs-tag::before {
  background: #d9d9d9;
}

/* Public case reading column mirrors /pages/explore/case.php so explore,
   owned case view, and public case study read as one surface. */
.cs-title {
  font-family: var(--font-case-title);
  font-size: clamp(32px, 2.8vw, 40px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #1c1c1e;
  max-width: 760px;
}

.cs-tagline {
  max-width: 720px;
  font-family: inherit;
  font-size: 18px;
  line-height: 1.5;
  color: #5f6368;
  letter-spacing: 0;
  margin: 0;
}

.cs-hero-divider {
  background: #e6e6e6;
}

.cs-stat svg {
  color: #242424;
}

.cs-section {
  gap: 10px;
}

.cs-section h2 {
  color: #1c1c1e;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.cs-prose,
.cs-list {
  color: #242424;
  font-family: inherit;
  font-size: 17px;
  line-height: 1.68;
  letter-spacing: 0;
  max-width: 760px;
}

.cs-prose p { margin: 0; }
.cs-prose p:last-child { margin-bottom: 0; }

.cs-list {
  display: grid;
  gap: 2px;
  margin: 0;
  padding-left: 20px;
}

.cs-list li { margin: 0; }

.cs-list li::marker,
.cs-placeholder,
.cs-placeholder-cell {
  color: #8a8a8a;
}

.cs-table-wrap {
  border-color: #ededed;
  border-radius: 8px;
  background: #fff;
}

.cs-table {
  color: #242424;
  font-size: 14px;
}

.cs-table thead th {
  background: #fafafa;
  color: #1c1c1e;
  border-bottom-color: #ededed;
  border-right: 1px solid #ededed;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  padding: 11px 12px;
}

.cs-table tbody td {
  background: #fff;
  color: #242424;
  border-top-color: #ededed;
  border-right: 1px solid #ededed;
  font-size: 14px;
  line-height: 1.5;
  padding: 11px 12px;
}

.cs-table thead th:last-child,
.cs-table tbody td:last-child {
  border-right: 0;
}

.cs-share-ico {
  width: 16px;
  height: 16px;
  opacity: 0.9;
  filter: none;
}

.cs-share-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #242424;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  text-transform: lowercase;
}

/* Member-only pill above title (Medium "Member-only story" cue) */
.cs-member-pill {
  margin: 0 0 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6b6b6b;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  font-family: 'PT Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.cs-member-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #f5b400;
  display: inline-block;
}

/* Case-study-specific: teaser shows a faux next-section heading + a sentence,
   the shared .cs-locked-fade (in profile.css) masks it from the bottom. */
.cs-locked-content .cs-locked-teaser {
  border-top: 1px solid #e6e6e6;
  padding-top: 24px;
  margin-top: 4px;
}

/* Signed-in public story: .cs-card's `padding: 0; border: 0` above wins over
   .hc-medium-feed (this sheet loads after healthcare-app.css), which left the
   story flush against the header/leftnav. Restore the app-shell spacing. */
.pp-story-shell .cs-card.hc-medium-feed {
  max-height: calc(100vh - var(--app-medium-header-height));
  padding: 36px 88px 64px 90px;
  overflow-y: auto;
  scrollbar-gutter: stable;
  border-right: 1px solid #f2f2f2;
}

/* Keep parity with healthcare-app.css .hc-medium-feed breakpoints. */
@media (max-width: 1040px) {
  .pp-story-shell .cs-card.hc-medium-feed {
    padding: 28px 24px 40px;
    border-right: 0;
  }
}

@media (max-width: 680px) {
  .pp-story-shell .cs-card.hc-medium-feed {
    max-height: calc(100vh - 76px);
    padding: 18px 18px 32px;
  }
}

/* Healthcare story body + gated teaser now use .case-story-content and
   .case-story-locked* from case-story.css — identical to the explore page. */
.cs-card .case-story-content {
  padding-top: 8px; /* .cs-hero-divider already provides separation */
}

.cs-card .case-story-content h1 + h2 {
  /* The story markdown's H1 is hidden; the h2 after it is visually first. */
  margin-top: 0;
}

.cs-share-btn,
.cs-like-btn {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid #d6d6d6;
  background: #fff;
  box-shadow: none;
  color: #242424;
  font-size: 12px;
  font-weight: 500;
}

.cs-share-btn:hover,
.cs-like-btn:hover {
  background: #f6f6f6;
  border-color: #cfcfcf;
  box-shadow: none;
  color: #1c1c1e;
  transform: none;
}

.cs-preview-banner {
  background: #f2f2f2;
  border-color: #e6e6e6;
  color: #242424;
  border-radius: 0;
}

.cs-preview-banner strong {
  color: #242424;
}

.cs-side .pp-profile-card,
.cs-related-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.cs-side .pp-name,
.cs-related-card h3,
.cs-related-item h4 {
  color: #1c1c1e;
}

.cs-related-meta,
.cs-related-item p {
  color: #6b6b6b;
}

.cs-side .pp-name {
  font-size: 21px;
  line-height: 30px;
  font-weight: 600;
}

.cs-side .pp-headline {
  color: #1c1c1e;
  font-size: 16px;
  line-height: 1.36;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.cs-side .pp-bio {
  color: #313131;
  font-size: 14px;
  line-height: 1.24;
  letter-spacing: -0.01em;
}

.cs-side .pp-follow-label {
  color: #344054;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.cs-side .pp-profile-card .pp-divider,
.cs-related-item {
  border-color: #e6e6e6;
}

.cs-side .pp-profile-card .pp-divider {
  display: none;
}

.cs-side .pp-bio {
  margin-top: 18px;
}

.cs-side .pp-follow-label {
  margin-top: 18px;
}

.cs-related-item {
  border-bottom: 0;
  padding-bottom: 0;
}

.cs-related-card {
  border-top: 0;
  padding-top: 0;
}

.cs-related-more {
  border-bottom: 0;
  padding-bottom: 0;
  text-decoration: none;
}

.cs-login-link,
.cs-related-more,
.cs-side .pp-awards-link {
  text-decoration: none;
}

.cs-login-link:hover,
.cs-login-link:hover svg,
.cs-related-more:hover,
.cs-related-more:hover svg,
.cs-side .pp-awards-link:hover,
.cs-side .pp-awards-link:hover svg {
  color: #1a8917;
  text-decoration: none;
}

.cs-side .pp-awards-card {
  border-top: 0;
  padding-top: 0;
}

.cs-engage-label {
  color: #6b6b6b;
  font-size: 14px;
  line-height: 1.24;
}

.cs-share-buttons {
  gap: 10px;
}

.cs-engage-like .cs-like-btn.is-liked {
  background: #1a8917;
  border-color: #1a8917;
  color: #fff;
}

@media (max-width: 1199px) {
  .cs-body .pp-topbar-inner,
  .cs-body .pp-shell {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 1024px) {
  .cs-body .pp-shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }

  .cs-body .cs-side {
    border-left: 0;
    padding-left: 0;
  }

  .cs-card {
    padding: 0;
  }
}

@media (max-width: 760px) {
  .cs-body .pp-topbar-inner,
  .cs-body .pp-shell {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cs-body .pp-page {
    padding: 32px 0 64px;
  }

  .cs-title {
    font-size: 28px;
    line-height: 1.14;
  }

  .cs-tagline {
    font-size: 16px;
  }

  .cs-section h2 {
    font-size: 18px;
  }

  .cs-prose,
  .cs-list {
    font-size: 16px;
    line-height: 1.65;
  }

  .cs-card,
  .cs-related-card,
  .cs-side .pp-profile-card {
    padding-left: 0;
    padding-right: 0;
    border-radius: 0;
  }

  .cs-prose,
  .cs-list {
    font-size: 18px;
    line-height: 1.7;
  }
}
