@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700;800&display=swap');
html, body {
  -webkit-font-smoothing: auto !important;
  -moz-osx-font-smoothing: auto !important;
}
:root {
  /* Brand Colors */
  --teal: #00a89c;
  --teal-light: rgba(0, 168, 156, 0.08);
  --teal-hover: #008a80;
  --navy: #003964;
  --orange: #cd6414;
  --orange-light: rgba(205, 100, 20, 0.1);
  --green: #5a8c4d;
  --green-light: rgba(90, 140, 77, 0.1);
  --link: #054ada;

  /* Neutrals */
  --text: #333;
  --text-secondary: #404041;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;

  /* Type Scale (base 17px) */
  --fs-xs: 0.765rem;    /* ~13px */
  --fs-sm: 0.882rem;    /* ~15px */
  --fs-base: 1rem;      /* 17px */
  --fs-md: 1.059rem;    /* ~18px */
  --fs-lg: 1.176rem;    /* ~20px */
  --fs-xl: 1.412rem;    /* ~24px */
  --fs-2xl: 1.765rem;   /* ~30px */
  --fs-3xl: 2.118rem;   /* ~36px */
  --FontWeight__Bold: 700;
  --LineHeight__Body: 1.75;
  --LetterSpacing__Body: normal;
  --rp-fixed-header-h: 88px; 
  --rp-sticky-gap: 16px;
}
    .tft-review {
  font-size: 17px !important;
}

.tft-review p,
.tft-review li,
.tft-review .li-content {
  font-size: 17px !important;
}

.tft-review td,
.tft-review th {
  font-size: 15px !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

* { box-sizing: border-box; }

body {
  overflow-x: hidden;
}

body {
  font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.75;
  color: var(--text);
  margin: 0;
  padding: 0;
  background: #fff;
}

/* Layout */
.page-container {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
  justify-content: center;
}

@media (max-width: 900px) {
  .page-container { grid-template-columns: 1fr; padding: 1rem; }
  .sidebar { display: none; }
    
}

.main-content {
  max-width: 760px;
  order: 2;
}

/* Sidebar */
.sidebar {
  position: relative;
  order: 1;
}

.sidebar-card{
  position: sticky;
  top: calc(var(--rp-fixed-header-h) + var(--rp-sticky-gap));
  z-index: 0;
}

.sidebar-card br { display: none !important; }

.sidebar-toc {
  margin-bottom: 1.5rem;
}

.sidebar-toc-title {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem 0;
}

.sidebar-toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-toc-list li {
  margin: 0;
  padding: 0;
   list-style-type: none;
}

.sidebar-toc-list a {
  display: block;
  padding: 0.2rem 0;
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: none !important;
  line-height: 1.4;
}

.sidebar-toc-list a:hover {
  color: var(--teal);
}

.sidebar-actions {
  display: grid;
  gap: 0.75rem;
}

.sidebar-cta {
  display: block;
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--teal);
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: var(--fs-sm);
}

.sidebar-cta:hover {
  background: var(--teal-hover);
  color: #fff;
}

.sidebar-cta-secondary {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  background: transparent;
  color: var(--navy);
  text-align: center;
  text-decoration: none;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-weight: 500;
  font-size: var(--fs-sm);
}

.sidebar-cta-secondary:hover { background: var(--gray-100); }

.sidebar-disclosure {
  font-size: var(--fs-xs);
  color: var(--text-secondary);
  margin-top: 1rem;
  line-height: 1.5;
}

.sidebar-disclosure a {
  color: var(--link) !important;
  border-bottom: none !important;
}

.sidebar-disclosure a:hover {
  color: var(--orange) !important;
}

/* Mobile TOC */
.mobile-toc {
  display: none;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0 2rem;
}

@media (max-width: 900px) {
  .mobile-toc { display: block; }
}

.mobile-toc-title {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.75rem 0;
}

.mobile-toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2;
  column-gap: 1rem;
}

@media (max-width: 500px) {
  .mobile-toc-list { columns: 1; }
}

.mobile-toc-list li {
  margin: 0;
  padding: 0;
  break-inside: avoid; 
  list-style-type: none;
}

