:root {
  --bg: #f7f9fb;
  --surface: #ffffff;
  --ink: #172033;
  --muted: #657084;
  --line: #dbe3ea;
  --brand: #126b6f;
  --brand-dark: #0d4b4e;
  --accent: #f3b340;
  --soft: #e9f5f5;
  --max: 1380px;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
}

main {
  flex: 1 0 auto;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px max(20px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

.brand {
  color: var(--brand-dark);
  font-size: 1.4rem;
  font-weight: 800;
  text-decoration: none;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
}

.brand-logo img {
  width: auto;
  height: 34px;
  object-fit: contain;
}

.site-footer .brand-logo img {
  height: 30px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a,
.site-footer a {
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--brand);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 6px;
  padding: 8px 12px;
  color: var(--ink);
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(520px, 1.1fr);
  gap: 48px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 28px 46px;
}

.hero-copy h1,
.page-intro h1,
.content-page h1 {
  margin: 8px 0 18px;
  font-size: clamp(2rem, 4vw, 4.25rem);
  line-height: 1.08;
}

.hero-copy p,
.page-intro p {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-media {
  margin: 0;
}

.hero img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(23, 32, 51, 0.08);
}

.eyebrow {
  margin: 0;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-actions,
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 28px;
}

.button,
.filter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--brand);
  border-radius: 6px;
  padding: 10px 18px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.secondary,
.filter-button {
  background: var(--surface);
  color: var(--brand);
}

.filter-button.active {
  background: var(--brand);
  color: #fff;
}

.section,
.page-shell,
.content-page,
.article-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 42px 20px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.section-heading h2,
.newsletter-strip h2,
.sidebar-box h2 {
  margin: 6px 0 0;
  line-height: 1.2;
}

.topic-grid,
.post-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.topic-card,
.post-card,
.sidebar-box,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.topic-card {
  padding: 22px;
  text-decoration: none;
}

.topic-card span {
  display: block;
  color: var(--brand-dark);
  font-weight: 800;
}

.topic-card p,
.post-card p,
.sidebar-box p,
.content-page p,
.content-page li {
  color: var(--muted);
}

.post-card {
  overflow: hidden;
}

.post-card img,
.post-list-item img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--soft);
}

.post-card-body,
.post-list-body {
  padding: 24px 28px;
}

.post-card h3,
.post-list-item h2 {
  margin: 10px 0 12px;
  line-height: 1.28;
}

.post-card-body p,
.post-list-body p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 15px;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.read-link {
  color: var(--brand);
  font-weight: 800;
  text-decoration: none;
}

.text-link {
  color: var(--brand);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover,
.read-link:hover {
  text-decoration: underline;
}

.newsletter-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: var(--max);
  margin: 28px auto 54px;
  padding: 30px 20px;
  border-block: 1px solid var(--line);
}

.page-intro {
  margin-bottom: 28px;
}

.layout,
.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.post-list {
  display: grid;
  gap: 24px;
}

.post-list-item {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.sidebar {
  display: grid;
  gap: 18px;
}

.sidebar-box {
  padding: 20px;
}

.category-list,
.toc,
.related-list {
  display: grid;
  gap: 10px;
}

.category-list a,
.toc a,
.related-list a {
  color: var(--brand);
  font-weight: 800;
  text-decoration: none;
}

.article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: clamp(22px, 4vw, 46px);
}

.article h1 {
  margin: 10px 0 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.12;
}

.article h2 {
  margin-top: 34px;
  line-height: 1.25;
}

.article p,
.article li {
  color: #3f4a5c;
  font-size: 1.05rem;
}

.article .featured-image {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border-radius: 8px;
  margin: 24px 0;
}

.note-box,
.faq-item {
  margin: 18px 0;
  padding: 18px;
  border-left: 4px solid var(--brand);
  background: var(--soft);
}

.faq-item h3 {
  margin: 0 0 8px;
}

.content-page {
  max-width: 960px;
}

.content-page h2 {
  margin-top: 30px;
}

.contact-card {
  display: grid;
  gap: 6px;
  max-width: 420px;
  padding: 18px;
}

.contact-card a {
  color: var(--brand);
  font-weight: 800;
}

.site-footer {
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px max(20px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  background: #fff;
}

.site-footer p {
  margin: 6px 0 0;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: end;
}

.split-section,
.resource-section,
.intro-panel,
.category-summary {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 48px;
  align-items: start;
}

.split-section h2,
.resource-section h2 {
  margin: 6px 0 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.14;
}

.rich-copy p,
.resource-copy p,
.guide-card p,
.standards-grid p {
  color: var(--muted);
  font-size: 1.05rem;
}

.guide-grid,
.standards-grid {
  display: grid;
  gap: 16px;
}

.guide-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.standards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.guide-card,
.standards-grid>div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.guide-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--brand);
  font-weight: 800;
}

