/* ============================================================
   DeepSeek AI Guide — main stylesheet
   Palette: light, warm, eye-friendly; avoids DeepSeek blue/purple
   ============================================================ */

:root {
  --ds-primary:      #0D7377;   /* deep teal */
  --ds-primary-600:  #0B6468;
  --ds-primary-100:  #E0F2F1;
  --ds-accent:       #D97706;   /* amber */
  --ds-accent-600:   #B45309;
  --ds-accent-100:   #FEF3C7;
  --ds-dark:         #0F172A;
  --ds-text:         #1E293B;
  --ds-text-2:       #334155;
  --ds-muted:        #64748B;
  --ds-border:       #E2E8F0;
  --ds-border-soft:  #F1F5F9;
  --ds-surface:      #FAFAF9;   /* warm stone 50, not pure white */
  --ds-card:         #FFFFFF;
  --ds-success:      #059669;
  --ds-danger:       #E11D48;
  --ds-radius:       10px;
  --ds-radius-lg:    14px;
  --ds-shadow-sm:    0 1px 2px rgba(15, 23, 42, .04), 0 1px 3px rgba(15, 23, 42, .06);
  --ds-shadow-md:    0 4px 6px -1px rgba(15, 23, 42, .06), 0 2px 4px -2px rgba(15, 23, 42, .05);
  --ds-font-head:    'Space Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --ds-font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --ds-font-mono:    'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  --ds-container:    1200px;
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; }
body {
  background: var(--ds-surface);
  color: var(--ds-text);
  font-family: var(--ds-font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ds-font-head);
  color: var(--ds-dark);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.entry-content h2 { font-size: 1.75rem; margin-top: 2.5rem; margin-bottom: 1rem; scroll-margin-top: 90px; }
.entry-content h3 { font-size: 1.35rem; margin-top: 2rem; margin-bottom: .75rem; scroll-margin-top: 90px; }
.entry-content p  { margin-bottom: 1.25rem; color: var(--ds-text-2); }
.entry-content a  { color: var(--ds-primary); text-decoration: underline; text-decoration-color: var(--ds-primary-100); text-underline-offset: 3px; }
.entry-content a:hover { color: var(--ds-primary-600); text-decoration-color: currentColor; }
.entry-content code { font-family: var(--ds-font-mono); font-size: .92em; background: var(--ds-border-soft); padding: 2px 6px; border-radius: 5px; color: var(--ds-text); }
.entry-content blockquote { border-left: 3px solid var(--ds-accent); background: var(--ds-accent-100); padding: 1rem 1.25rem; border-radius: 0 var(--ds-radius) var(--ds-radius) 0; color: var(--ds-text); margin: 1.5rem 0; }

/* ---------- Header is rendered by Blocksy. Light touch-ups only. ---------- */
.ct-header .ct-logo-container img,
.ct-header [data-items="logo"] img { max-height: 64px !important; width: auto; height: auto; }

/* ---------- Layout: single post with left TOC ---------- */
.ds-single-wrap {
  max-width: var(--ds-container);
  margin: 32px auto 64px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}
.ds-single-wrap .ds-content { min-width: 0; }
.ds-single-wrap .ds-content article { background: var(--ds-card); border: 1px solid var(--ds-border); border-radius: var(--ds-radius-lg); padding: 32px 36px; box-shadow: var(--ds-shadow-sm); }
.ds-single-wrap .ds-content h1.entry-title { font-size: 2.1rem; margin: 0 0 8px; }
.ds-single-wrap .ds-meta { color: var(--ds-muted); font-size: 14px; margin-bottom: 24px; }
.ds-single-wrap .ds-meta a { color: var(--ds-primary); text-decoration: none; }
.ds-single-wrap .ds-meta .sep { margin: 0 6px; opacity: .5; }

/* Sidebar / TOC */
.ds-toc-sidebar {
  position: sticky; top: 90px;
  background: var(--ds-card);
  border: 1px solid var(--ds-border);
  border-radius: var(--ds-radius-lg);
  padding: 20px 22px;
  box-shadow: var(--ds-shadow-sm);
  font-size: 14px;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
}
.ds-toc-title {
  font-family: var(--ds-font-head);
  font-size: 11px; font-weight: 700;
  color: var(--ds-muted);
  letter-spacing: .12em; text-transform: uppercase;
  margin: 0 0 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--ds-border-soft);
}
.ds-toc-list, .ds-toc-list ul { list-style: none; margin: 0; padding: 0; }
.ds-toc-list li { margin: 0; }
.ds-toc-list a {
  display: block;
  padding: 7px 10px 7px 12px;
  color: var(--ds-text-2);
  text-decoration: none;
  border-left: 2px solid transparent;
  border-radius: 0 6px 6px 0;
  transition: color .15s ease, background .15s ease, border-color .15s ease;
  line-height: 1.4;
}
.ds-toc-list a:hover { color: var(--ds-primary); background: var(--ds-primary-100); }
.ds-toc-list a.is-active {
  color: var(--ds-primary-600);
  background: var(--ds-primary-100);
  border-left-color: var(--ds-primary);
  font-weight: 600;
}
.ds-toc-list ul a { padding-left: 26px; font-size: 13px; color: var(--ds-muted); }
.ds-toc-empty { color: var(--ds-muted); font-size: 13px; font-style: italic; }

