:root {
  --bg: #f6f8fb;
  --paper: #ffffff;
  --ink: #101828;
  --muted: #536174;
  --brand: #106b45;
  --line: #d9e2ee;
  --soft: #e8f3ee;
}

* {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fbfcff 0%, #f2f7f4 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 4.5rem);
  background: rgba(255, 255, 255, 0.88);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--brand);
  font-weight: 950;
}

.brand img {
  width: 3rem;
  height: 2.2rem;
  object-fit: contain;
}

.nav,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.nav a,
.site-footer a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
}

.section,
.article-page {
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 4.5rem);
}

.simple-home .section {
  max-width: 58rem;
  margin: 0 auto;
}

.section-heading {
  margin-bottom: 1.8rem;
}

.eyebrow,
.tag,
.article-card span {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 0.34rem 0.65rem;
  color: #0b5c3d;
  background: var(--soft);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--muted);
  background: transparent;
  padding: 0;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
}

.section-heading p,
.article-card p,
.article-body p,
.article-body li,
.legal-card p {
  color: var(--muted);
  line-height: 1.72;
}

.article-grid {
  display: block;
}

.article-card {
  display: block;
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
}

.article-card img {
  display: none;
}

.article-card span {
  margin-bottom: 0.5rem;
}

.article-card h3 {
  max-width: 42rem;
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.2;
}

.article-card p {
  max-width: 44rem;
  margin: 0.25rem 0 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.article-page {
  max-width: 82rem;
  margin: 0 auto;
}

.article-body,
.legal-card {
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: var(--paper);
  padding: clamp(1.25rem, 4vw, 2.7rem);
}

.article-hero h1,
.article-body h1,
.legal-card h1 {
  margin: 0.35rem 0;
  font-size: clamp(2.1rem, 5.8vw, 4.8rem);
  line-height: 1;
}

.lead {
  font-size: 1.15rem;
}

.article-image {
  display: block;
  width: 100%;
  margin: 1.2rem 0;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
}

.article-body h2 {
  margin-top: 2.2rem;
  color: #143f2d;
  font-size: 1.65rem;
}

.quick-answer,
.prompt-box,
.mini-card,
.related-grid a {
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 1rem;
  background: #ffffff;
}

.tool-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2rem 0;
}

.tool-table th,
.tool-table td {
  border-bottom: 1px solid var(--line);
  padding: 0.9rem;
  text-align: left;
  vertical-align: top;
}

.tool-table th {
  background: #edf6f1;
}

.feature-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.ad-slot {
  display: grid;
  min-height: 6.5rem;
  place-items: center;
  margin: 1.5rem 0;
  border: 1px dashed #aab8ca;
  border-radius: 0.75rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-card {
  max-width: 58rem;
  margin: clamp(2rem, 6vw, 5rem) auto;
}

@media (max-width: 760px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .simple-home .section {
    padding: 1.5rem 1.1rem;
  }

  .article-card h3,
  .article-card p {
    max-width: 18rem;
  }

  .feature-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .article-page {
    padding: 1.25rem 0.85rem;
  }

  .article-body,
  .legal-card {
    padding: 1rem;
  }

  .tool-table {
    font-size: 0.9rem;
  }
}
.simple-home .article-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem}.simple-home .article-card{display:grid;gap:.7rem;border:1px solid var(--line);border-radius:.75rem;background:var(--paper);padding:1rem;box-shadow:0 14px 34px rgba(16,24,40,.06)}.simple-home .article-card:hover{border-color:rgba(16,107,69,.38);transform:translateY(-2px)}.simple-home .article-card img{display:block;width:100%;aspect-ratio:16/9;object-fit:cover;border-radius:.55rem;background:#eef2f7}.simple-home .article-card h3{max-width:none;font-size:1.08rem}.simple-home .article-card p{max-width:none;margin:0}.simple-home .section{max-width:74rem}@media(max-width:980px){.simple-home .article-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:640px){.simple-home .article-grid{grid-template-columns:1fr}.simple-home .article-card{width:100%;max-width:100%}.simple-home .article-card h3,.simple-home .article-card p{max-width:none}}
.simple-home .article-card{overflow:hidden}.simple-home .article-card img{max-width:100%;height:auto}@media(max-width:640px){.simple-home .article-card{padding:1rem}.simple-home .article-card img{width:100%;max-width:100%;object-fit:cover}.simple-home .article-card h3,.simple-home .article-card p{max-width:100%}}
@media(max-width:640px){.simple-home .article-card img{aspect-ratio:16/10;object-fit:contain;background:#eef2f7}}
.updated{color:var(--muted);font-size:.95rem;font-weight:800}.editorial-verdict{border-left:4px solid var(--brand);padding-left:1rem}.pick-list{display:grid;gap:.45rem;padding-left:1.2rem}.official-links a,.tool-table a{color:var(--brand);font-weight:800}.official-links{display:grid;gap:.45rem}
.byline{color:var(--muted);font-size:.94rem;font-weight:700;margin:.35rem 0 0}