.mobile-toc-list a {
  display: block;
  padding: 0.3rem 0;
  font-size: var(--fs-sm);
  color: var(--link);
  text-decoration: none;
}

.mobile-toc-list a:hover {
  color: var(--orange);
}

/* Typography */
h1 {
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

h2:not(.section-header):not(.section-header-amber) {
  font-size: var(--fs-lg);
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 0.9rem 0;
  color: var(--text);
}

h3 {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--text);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

p { margin-bottom: 1.25rem; }

/* Links */
.main-content a {
  color: var(--link);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.main-content a:hover {
  color: var(--orange);
}

.meta {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* Score Hero */
.score-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin: 1.25rem 0 1.75rem;
}

.score-hero__left {
  flex: 1;
  min-width: 0;
}

.score-hero__headline {
  margin: 0 0 0.6rem !important;
  font-weight: 700;
  color: var(--teal);
  font-size: var(--fs-lg) !important;
  line-height: 1.25 !important;
}

.score-hero__body {
  margin: 0 0 0.9rem;
  color: var(--text);
  line-height: 1.6;
  font-size: var(--fs-md);
}

.score-hero__context {
  margin: 0;
  color: var(--text-secondary);
  font-style: italic;
  font-size: var(--fs-sm);
  line-height: 1.5;
}

.score-hero__right {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
  white-space: nowrap;
}

.score-hero__score {
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.score-hero__denom {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--text-secondary);
  line-height: 1;
}

.score-a {
  background: var(--teal-light);
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 168, 156, 0.15);
  margin: 1.25rem 0 1.75rem;
}

.score-a .score-hero__right {
  padding-left: 1.25rem;
  border-left: 1px solid rgba(0, 168, 156, 0.2);
}

@media (max-width: 750px) {
  .score-hero {
    flex-direction: column;
    align-items: flex-start;
  }
  .score-a .score-hero__right {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid rgba(0, 168, 156, 0.2);
    padding-top: 0.75rem;
    width: 100%;
    justify-content: flex-start;
  }
}

/* Section Headers */
.section-header {
  font-size: var(--fs-xl) !important;
  font-weight: 600 !important;
  color: var(--teal) !important;
  margin-top: 3rem !important;
  margin-bottom: 1.25rem !important;
  padding-bottom: 0.75rem !important;
  border-bottom: 2px solid var(--teal);
}

.section-header:first-of-type { margin-top: 0; }

.section-header-amber {
  font-size: var(--fs-xl) !important;
  font-weight: 600 !important;
  color: var(--orange) !important;
  margin-top: 3rem !important;
  margin-bottom: 1.25rem !important;
  padding-bottom: 0.75rem !important;
  border-bottom: 2px solid var(--orange) !important;
}

/* Pros/Cons */
.pros-cons-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 1.5rem 0 2rem;
}

.pros-cons-container br { display: none !important; }

@media (max-width: 600px) {
  .pros-cons-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.pros-column h2, .cons-column h2 {
  font-size: var(--fs-md);
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: var(--text);
}

.icon-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.icon-list li {
  display: flex !important;
  align-items: flex-start !important;
  font-size: var(--fs-base);
  color: var(--text);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.icon-list li:last-child { border-bottom: none; }

.icon-list li::before { content: none !important; }

.icon-list .li-icon {
  flex: 0 0 28px !important;
  width: 16px !important;
  height: 16px !important;
  margin-top: 0.25rem !important;
}

.icon-list .li-icon img {
  display: block !important;
  width: 16px !important;
  height: 16px !important;
}

.icon-list .li-content {
  flex: 1 1 auto !important;
  min-width: 0 !important;
}

/* Callout Box (Ahrefs style) */
.callout {
  border-left: 3px solid var(--gray-300);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  background: var(--gray-50);
  border-radius: 0 8px 8px 0;
}

.callout p {
  margin: 0;
}

.callout p + p {
  margin-top: 0.75rem;
}

.highlight {
  background: var(--teal-light);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-family: 'IBM Plex Sans', monospace;
  font-size: 0.9em;
}

/* Takeaway Box */
.takeaway-box {
  background: var(--gray-50);
  border-left: 4px solid var(--navy);
  padding: 1.25rem 1.5rem;
  border-radius: 0 8px 8px 0;
  margin: 2rem 0;
}

.takeaway-box h3 {
  font-size: var(--fs-base);
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: var(--text);
}

.takeaway-box p { margin: 0.5rem 0; }

/* Tables */
.review-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: var(--fs-sm);
}

.review-table th, .review-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
}