@media (max-width: 980px) {
  .ds-single-wrap { grid-template-columns: 1fr; }
  .ds-toc-sidebar {
    position: static; max-height: none;
    margin-bottom: 8px;
  }
}

/* ---------- Home / archive grid ---------- */
.ds-archive-wrap { max-width: var(--ds-container); margin: 40px auto; padding: 0 24px; }
.ds-archive-header { margin-bottom: 28px; }
.ds-archive-header h1 { font-size: 2.2rem; margin: 0 0 6px; }
.ds-archive-header p { color: var(--ds-muted); font-size: 1.05rem; margin: 0; max-width: 720px; }

.ds-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }

.ds-card-article {
  background: var(--ds-card);
  border: 1px solid var(--ds-border);
  border-radius: var(--ds-radius-lg);
  padding: 22px 22px 20px;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
  display: flex; flex-direction: column; gap: 10px;
  text-decoration: none;
  color: inherit;
}
.ds-card-article:hover {
  border-color: var(--ds-primary);
  transform: translateY(-2px);
  box-shadow: var(--ds-shadow-md);
}
.ds-card-article .cat {
  display: inline-flex; align-items: center;
  background: var(--ds-primary-100); color: var(--ds-primary-600);
  font-size: 11px; font-weight: 700;
  padding: 3px 8px; border-radius: 999px;
  letter-spacing: .06em; text-transform: uppercase;
  width: fit-content;
}
.ds-card-article h3 { font-size: 1.1rem; margin: 0; color: var(--ds-dark); line-height: 1.35; }
.ds-card-article .excerpt { color: var(--ds-muted); font-size: .92rem; margin: 0; }
.ds-card-article .read-more { margin-top: auto; color: var(--ds-primary); font-weight: 600; font-size: 14px; }
.ds-card-article .read-more::after { content: " →"; }

/* ---------- Related articles ---------- */
.ds-related {
  max-width: var(--ds-container);
  margin: 56px auto 40px;
  padding: 0 24px;
}
.ds-related-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 18px; gap: 16px; flex-wrap: wrap;
}
.ds-related-head h2 { font-size: 1.5rem; margin: 0; }
.ds-related-head .more { color: var(--ds-primary); font-weight: 600; font-size: 14px; text-decoration: none; }
.ds-related-head .more:hover { color: var(--ds-primary-600); }

/* Inside post page, keep related articles aligned with content column */
.ds-single-wrap .ds-related { max-width: none; margin: 40px 0 0; padding: 0; grid-column: 2; }
@media (max-width: 980px) { .ds-single-wrap .ds-related { grid-column: 1; } }

.ds-related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }

.ds-related-item {
  background: var(--ds-card);
  border: 1px solid var(--ds-border);
  border-radius: var(--ds-radius);
  padding: 18px;
  text-decoration: none;
  color: inherit;
  display: flex; flex-direction: column; gap: 8px;
  transition: border-color .15s ease, transform .15s ease;
}
.ds-related-item:hover { border-color: var(--ds-primary); transform: translateY(-2px); }
.ds-related-item .cat {
  background: var(--ds-accent-100); color: var(--ds-accent-600);
  font-size: 10.5px; font-weight: 700;
  padding: 3px 7px; border-radius: 999px;
  letter-spacing: .06em; text-transform: uppercase;
  width: fit-content;
}
.ds-related-item h4 { font-size: 1rem; line-height: 1.35; margin: 0; color: var(--ds-dark); }
.ds-related-item .date { color: var(--ds-muted); font-size: 12.5px; margin-top: auto; }

