* { box-sizing: border-box; }

:root {
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-800: #1e40af;
  --blue-900: #1e3a8a;
  --slate-50: #f8fafc;
  --slate-200: #e2e8f0;
  --slate-500: #64748b;
  --slate-700: #334155;
  --slate-900: #0f172a;
  --white: #ffffff;
  --shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 8px 24px rgba(30, 64, 175, 0.12);
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --max: 40rem;
  --wide: 68rem;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--slate-700);
  background: var(--slate-50);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--blue-700);
  color: var(--white);
  font-weight: 600;
}
.skip-link:focus { left: 1rem; top: 1rem; }

a {
  color: var(--blue-700);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
a:hover { color: var(--blue-900); }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.wrap--wide { max-width: var(--wide); }

.page-narrow { max-width: 28rem; }

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
  padding: 0.875rem 0;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.2;
}
.logo:hover { text-decoration: none; }
.logo-name {
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--slate-900);
  letter-spacing: -0.02em;
}
.logo-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--slate-500);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem 1.25rem;
  font-size: 0.9375rem;
}
.site-nav a:not(.btn) {
  color: var(--slate-700);
  text-decoration: none;
  font-weight: 500;
}
.site-nav a:not(.btn):hover { color: var(--blue-700); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn-lg { padding: 0.7rem 1.35rem; font-size: 1rem; }
.btn-primary {
  background: var(--blue-600);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blue-700);
  color: var(--white);
  text-decoration: none;
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  text-decoration: none;
}
.btn-nav {
  background: var(--blue-600);
  color: var(--white);
  padding: 0.45rem 0.9rem;
  font-size: 0.875rem;
}
.btn-nav:hover {
  background: var(--blue-700);
  color: var(--white);
  text-decoration: none;
}
.btn-white {
  background: var(--white);
  color: var(--blue-800);
}
.btn-white:hover {
  background: var(--blue-50);
  color: var(--blue-900);
  text-decoration: none;
}

/* Hero */
.hero {
  background: linear-gradient(145deg, var(--blue-900) 0%, var(--blue-700) 45%, var(--blue-600) 100%);
  color: var(--white);
  padding: 3.5rem 0 4rem;
}
.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 52rem) {
  .hero-grid { grid-template-columns: 1.2fr 0.8fr; align-items: center; }
}
.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.875rem, 5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--white);
}
.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-200);
}
.lead {
  margin: 0 0 1.5rem;
  font-size: 1.125rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  max-width: 32rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero-points {
  margin: 0;
  padding: 1.25rem 1.35rem;
  list-style: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
}
.hero-points li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--white);
}
.point-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--blue-500);
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Sections */
.section-head {
  margin-bottom: 2rem;
  max-width: 28rem;
}
.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 32rem;
}
.section-head h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--slate-900);
  text-transform: none;
}
.section-head p {
  margin: 0;
  color: var(--slate-500);
  font-size: 1.0625rem;
}

.pain {
  padding: 3.5rem 0;
  background: var(--white);
}
.services {
  padding: 3.5rem 0;
  background: var(--blue-50);
}
.steps {
  padding: 3.5rem 0;
  background: var(--white);
}
.clients {
  padding: 2.5rem 0 3.5rem;
  background: var(--slate-50);
  border-top: 1px solid var(--slate-200);
}

/* Cards */
.card-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}
.card-grid--4 {
  grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
}
.card-grid--3 {
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
}
.card {
  margin: 0;
  padding: 1.35rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.services .card {
  border-color: var(--blue-100);
}
.card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue-200);
}
.card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-900);
  letter-spacing: -0.01em;
}
.card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--slate-500);
  line-height: 1.5;
}
.card--service .card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.85rem;
  border-radius: 0.625rem;
  background: var(--blue-100);
  color: var(--blue-700);
}

/* Steps */
.steps-row {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
  counter-reset: none;
}
@media (min-width: 40rem) {
  .steps-row { grid-template-columns: repeat(3, 1fr); }
}
.step-card {
  margin: 0;
  padding: 1.5rem;
  text-align: center;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  background: var(--blue-600);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9375rem;
}
.step-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--slate-900);
}
.step-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--slate-500);
}

/* CTA */
.cta-band {
  padding: 3.5rem 0;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
  color: var(--white);
  text-align: center;
}
.cta-inner h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
}
.cta-inner p {
  margin: 0 0 1.5rem;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

/* Clients */
.clients-label {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate-500);
  text-align: center;
}
.client-chips {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}
.client-chips a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--slate-700);
  text-decoration: none;
  box-shadow: var(--shadow);
}
.client-chips a:hover {
  border-color: var(--blue-300, var(--blue-200));
  color: var(--blue-700);
  text-decoration: none;
}