.guide-card h3,
.standards-grid h3 {
  margin: 0 0 8px;
  line-height: 1.25;
}

.editorial-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.resource-section {
  align-items: center;
}

.resource-list {
  display: grid;
  gap: 12px;
}

.resource-list div {
  padding: 18px;
  border-left: 4px solid var(--brand);
  background: var(--surface);
  color: var(--muted);
}

.resource-list strong {
  color: var(--ink);
}

.newsletter-strip p {
  margin: 6px 0 0;
  color: var(--muted);
}

@media (max-width: 900px) {

  .hero,
  .layout,
  .article-shell {
    grid-template-columns: 1fr;
  }

  .topic-grid,
  .post-grid,
  .guide-grid,
  .standards-grid,
  .featured-posts,
  .latest-posts,
  .compact-guides {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section,
  .resource-section,
  .intro-panel,
  .category-summary {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .article-sidebar {
    order: -1;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .site-nav.open {
    display: flex;
  }

  .hero {
    padding-top: 30px;
  }

  .topic-grid,
  .post-grid,
  .guide-grid,
  .standards-grid,
  .featured-posts,
  .latest-posts,
  .compact-guides,
  .post-list-item {
    grid-template-columns: 1fr;
  }

  .post-list-body {
    padding: 20px;
  }

  .newsletter-strip,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer nav {
    justify-content: start;
  }
}

.intro-panel,
.feature-band,
.category-summary {
  border-top: 1px solid var(--line);
}

.intro-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
  padding-top: 52px;
  padding-bottom: 52px;
}

.intro-panel h2,
.category-summary h2 {
  margin: 6px 0 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.14;
}

.feature-band {
  padding-top: 52px;
}

.featured-posts,
.latest-posts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.compact-guides {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.category-summary {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 42px;
  align-items: start;
  padding-top: 52px;
}

.category-summary p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.05rem;
}

.category-counts {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-counts li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.category-counts a {
  color: var(--brand-dark);
  font-weight: 800;
  text-decoration: none;
}

.category-counts span {
  color: var(--muted);
  font-size: 0.95rem;
  white-space: nowrap;
}

@media (max-width: 900px) {

  .intro-panel,
  .category-summary {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .featured-posts,
  .latest-posts,
  .compact-guides {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {

  .featured-posts,
  .latest-posts,
  .compact-guides,
  .category-summary {
    grid-template-columns: 1fr;
  }

  .category-counts li {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

/* Homepage refresh */
.home-hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(520px, 1.1fr);
  gap: 52px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 70px 28px 54px;
}

.home-hero-copy h1 {
  margin: 8px 0 18px;
  max-width: 780px;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 1.03;
}

.home-hero-copy>p {
  max-width: 700px;
  color: #4f5c70;
  font-size: 1.14rem;
}

.home-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.home-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 0.92rem;
}

.home-proof strong {
  margin-right: 5px;
  color: var(--ink);
}

.home-hero-media {
  margin: 0;
}

.home-hero-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 46px rgba(23, 32, 51, 0.1);
}

.home-hero-media figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.94rem;
}

.home-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 52px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 52px 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-intro h2,
.home-question-band h2 {
  margin: 6px 0 0;
  font-size: clamp(1.9rem, 3vw, 3.25rem);
  line-height: 1.12;
}

.home-featured-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: stretch;
}

.home-featured-card {
  position: relative;
  display: flex;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink);
}

.home-featured-card>a {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  z-index: 1;
}

.home-featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3px) brightness(0.4);
}

.home-featured-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 4vw, 44px);
  pointer-events: none;
}

.home-featured-body .post-meta {
  color: #ddd;
}