/* ---------- Footer ---------- */
.ds-footer { background: var(--ds-dark); color: #CBD5E1; margin-top: 80px; }
.ds-footer-inner { max-width: var(--ds-container); margin: 0 auto; padding: 56px 24px 32px; }
.ds-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 820px) { .ds-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .ds-footer-grid { grid-template-columns: 1fr; } }

.ds-footer-brand .logo-mark { width: 44px; height: 44px; margin-bottom: 14px; display: block; }
.ds-footer-brand h3 { color: #fff; font-size: 1.15rem; margin: 0 0 8px; }
.ds-footer-brand p { color: #94A3B8; font-size: .95rem; line-height: 1.65; margin: 0 0 16px; max-width: 380px; }

.ds-footer-col h4 {
  color: #fff; font-size: 13px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  margin: 0 0 14px;
}
.ds-footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.ds-footer-col a { color: #CBD5E1; text-decoration: none; font-size: 14px; transition: color .15s ease; }
.ds-footer-col a:hover { color: var(--ds-accent); }

.ds-footer-disclaimer {
  margin-top: 36px;
  padding: 18px 20px;
  background: rgba(217, 119, 6, .08);
  border-left: 3px solid var(--ds-accent);
  border-radius: 0 var(--ds-radius) var(--ds-radius) 0;
  color: #E2E8F0;
  font-size: 13px;
  line-height: 1.65;
}
.ds-footer-disclaimer strong { color: #fff; }

.ds-footer-legal {
  border-top: 1px solid rgba(203, 213, 225, .12);
  margin-top: 36px; padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.ds-footer-legal .copyright { color: #94A3B8; font-size: 13px; }
.ds-footer-legal ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 18px; flex-wrap: wrap; }
.ds-footer-legal a { color: #94A3B8; font-size: 13px; text-decoration: none; }
.ds-footer-legal a:hover { color: #fff; }

/* ---------- Utility ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---------- Hide Blocksy's built-in footer only (custom footer in use) ---------- */
footer#footer.ct-footer,
.ct-footer[data-id] { display: none !important; }

/* Keep Blocksy's single-post wrappers out of the way on posts where we render our own layout */
body.ds-custom-single .ct-container > article.post,
body.ds-custom-single .ct-sidebar { display: none !important; }
body.ds-custom-single #main-container > .ct-container { max-width: none; padding: 0; }

/* ============================================================
   HOMEPAGE (front-page.php)
   ============================================================ */
.ds-home { display: block; }
.ds-home .ds-container { max-width: var(--ds-container); margin: 0 auto; padding: 0 24px; }

/* Hide Blocksy's default home wrapper padding so our hero can go edge-to-edge */
body.home .ct-container > .entries { padding: 0 !important; }
body.home #main-container > .ct-container { max-width: none !important; padding: 0 !important; }

/* --- Hero --- */
.ds-hero {
  background:
    radial-gradient(ellipse 900px 500px at 15% 0%, rgba(13, 115, 119, .10), transparent 60%),
    radial-gradient(ellipse 700px 420px at 100% 20%, rgba(217, 119, 6, .08), transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, var(--ds-surface) 100%);
  padding: 72px 0 80px;
  border-bottom: 1px solid var(--ds-border);
}
.ds-hero .ds-container { max-width: 960px; text-align: center; }
.ds-hero-eyebrow {
  display: inline-block;
  font-family: var(--ds-font-head);
  font-size: 12px; font-weight: 600;
  color: var(--ds-primary-600);
  letter-spacing: .12em; text-transform: uppercase;
  background: var(--ds-primary-100);
  padding: 6px 14px; border-radius: 999px;
  margin: 0 0 22px;
}
.ds-hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  color: var(--ds-dark);
}
.ds-hero h1 .accent { color: var(--ds-primary); }
.ds-hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--ds-text-2);
  max-width: 720px; margin: 0 auto 28px;
  line-height: 1.6;
}
.ds-hero-sub strong { color: var(--ds-dark); font-weight: 600; }
.ds-hero-note {
  display: inline-block;
  background: var(--ds-surface, #FAFAF9);
  border: 1px solid rgba(13, 115, 119, 0.2);
  border-left: 3px solid var(--ds-primary, #0D7377);
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 0.95rem;
  color: var(--ds-text-2);
  margin: 0 auto 28px;
  max-width: 680px;
}
.ds-hero-note strong { color: var(--ds-primary, #0D7377); font-weight: 700; }
.ds-hero-note a { color: var(--ds-accent-600, #B45309); font-weight: 600; text-decoration: underline; }
.ds-hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin: 0 0 36px; }

.ds-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 22px; border-radius: 10px;
  font-weight: 600; font-size: 15px;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
  letter-spacing: .005em;
}
.ds-btn-primary {
  background: var(--ds-primary); color: #fff;
  box-shadow: 0 6px 16px -6px rgba(13, 115, 119, .5);
}
.ds-btn-primary:hover { background: var(--ds-primary-600); transform: translateY(-2px); color:#fff; }
.ds-btn-ghost {
  background: transparent; color: var(--ds-text);
  border: 1px solid var(--ds-border);
}
.ds-btn-ghost:hover { border-color: var(--ds-primary); color: var(--ds-primary); transform: translateY(-2px); }

.ds-hero-stats {
  list-style: none; margin: 0; padding: 0;
  display: flex; justify-content: center; gap: 44px; flex-wrap: wrap;
}
.ds-hero-stats li { display: flex; flex-direction: column; align-items: center; }
.ds-hero-stats strong {
  font-family: var(--ds-font-head);
  font-size: 2rem; font-weight: 700;
  color: var(--ds-primary); line-height: 1;
}
.ds-hero-stats span {
  font-size: 13px; color: var(--ds-muted);
  margin-top: 6px; letter-spacing: .02em;
}

/* --- Intro paragraph --- */
.ds-intro { padding: 48px 0 12px; }
.ds-intro-inner { max-width: 840px; }
.ds-intro p {
  font-size: 1.1rem; line-height: 1.75; color: var(--ds-text-2);
  margin: 0;
}
.ds-intro a { color: var(--ds-primary); font-weight: 500; text-decoration: underline; text-decoration-color: var(--ds-primary-100); text-underline-offset: 3px; }
.ds-intro a:hover { color: var(--ds-primary-600); text-decoration-color: currentColor; }

/* --- Section scaffold --- */
.ds-section { padding: 64px 0; }
.ds-section-tint { background: var(--ds-card); border-top: 1px solid var(--ds-border); border-bottom: 1px solid var(--ds-border); }
.ds-section-head { margin-bottom: 32px; max-width: 760px; }
.ds-section-head h2 { font-size: clamp(1.6rem, 2.4vw, 2rem); margin: 0 0 8px; }
.ds-section-head p { color: var(--ds-muted); font-size: 1.05rem; margin: 0; line-height: 1.55; }
.ds-section-head-row {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap;
  max-width: none;
}
.ds-section-more {
  color: var(--ds-primary); font-weight: 600; font-size: 14px;
  text-decoration: none; white-space: nowrap;
}
.ds-section-more:hover { color: var(--ds-primary-600); }

/* --- Feature grid (Start here) --- */
.ds-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 18px;
}
.ds-feature-card {
  background: var(--ds-card);
  border: 1px solid var(--ds-border);
  border-radius: var(--ds-radius-lg);
  padding: 24px;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: 10px;
  position: relative;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.ds-feature-card:hover {
  border-color: var(--ds-primary);
  transform: translateY(-3px);
  box-shadow: var(--ds-shadow-md);
}
.ds-feature-card .num {
  font-family: var(--ds-font-head);
  font-size: 12px; font-weight: 700;
  color: var(--ds-accent-600); letter-spacing: .1em;
}
.ds-feature-card .cat {
  display: inline-flex; align-items: center;
  background: var(--ds-primary-100); color: var(--ds-primary-600);
  font-size: 11px; font-weight: 700;
  padding: 3px 9px; border-radius: 999px;
  letter-spacing: .06em; text-transform: uppercase;
  width: fit-content;
}
.ds-feature-card h3 { font-size: 1.2rem; margin: 0; line-height: 1.35; color: var(--ds-dark); }
.ds-feature-card .read { color: var(--ds-primary); font-weight: 600; font-size: 14px; margin-top: auto; }

/* --- Hub grid (10 categories) --- */
.ds-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.ds-hub-card {
  background: var(--ds-surface);
  border: 1px solid var(--ds-border);
  border-radius: var(--ds-radius-lg);
  padding: 22px;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color .15s ease, transform .15s ease, background .15s ease;
  position: relative; overflow: hidden;
}
.ds-hub-card::before {
  content: ""; position: absolute; inset: 0 auto 0 0;
  width: 3px; background: var(--ds-primary);
  opacity: 0; transition: opacity .15s ease;
}
.ds-hub-card:hover { border-color: var(--ds-primary); transform: translateY(-2px); background: var(--ds-card); }
.ds-hub-card:hover::before { opacity: 1; }
.ds-hub-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--ds-primary-100); color: var(--ds-primary);
  margin-bottom: 6px;
}
.ds-hub-icon svg { width: 22px; height: 22px; }
.ds-hub-card h3 { font-size: 1.1rem; margin: 0; color: var(--ds-dark); }
.ds-hub-card p { font-size: .92rem; color: var(--ds-muted); margin: 0; line-height: 1.55; }
.ds-hub-meta {
  margin-top: auto; padding-top: 8px;
  font-size: 13px; font-weight: 600; color: var(--ds-primary);
  display: flex; justify-content: space-between; align-items: center;
}
.ds-hub-meta .arrow { transition: transform .15s ease; }
.ds-hub-card:hover .ds-hub-meta .arrow { transform: translateX(3px); }

/* --- Comparison grid --- */
.ds-comp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.ds-comp-card {
  background: var(--ds-card);
  border: 1px solid var(--ds-border);
  border-radius: var(--ds-radius-lg);
  padding: 22px;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color .15s ease, transform .15s ease;
}
.ds-comp-card:hover { border-color: var(--ds-accent); transform: translateY(-2px); }
.ds-comp-versus {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--ds-font-head); font-weight: 600; font-size: 13px;
  padding-bottom: 12px; border-bottom: 1px dashed var(--ds-border);
}
.ds-comp-versus .left { color: var(--ds-primary); }
.ds-comp-versus .right { color: var(--ds-accent-600); }
.ds-comp-versus .vs {
  font-size: 10px; font-weight: 700; letter-spacing: .15em;
  padding: 3px 7px; border-radius: 4px;
  background: var(--ds-border-soft); color: var(--ds-text-2);
}
.ds-comp-card h3 { font-size: 1.02rem; margin: 0; line-height: 1.4; color: var(--ds-dark); }
.ds-comp-card .read { color: var(--ds-primary); font-size: 14px; font-weight: 600; margin-top: auto; }

/* --- FAQ --- */
.ds-faq-wrap { max-width: 820px; }
.ds-faq { display: flex; flex-direction: column; gap: 10px; }
.ds-faq-item {
  background: var(--ds-card);
  border: 1px solid var(--ds-border);
  border-radius: var(--ds-radius);
  padding: 4px 4px 4px 4px;
  transition: border-color .15s ease;
}
.ds-faq-item[open] { border-color: var(--ds-primary); }
.ds-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-family: var(--ds-font-head);
  font-weight: 600; font-size: 1.05rem;
  color: var(--ds-dark);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.ds-faq-item summary::-webkit-details-marker { display: none; }
.ds-faq-item summary::after {
  content: "+";
  font-size: 22px; font-weight: 400; color: var(--ds-primary);
  line-height: 1; transition: transform .2s ease;
  flex-shrink: 0;
}
.ds-faq-item[open] summary::after { content: "−"; }
.ds-faq-a {
  padding: 0 22px 20px;
  color: var(--ds-text-2); line-height: 1.7; font-size: 1rem;
}
.ds-faq-a a { color: var(--ds-primary); text-decoration: underline; text-decoration-color: var(--ds-primary-100); text-underline-offset: 3px; }
.ds-faq-a a:hover { color: var(--ds-primary-600); text-decoration-color: currentColor; }

/* --- E-E-A-T strip --- */
.ds-eeat {
  background: var(--ds-dark);
  color: #E2E8F0;
  padding: 64px 0;
  margin-top: 40px;
}
.ds-eeat h2 {
  color: #fff; font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  max-width: 780px; margin: 0 0 36px;
  line-height: 1.35;
}
.ds-eeat-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 28px;
  margin-bottom: 32px;
}
.ds-eeat-grid h3 { color: #fff; font-size: 1.1rem; margin: 0 0 10px; }
.ds-eeat-grid p { color: #94A3B8; font-size: .95rem; line-height: 1.65; margin: 0; }
.ds-eeat-links { color: #94A3B8; font-size: .95rem; margin: 0; }
.ds-eeat-links a { color: var(--ds-accent); text-decoration: underline; text-decoration-color: rgba(217,119,6,.3); text-underline-offset: 3px; }
.ds-eeat-links a:hover { color: #fff; text-decoration-color: currentColor; }

/* Footer margin reset on homepage (hero already has its own top space) */
body.home .ds-footer { margin-top: 0; }

/* Mobile tidying */
@media (max-width: 640px) {
  .ds-section { padding: 44px 0; }
  .ds-hero { padding: 48px 0 56px; }
  .ds-hero-stats { gap: 24px; }
  .ds-hero-stats strong { font-size: 1.5rem; }
}