/* Contact page */
.page-main { flex: 1; }
.page-hero {
  padding: 2.5rem 0 0;
  background: linear-gradient(180deg, var(--blue-50) 0%, var(--slate-50) 100%);
}
.page-hero .wrap { padding-bottom: 1.5rem; }
.page-hero h1 {
  margin: 0 0 0.5rem;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--slate-900);
}
.page-lead {
  margin: 0;
  color: var(--slate-500);
  max-width: 32rem;
}
.page-content {
  padding: 2rem 0 3.5rem;
}
.page-content .card {
  padding: 1.75rem;
}

/* Forms */
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--slate-200);
  border-radius: 0.5rem;
  font: inherit;
  background: var(--white);
}
input:focus,
textarea:focus {
  outline: 2px solid var(--blue-500);
  outline-offset: 1px;
  border-color: var(--blue-500);
}
textarea { min-height: 8rem; resize: vertical; }
label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--slate-700);
}
.form-group { margin-bottom: 1rem; }
.form-actions { margin-top: 1.25rem; }

.form-message {
  margin: 0 0 1.25rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
}
.form-message--success {
  background: var(--blue-100);
  color: var(--blue-900);
}
.form-message--error {
  background: #fef2f2;
  color: #b91c1c;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.hero-summary {
  margin: 1.75rem 0 0;
  padding: 1rem 1.15rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.94);
  max-width: 38rem;
}
.hero-summary strong {
  color: var(--white);
  font-weight: 600;
}

.what-we-do-band {
  padding: 2rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
}
.what-we-do-band p {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--slate-700);
  max-width: 48rem;
}

.who-we-help {
  padding: 3rem 0;
  background: var(--slate-50);
}
.audience-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.audience-grid li {
  padding: 0.45rem 0.85rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 2rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--slate-700);
}

.common-problems {
  padding: 3.5rem 0;
  background: var(--white);
}
.card-grid--2 {
  grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr));
}
.problem-help {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: var(--slate-500);
  line-height: 1.5;
}

.jargon-strip {
  padding: 2.5rem 0;
  background: var(--blue-50);
  border-block: 1px solid var(--blue-100);
}
.jargon-strip h2 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  color: var(--slate-900);
}
.jargon-examples {
  margin: 0;
  padding: 0;
  list-style: none;
}
.jargon-examples li {
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
  color: var(--slate-700);
}
.jargon-examples li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--blue-600);
  font-weight: 700;
}

.accessibility-band {
  padding: 2.5rem 0;
  background: var(--white);
}
.accessibility-band p {
  margin: 0;
  max-width: 42rem;
  font-size: 1.0625rem;
  color: var(--slate-700);
}

.ongoing-support {
  padding: 3rem 0;
  background: var(--blue-50);
}
.support-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
  max-width: 40rem;
}
.support-list li {
  padding-left: 1.25rem;
  position: relative;
  color: var(--slate-700);
}
.support-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--blue-600);
}

.services-teaser-foot {
  margin-top: 1.75rem;
  text-align: center;
}

.steps-extended {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}
@media (min-width: 45rem) {
  .steps-extended {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 52rem) {
  .steps-extended {
    grid-template-columns: repeat(3, 1fr);
  }
}
.step-card--extended {
  text-align: left;
}
.step-card--extended .step-num {
  margin-left: 0;
}

.package-cards .card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--slate-500);
}

.pricing-teaser {
  padding: 3rem 0;
  background: var(--white);
  border-block: 1px solid var(--slate-200);
}
.package-cards {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
}
.package-cards .card h3 {
  font-size: 0.9375rem;
}

.trust-strip {
  padding: 2.5rem 0;
  background: var(--slate-50);
}
.trust-strip .card {
  max-width: 40rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-top: 0.25rem;
}

.link-more {
  margin-top: 1rem;
  font-weight: 600;
}

.inline-links {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}
.inline-links a {
  font-weight: 600;
  text-decoration: none;
}
.inline-links a:hover {
  text-decoration: underline;
}