.review-table th {
  background: var(--gray-50);
  font-weight: 600;
  color: var(--text-secondary);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.review-table tr:last-child td { border-bottom: none; }

.review-table tbody tr:hover {
  background: var(--gray-50);
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: var(--fs-sm);
  table-layout: fixed;
}

.comparison-table th {
  background: var(--gray-50);
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.75rem 0.5rem;
  text-align: center;
  border-bottom: 1px solid var(--gray-200);
  font-size: var(--fs-sm);
  vertical-align: bottom;
}

.comparison-table th:first-child {
  text-align: left;
  padding-left: 1rem;
}

.comparison-table th.subject {
  background: var(--gray-100);
  color: var(--text-secondary);
}

.comparison-table th.highlight {
  background: var(--teal-light);
  color: var(--teal);
}

.comparison-table td {
  padding: 0.75rem 0.5rem;
  text-align: center;
  border-bottom: 1px solid var(--gray-200);
}

.comparison-table td:first-child {
  text-align: left;
  padding-left: 1rem;
  font-weight: 500;
}

.comparison-table td.subject { background: var(--gray-50); }

.comparison-table td.highlight { background: rgba(0, 168, 156, 0.05); }

.comparison-table tr:last-child td {
  border-bottom: none;
  font-weight: 700;
}

.comparison-table tr:last-child td.highlight { color: var(--teal); }

.comparison-table tbody tr:hover td {
  background: var(--gray-50);
}

.comparison-table tbody tr:hover td.highlight {
  background: var(--teal-light);
}
/* Mobile comparison cards - hide table, show cards */
.comparison-cards {
  display: none;
}

@media (max-width: 700px) {
  .comparison-table-wrap {
    display: none;
  }

  .comparison-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
  }

  .comparison-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.25rem;
  }

  .comparison-card.highlight {
    background: var(--teal-light);
    border-color: rgba(0, 168, 156, 0.3);
  }

  .comparison-card.subject {
    background: var(--gray-100);
    border-color: var(--gray-300);
  }

  .comparison-card__name {
    font-size: var(--fs-md);
    font-weight: 600;
    color: var(--text);
    margin: 0 0 1rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-200);
  }

  .comparison-card.highlight .comparison-card__name {
    color: var(--teal);
    border-bottom-color: rgba(0, 168, 156, 0.2);
  }

  .comparison-card__rows {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.5rem 1rem;
  }

  .comparison-card__label {
    font-size: var(--fs-sm);
    color: var(--text-secondary);
  }

  .comparison-card__value {
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--text);
    text-align: right;
  }

  .comparison-card__total {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .comparison-card.highlight .comparison-card__total {
    border-top-color: rgba(0, 168, 156, 0.2);
  }

  .comparison-card__total-label {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--text);
  }

  .comparison-card__total-value {
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--text);
  }

  .comparison-card.highlight .comparison-card__total-value {
    color: var(--teal);
  }
}

.table-footnote {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  font-style: italic;
  margin-top: -0.5rem;
}

/* Lists */
.program-fit-list {
  margin: 0 !important;
  padding-left: 1.25rem !important;
}

.program-fit-list li {
  padding: 0.5rem 0;
  color: var(--text);
  list-style-type: disc;
   display: list-item    
}

.program-fit-list li::marker {
  color: var(--teal);
}

.questions-list {
  list-style: none;
  padding: 0;
  margin: 0 !important;
  padding-left: 1.5rem !important;
  counter-reset: question;
}

.questions-list li {
  padding: 0.5rem 0;
  position: relative;
  color: var(--text);
  counter-increment: question;
  list-style-type: none;
}

.questions-list li::before {
  content: counter(question) ".";
  position: absolute;
  left: -1.5rem;
  color: var(--teal);
  font-weight: 600;
}

.not-published-list {
  list-style: none;
  padding: 0;
  margin: 0 !important;
  padding-left: 1.5rem !important;
}