.home-featured-body h3 {
  margin: 12px 0 12px;
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.12;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.home-featured-body h3 a {
  color: #fff;
  text-decoration: none;
  pointer-events: auto;
}

.home-featured-body p {
  color: #eaeaea;
  font-size: 1.08rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
  pointer-events: auto;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-featured-body .read-link {
  color: #fff;
  pointer-events: auto;
}

.home-side-list {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.home-side-list h3 {
  margin: 0 0 4px;
  line-height: 1.2;
}

.home-side-list a {
  display: grid;
  gap: 4px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
}

.home-side-list span,
.home-side-list small {
  color: var(--muted);
  font-size: 0.9rem;
}

.home-side-list strong {
  color: var(--ink);
  line-height: 1.25;
}

.home-topic-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-topic-grid .topic-card {
  min-height: 158px;
}

.home-question-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 44px;
  max-width: var(--max);
  margin: 10px auto;
  padding: 44px 20px;
  border-block: 1px solid var(--line);
}

.home-question-band p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.05rem;
}

.home-question-band ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-question-band li {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #3f4a5c;
}

.home-trust-section {
  border-top: 1px solid var(--line);
}

.standards-grid>article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

@media (max-width: 1000px) {

  .home-hero,
  .home-intro,
  .home-featured-layout,
  .home-question-band {
    grid-template-columns: 1fr;
  }

  .home-featured-card {
    grid-template-columns: 1fr;
  }

  .home-featured-card img {
    min-height: 260px;
    aspect-ratio: 16 / 9;
  }

  .home-topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .home-hero {
    padding: 36px 20px 34px;
  }

  .home-hero-copy h1 {
    font-size: clamp(2.1rem, 11vw, 3.2rem);
  }

  .home-topic-grid,
  .home-topic-grid.topic-grid,
  .home-proof {
    grid-template-columns: 1fr;
  }

  .home-proof span {
    width: 100%;
  }
}

/* Tools and quizzes */
.tool-intro,
.quiz-intro {
  max-width: 980px;
}

.tool-grid,
.quiz-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 20px 42px;
}

.tool-card,
.quiz-card,
.habit-checker {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.tool-card,
.quiz-card {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.tool-card-head h2,
.quiz-card-head h2 {
  margin: 6px 0 8px;
  line-height: 1.2;
}

.tool-card-head p,
.quiz-card-head p {
  color: var(--muted);
}

.tool-form {
  display: grid;
  gap: 12px;
}

.tool-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 800;
}

.tool-form input {
  min-height: 44px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 9px 12px;
  color: var(--ink);
  font: inherit;
  font-weight: 400;
}

.tool-result {
  min-height: 56px;
  padding: 14px 16px;
  border-left: 4px solid var(--brand);
  background: var(--soft);
  color: #344052;
}

.checklist-section {
  padding-top: 18px;
}

.habit-checker {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  padding: 22px;
}

.habit-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.habit-options label,
.quiz-question label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #3f4a5c;
}

.habit-options input,
.quiz-question input {
  margin-top: 6px;
}

.habit-result {
  align-self: start;
}

.quiz-question {
  display: grid;
  gap: 8px;
}

.quiz-question strong {
  line-height: 1.35;
}

@media (max-width: 900px) {

  .tool-grid,
  .quiz-grid,
  .habit-checker {
    grid-template-columns: 1fr;
  }

  .habit-options {
    grid-template-columns: 1fr;
  }
}

/* Enhanced quizzes */
.quiz-overview {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 36px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 20px 42px;
}

.quiz-overview h2 {
  margin: 6px 0 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.14;
}

.quiz-overview-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.quiz-overview-steps article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.quiz-overview-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--brand);
  font-weight: 800;
}

.quiz-overview-steps strong {
  display: block;
  line-height: 1.25;
}

.quiz-overview-steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.enhanced-quiz-grid {
  align-items: start;
}

.enhanced-quiz {
  gap: 16px;
}

.quiz-progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--soft);
}

.quiz-progress span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: var(--brand);
  transition: width 180ms ease;
}

.answer-feedback {
  min-height: 0;
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.answer-feedback.is-correct-text {
  color: #15624e;
}

.answer-feedback.is-wrong-text,
.answer-feedback.is-warning {
  color: #8a4d12;
}

.quiz-question label.is-correct {
  border-color: #95d5b2;
  background: #edf8f2;
}

.quiz-question label.is-wrong {
  border-color: #f0b8a8;
  background: #fff2ee;
}

.quiz-result a {
  color: var(--brand);
  font-weight: 800;
}

@media (max-width: 900px) {

  .quiz-overview,
  .quiz-overview-steps {
    grid-template-columns: 1fr;
  }
}

/* FAQs Section */
.faq-section {
  margin-top: 48px;
}

.faq-section h2 {
  color: var(--brand-dark);
  margin-bottom: 24px;
}

.faq-item {
  background: var(--soft);
  border-left: 4px solid var(--brand);
  padding: 18px 24px;
  margin-bottom: 16px;
  border-radius: 0 6px 6px 0;
}

.faq-item h3 {
  margin: 0 0 12px 0;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 700;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* Table Styles */
.article table, .content-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.article table th, .content-page table th,
.article table td, .content-page table td {
  border: 1px solid var(--line);
  padding: 12px 16px;
  text-align: left;
  vertical-align: top;
}

.article table th, .content-page table th {
  background-color: var(--soft);
  font-weight: 700;
  color: var(--brand-dark);
}

.article table tr:nth-child(even), .content-page table tr:nth-child(even) {
  background-color: #fafbfc;
}