/* Inner pages */
.prose-page {
  padding: 2rem 0 3.5rem;
}
.prose-section {
  margin-bottom: 2.25rem;
}
.prose-section:last-child {
  margin-bottom: 0;
}
.prose-section h2 {
  margin: 0 0 0.65rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--slate-900);
  letter-spacing: -0.02em;
}
.prose-section h3 {
  margin: 1.35rem 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--slate-900);
}
.prose-section p {
  margin: 0 0 0.85rem;
  max-width: 42rem;
}
.prose-section ul,
.prose-section ol {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
  max-width: 42rem;
}
.prose-section li {
  margin-bottom: 0.35rem;
}
.service-detail-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-detail-list > li {
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--slate-200);
}
.service-detail-list > li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.service-detail-list h3 {
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--slate-900);
}
.service-detail-list p {
  margin: 0;
  max-width: 44rem;
  color: var(--slate-700);
}

.cta-inline {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--blue-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--blue-100);
}
.cta-inline p {
  margin: 0 0 1rem;
  font-weight: 600;
}

.contact-intro {
  padding-bottom: 1rem;
}
.contact-intro h2 {
  margin: 1.75rem 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--slate-900);
}
.contact-intro h2:first-child {
  margin-top: 0;
}
.contact-intro p {
  margin: 0 0 0.75rem;
  color: var(--slate-600);
  font-size: 0.9375rem;
}
.contact-email-big {
  font-size: 1.0625rem;
  font-weight: 600;
}
.contact-email-big a {
  text-decoration: none;
}
.contact-email-big a:hover {
  text-decoration: underline;
}

.contact-layout {
  display: grid;
  gap: 2rem;
}
@media (min-width: 52rem) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.hp-note {
  font-size: 0.75rem;
  color: var(--slate-400);
  margin-top: 1rem;
}

/* Footer */
.site-footer {
  margin-top: auto;
  background: var(--slate-900);
  font-size: 0.875rem;
  color: var(--slate-400);
}
.site-footer--full {
  padding: 0;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  padding: 2.5rem 1.25rem 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 52rem) {
  .footer-grid {
    grid-template-columns: 1.35fr repeat(3, 1fr);
    gap: 1.5rem 2rem;
  }
}
.footer-title {
  display: block;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.footer-tag {
  margin: 0 0 0.85rem;
  line-height: 1.45;
  font-size: 0.875rem;
}
.footer-email {
  margin: 0;
}
.footer-email a {
  color: var(--blue-200);
  font-weight: 600;
  text-decoration: none;
}
.footer-email a:hover {
  color: var(--white);
  text-decoration: underline;
}
.footer-heading {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate-400);
}
.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.35rem;
}
.footer-links a {
  color: var(--blue-200);
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 1.25rem 2rem;
}
.footer-copy {
  margin: 0 0 0.85rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--slate-400);
}
.footer-disclaimer {
  margin: 0 auto;
  max-width: 44rem;
  font-size: 0.72rem;
  line-height: 1.55;
  color: var(--slate-500);
  text-align: center;
}

.site-footer .footer-grid a {
  color: var(--blue-200);
}

/* Simplified homepage */
.hero--simple {
  padding: 3rem 0 3.25rem;
}
.hero--simple .lead {
  max-width: 38rem;
  margin-bottom: 1.5rem;
}
.hero-cta-row {
  margin: 0;
}
.hero-trust {
  display: block;
  margin: 2rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  list-style: none;
  padding-left: 0;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}
.hero-trust li {
  display: inline;
  margin: 0;
  padding: 0;
}
.hero-trust li:not(:last-child)::after {
  content: " · ";
  font-weight: 400;
  opacity: 0.65;
}

.steps-simple {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 38rem;
  counter-reset: step-count;
}
.steps-simple li {
  counter-increment: step-count;
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.35rem;
}
.steps-simple li:last-child {
  margin-bottom: 0;
}
.steps-simple li::before {
  content: counter(step-count);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue-600);
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
}
.steps-simple h3 {
  margin: 0 0 0.25rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--slate-900);
}
.steps-simple p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--slate-500);
}

.clients--minimal {
  padding: 1.5rem 0 2.25rem;
  background: var(--white);
  border-top: 1px solid var(--slate-200);
}
.recent-work-label {
  margin: 0 0 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--slate-500);
}
.recent-work-links {
  margin: 0;
  font-size: 0.9375rem;
}
.recent-work-links a {
  color: var(--blue-700);
  font-weight: 500;
  text-decoration: none;
}
.recent-work-links a:hover {
  text-decoration: underline;
}
.recent-work-sep {
  margin: 0 0.45rem;
  color: var(--slate-400);
}

.home-four-categories .card--category h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.45rem;
}