.not-published-list li {
  position: relative;
  color: var(--text);
  padding: 0.4rem 0;
  list-style-type: none;
}

.not-published-list li::before {
  content: "✕";
  position: absolute;
  left: -1.5rem;
  color: var(--orange);
  font-weight: 700;
}

/* Screenshots */
.review-screenshot, .website-screenshots {
  margin: 1.5rem 0;
}

.review-screenshot img, .website-screenshots img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--gray-200);
}

.review-screenshot figcaption, .website-screenshots figcaption {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  margin-top: 0.5rem;
  text-align: left;
}
.website-screenshots {
  max-width: 600px;          
  margin: 1.5rem auto;      
  text-align: center;
}

.website-screenshots img {
  width: 100% !important;    
  height: auto !important;
  background: #fff;
  padding: 12px;             
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.website-screenshots figcaption {
  max-width: 560px;
  margin: 0.65rem auto 0;
  text-align: left;         
}    

/* Review Links */
.review-links {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.review-links br { display: none !important; }

.review-links a {
  display: inline !important;
  color: var(--link) !important;
  text-decoration: none !important;
}

.review-links a:hover {
  color: var(--orange) !important;
  text-decoration: underline !important;
}

/* Author Box */
.author-box {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--gray-50);
  border-radius: 8px;
  margin: 2rem 0;
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--teal);
}

.author-box img {
  width: 72px !important;
  height: 72px !important;
  border-radius: 8px;
  object-fit: cover;
}

.author-box-text { flex: 1; }

.author-box-name {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.author-box-name a {
  color: var(--text) !important;
  text-decoration: none !important;
}

.author-box-name a:hover { color: var(--teal) !important; }

.author-box-title {
  font-size: var(--fs-sm);
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.author-box-bio {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  margin: 0;
}

/* Author box mobile layout */
@media (max-width: 600px) {
  .author-box {
    display: grid;
    grid-template-columns: 72px 1fr;
    grid-template-rows: auto auto auto;
    gap: 0 1rem;
  }
  .author-box > img {
    grid-row: 1 / 3;
    grid-column: 1;
    align-self: center;
  }
  .author-box-text {
    display: contents;
  }
  .author-box-name {
    grid-row: 1;
    grid-column: 2;
    align-self: end;
    margin-bottom: 0.25rem;
  }
  .author-box-title {
    grid-row: 2;
    grid-column: 2;
    align-self: start;
    margin-bottom: 0;
  }
  .author-box-bio {
    grid-row: 3;
    grid-column: 1 / -1;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
  }
}

/* Image Lightbox */
.lightbox-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 3.5rem 1rem 1rem;
  cursor: zoom-out;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-overlay img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: auto;
  border-radius: 8px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  cursor: default;
}

/* On larger screens, constrain image size */
@media (min-width: 900px) {
  .lightbox-overlay {
    padding: 2rem;
  }
  .lightbox-overlay img {
    max-height: 90vh;
    width: auto;
    max-width: 90vw;
  }
}

.lightbox-close {
  position: fixed;
  top: 0.75rem;
  right: 1rem;
  color: #fff;
  font-size: 2rem;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.6);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  background: rgba(0, 0, 0, 0.8);
}

.review-screenshot img,
.website-screenshots img {
  cursor: zoom-in;
  transition: opacity 0.2s ease;
}

.review-screenshot img:hover,
.website-screenshots img:hover {
  opacity: 0.9;
}

/* First paragraph */
p.first-p { margin: 0 0 1.25rem 0; }

/* Disclosure section */
.disclosure .section-header { margin-top: 0 !important; }
/* 1) Make <strong> match CodePen (usually 700) */
strong, b {
  font-weight: 700 !important;
}

/* 2) Match CodePen body rhythm */
html, body {
  line-height: 1.75 !important;
  letter-spacing: normal !important;
  font-weight: 400 !important;

  /* 3) Match macOS rendering closer to CodePen defaults */
  -webkit-font-smoothing: auto !important;
  -moz-osx-font-smoothing: auto !important;
}




.rp-article-readtime {
  display: none !important;
}
    .rp-article-dot {
    display: none !important;
}