/*
Theme Name: Kindly Focused
Theme URI: https://kindlyfocused.com/
Author: Kindly Focused
Author URI: https://kindlyfocused.com/
Description: A calm, accessible editorial block theme for practical focus and gentle productivity guidance.
Requires at least: 6.9
Tested up to: 7.0
Requires PHP: 7.4
Version: 1.1.2
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kindly-focused
*/

:root {
  --kf-ink: #142a3b;
  --kf-ink-soft: #365167;
  --kf-coral: #e9564d;
  --kf-coral-dark: #bd3832;
  --kf-mint: #b7e2d0;
  --kf-mint-deep: #2f7562;
  --kf-sun: #f6c754;
  --kf-cream: #fdfbf6;
  --kf-paper: #ffffff;
  --kf-line: #dfe7e3;
  --kf-shadow: 0 20px 60px rgba(20, 42, 59, 0.10);
  --kf-radius-sm: 14px;
  --kf-radius-md: 24px;
  --kf-radius-lg: 36px;
}

html { scroll-behavior: smooth; }

*, *::before, *::after { box-sizing: border-box; }

body {
  background: var(--kf-cream);
  color: var(--kf-ink);
  text-rendering: optimizeLegibility;
}

a { text-underline-offset: .18em; }

:where(a, button, input, textarea, select):focus-visible {
  outline: 3px solid var(--kf-sun);
  outline-offset: 3px;
}

.kf-skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 9999;
  padding: .8rem 1rem;
  border-radius: 12px;
  background: var(--kf-ink);
  color: #fff;
}

.kf-skip-link:focus { top: 1rem; }

.kf-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(20, 42, 59, .08);
  background: rgba(253, 251, 246, .92);
  backdrop-filter: blur(16px);
}

.kf-header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.kf-logo {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: var(--kf-ink);
  font-family: var(--wp--preset--font-family--heading);
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.kf-logo svg { width: 38px; height: 38px; flex: 0 0 38px; }

.kf-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: .95rem;
  font-weight: 650;
}

.kf-nav a { color: var(--kf-ink); text-decoration: none; }
.kf-nav a:hover { color: var(--kf-coral-dark); }
.kf-cta-short { display: none; }

.kf-nav .kf-nav-cta,
.kf-button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .75rem 1.2rem;
  border-radius: 999px;
  background: var(--kf-coral);
  color: #fff;
  font-weight: 750;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(233, 86, 77, .22);
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.kf-nav .kf-nav-cta:hover,
.kf-button-primary:hover {
  background: var(--kf-coral-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(189, 56, 50, .25);
}

.kf-button-secondary {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: .7rem 1.15rem;
  border: 1.5px solid var(--kf-ink);
  border-radius: 999px;
  color: var(--kf-ink);
  font-weight: 700;
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease;
}

.kf-button-secondary:hover { background: var(--kf-ink); color: #fff; }

.kf-main { overflow: clip; }

.kf-hero {
  position: relative;
  padding: clamp(4.5rem, 7vw, 6.75rem) 0 clamp(4rem, 6vw, 6rem);
}

.kf-hero::before {
  content: "";
  position: absolute;
  width: 34rem;
  height: 34rem;
  right: -12rem;
  top: -8rem;
  border-radius: 50%;
  background: rgba(183, 226, 208, .48);
  filter: blur(2px);
  pointer-events: none;
}

.kf-eyebrow {
  margin: 0 0 1rem;
  color: var(--kf-coral-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.kf-hero-grid {
  position: relative;
  z-index: 1;
  left: 50%;
  width: min(calc(100vw - 48px), 1180px);
  max-width: 1180px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 5.5rem);
}

.kf-hero-copy { min-width: 0; }

.kf-hero h1 {
  max-width: 730px;
  margin: 0;
  font-size: clamp(3.6rem, 5.4vw, 5.45rem);
  line-height: .96;
  letter-spacing: -.045em;
}

.kf-hero h1 em { color: var(--kf-coral); font-style: normal; }

.kf-hero-lead {
  max-width: 680px;
  margin: 1.75rem 0 0;
  color: var(--kf-ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.kf-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }

.kf-focus-card {
  position: relative;
  padding: clamp(1.5rem, 4vw, 2.6rem);
  border: 1px solid rgba(20, 42, 59, .08);
  border-radius: var(--kf-radius-lg);
  background: var(--kf-paper);
  box-shadow: var(--kf-shadow);
}

.kf-focus-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
  margin-top: 1.5rem;
}

.kf-focus-map div {
  min-height: 96px;
  padding: 1rem;
  border-radius: 18px;
  background: #f4f8f6;
  display: flex;
  align-items: center;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.kf-focus-map span { min-width: 1.75rem; color: var(--kf-ink-soft); font-size: .78rem; font-weight: 700; }
.kf-focus-map strong { font-size: 1rem; }
.kf-focus-map div:nth-child(1) { background: #fff0ed; }
.kf-focus-map div:nth-child(2) { background: #eaf7f1; }
.kf-focus-map div:nth-child(3) { background: #fff7db; }
.kf-focus-map div:nth-child(4) { background: #eef2f7; }

.kf-trust-strip {
  padding: 1rem 0;
  border-top: 1px solid var(--kf-line);
  border-bottom: 1px solid var(--kf-line);
  color: var(--kf-ink-soft);
  font-size: .9rem;
  font-weight: 650;
}

.kf-section { padding-top: clamp(4rem, 8vw, 7rem); padding-bottom: clamp(4rem, 8vw, 7rem); }
.kf-section-soft { background: #f1f7f4; }

.kf-section-heading { max-width: 720px; margin-bottom: 2rem; }
.kf-section-heading h2 { margin: 0; font-size: clamp(2.35rem, 5vw, 4.6rem); line-height: 1; letter-spacing: -.04em; }
.kf-section-heading p { color: var(--kf-ink-soft); font-size: 1.08rem; line-height: 1.7; }

.kf-pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.kf-pillar {
  min-height: 245px;
  padding: 1.35rem;
  border: 1px solid var(--kf-line);
  border-radius: var(--kf-radius-md);
  background: var(--kf-paper);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.kf-pillar:hover { transform: translateY(-5px); border-color: var(--kf-mint-deep); box-shadow: 0 16px 36px rgba(20,42,59,.08); }
.kf-pillar-number { color: var(--kf-coral-dark); font-size: .76rem; font-weight: 850; letter-spacing: .12em; }
.kf-pillar h3 { margin-top: 3rem; font-size: 1.55rem; }
.kf-pillar p { color: var(--kf-ink-soft); font-size: .95rem; line-height: 1.65; }
.kf-pillar a { color: var(--kf-ink); font-weight: 750; }

.kf-post-grid .wp-block-post-template {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.kf-post-grid .wp-block-post {
  overflow: hidden;
  border: 1px solid var(--kf-line);
  border-radius: var(--kf-radius-md);
  background: var(--kf-paper);
  transition: transform .22s ease, box-shadow .22s ease;
}

.kf-post-grid .wp-block-post:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(20,42,59,.09); }
.kf-post-grid .wp-block-post-featured-image { margin: 0; aspect-ratio: 16/9; background: #eaf3ef; }
.kf-post-grid .wp-block-post-featured-image img { width: 100%; height: 100%; object-fit: cover; }
.kf-post-card-body { padding: 1.3rem; }
.kf-post-grid .wp-block-post-title { margin: .6rem 0; font-size: 1.45rem; line-height: 1.18; }
.kf-post-grid .wp-block-post-title a { color: var(--kf-ink); text-decoration: none; }
.kf-post-grid .wp-block-post-excerpt { color: var(--kf-ink-soft); font-size: .95rem; line-height: 1.6; }
.kf-post-grid .wp-block-post-date, .kf-post-grid .taxonomy-category { color: var(--kf-mint-deep); font-size: .78rem; font-weight: 750; }

.kf-steps { counter-reset: kf-step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.kf-step { counter-increment: kf-step; padding: 1.5rem; border-top: 4px solid var(--kf-coral); background: var(--kf-paper); border-radius: 0 0 var(--kf-radius-md) var(--kf-radius-md); }
.kf-step::before { content: "0" counter(kf-step); color: var(--kf-coral-dark); font-weight: 850; font-size: .8rem; letter-spacing: .12em; }
.kf-step p { color: var(--kf-ink-soft); }

.kf-cta-band {
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--kf-radius-lg);
  background: var(--kf-ink);
  color: #fff;
  box-shadow: var(--kf-shadow);
}

.kf-cta-band h2 { margin: 0; color: #fff; font-size: clamp(2.2rem, 5vw, 4.5rem); line-height: 1; }
.kf-cta-band p { max-width: 660px; color: #d9e5e9; font-size: 1.08rem; }

.kf-content-shell { padding-top: clamp(3rem, 7vw, 6rem); padding-bottom: clamp(4rem, 8vw, 7rem); }
.kf-content-shell > * { max-width: 760px; margin-left: auto; margin-right: auto; }
.kf-content-shell > .alignwide { max-width: 1120px; }
.kf-content-shell h1 { font-size: clamp(2.7rem, 6vw, 5.5rem); line-height: .98; letter-spacing: -.045em; }
.kf-content-shell h2 { margin-top: 2.2em; font-size: clamp(1.8rem, 3.5vw, 2.65rem); line-height: 1.12; }
.kf-content-shell h3 { margin-top: 1.8em; font-size: 1.45rem; }
.kf-content-shell p, .kf-content-shell li { color: var(--kf-ink-soft); font-size: 1.08rem; line-height: 1.78; }
.kf-content-shell blockquote { margin: 2rem auto; padding: 1.25rem 1.5rem; border-left: 5px solid var(--kf-coral); background: #fff3ee; border-radius: 0 18px 18px 0; }
.kf-content-shell .wp-block-post-featured-image { margin-top: 2rem; margin-bottom: 2rem; overflow: hidden; border-radius: var(--kf-radius-md); box-shadow: var(--kf-shadow); }
.kf-content-shell .wp-block-post-featured-image img { width: 100%; height: auto; object-fit: cover; }
.kf-content-shell .wp-block-table { margin-top: 2rem; margin-bottom: 2rem; overflow-x: auto; }
.kf-content-shell .wp-block-table table { width: 100%; border-collapse: collapse; background: #fff; }
.kf-content-shell .wp-block-table th, .kf-content-shell .wp-block-table td { padding: .9rem; border: 1px solid var(--kf-line); text-align: left; }
.kf-content-shell .wp-block-table th { background: #eef6f2; color: var(--kf-ink); }

/* Start Here decision page */
.kf-start-intro {
  max-width: 760px !important;
  margin-top: 1.25rem;
  margin-bottom: clamp(2rem, 5vw, 3.75rem);
}

.kf-content-shell .kf-start-intro h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -.035em;
}

.kf-content-shell .kf-start-intro > p:last-child {
  max-width: 650px;
  margin: 1.1rem 0 0;
  font-size: 1.12rem;
  line-height: 1.65;
}

.kf-start-grid {
  position: relative;
  left: 50%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  width: min(calc(100vw - 48px), 1120px);
  max-width: 1120px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  transform: translateX(-50%);
}

.kf-start-card {
  --kf-card-bg: #fff0ed;
  --kf-card-accent: var(--kf-coral-dark);
  position: relative;
  min-width: 0;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.4rem, 3vw, 2rem);
  overflow: hidden;
  border: 1px solid rgba(20, 42, 59, .10);
  border-radius: 28px;
  background: var(--kf-card-bg);
  color: var(--kf-ink);
  text-decoration: none;
  box-shadow: 0 12px 34px rgba(20, 42, 59, .07);
  touch-action: manipulation;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.kf-start-card::after {
  content: "";
  position: absolute;
  width: 12rem;
  height: 12rem;
  right: -5rem;
  bottom: -6rem;
  border: 2.6rem solid rgba(255, 255, 255, .34);
  border-radius: 50%;
  pointer-events: none;
}

.kf-start-card:hover {
  color: var(--kf-ink);
  transform: translateY(-5px);
  border-color: var(--kf-card-accent);
  box-shadow: 0 20px 44px rgba(20, 42, 59, .12);
}

.kf-start-card:active { transform: translateY(-1px) scale(.99); }

.kf-start-card--coral { --kf-card-bg: #fff0ed; --kf-card-accent: var(--kf-coral-dark); }
.kf-start-card--mint { --kf-card-bg: #eaf7f1; --kf-card-accent: var(--kf-mint-deep); }
.kf-start-card--sun { --kf-card-bg: #fff7db; --kf-card-accent: #8b6600; }
.kf-start-card--navy { --kf-card-bg: var(--kf-ink); --kf-card-accent: var(--kf-sun); color: #fff; }
.kf-start-card--navy:hover { color: #fff; }

.kf-start-card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 2.4rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, .72);
  color: var(--kf-card-accent);
}

.kf-start-card-icon svg {
  width: 27px;
  height: 27px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kf-start-card-kicker {
  margin-bottom: .7rem;
  color: var(--kf-card-accent);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.kf-start-card > strong {
  max-width: 15ch;
  font-family: var(--wp--preset--font-family--heading);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.04;
  letter-spacing: -.025em;
}

.kf-start-card-copy {
  max-width: 49ch;
  margin: 1rem 0 1.4rem;
  color: var(--kf-ink-soft);
  font-size: 1rem;
  line-height: 1.58;
}

.kf-start-card-action {
  position: relative;
  z-index: 1;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: auto;
  color: var(--kf-card-accent);
  font-weight: 800;
}

.kf-start-card-action span { transition: transform .2s ease; }
.kf-start-card:hover .kf-start-card-action span { transform: translateX(4px); }
.kf-start-card--navy .kf-start-card-kicker,
.kf-start-card--navy .kf-start-card-action { color: var(--kf-sun); }
.kf-start-card--navy .kf-start-card-copy { color: #dbe6ea; }

.kf-start-note {
  position: relative;
  left: 50%;
  width: min(calc(100vw - 48px), 1120px);
  max-width: 1120px !important;
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-top: 1.25rem;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding: 1rem 1.2rem;
  border: 1px solid var(--kf-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .7);
  transform: translateX(-50%);
}

.kf-start-note svg {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  color: var(--kf-mint-deep);
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kf-content-shell .kf-start-note p { margin: 0; font-size: .9rem; line-height: 1.55; }

.kf-article-meta { display: flex; flex-wrap: wrap; gap: .6rem 1.2rem; color: var(--kf-mint-deep); font-size: .86rem; font-weight: 700; }
.kf-reading-note { padding: 1rem 1.2rem; border-radius: 16px; background: #eef6f2; color: var(--kf-ink-soft); font-size: .9rem; }

.kf-article-kicker { margin-bottom: .9rem; }
.kf-article-intro { color: var(--kf-ink-soft); font-size: 1.24rem; line-height: 1.65; }
.kf-article-toc { margin: 2rem auto; padding: 1.25rem 1.4rem; border: 1px solid var(--kf-line); border-radius: 18px; background: #fff; }
.kf-article-toc strong { display: block; margin-bottom: .55rem; color: var(--kf-ink); }
.kf-article-toc ol { margin: 0; padding-left: 1.2rem; columns: 2; column-gap: 2rem; }
.kf-article-toc li { break-inside: avoid; margin: .35rem 0; font-size: .95rem; }
.kf-checklist { margin: 2rem auto; padding: 1.35rem 1.45rem; border-radius: 20px; background: #fff7db; }
.kf-faq { margin-top: 2.75rem; }
.kf-faq details { margin: .75rem 0; padding: 1rem 1.15rem; border: 1px solid var(--kf-line); border-radius: 16px; background: #fff; }
.kf-faq summary { min-height: 44px; display: flex; align-items: center; cursor: pointer; color: var(--kf-ink); font-weight: 760; }
.kf-faq details p { margin-bottom: .25rem; font-size: 1rem; }
.kf-author-box { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; margin: 2.5rem auto; padding: 1.4rem; border: 1px solid var(--kf-line); border-radius: 20px; background: #fff; }
.kf-author-mark { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: var(--kf-ink); color: #fff; font-family: var(--wp--preset--font-family--heading); font-size: 1.5rem; font-weight: 750; }
.kf-author-box h2 { margin: 0 0 .3rem; font-family: var(--wp--preset--font-family--body); font-size: 1rem; }
.kf-author-box p { margin: 0; font-size: .9rem; line-height: 1.6; }

.kf-footer { padding: 4rem 0 2rem; background: var(--kf-ink); color: #dbe6ea; }
.kf-footer .kf-logo { color: #fff; }
.kf-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 3rem; }
.kf-footer h2, .kf-footer h3 { color: #fff; }
.kf-footer a { color: #dbe6ea; }
.kf-footer a:hover { color: var(--kf-sun); }
.kf-footer-links { display: grid; gap: .7rem; }
.kf-footer-note { padding-top: 2rem; margin-top: 2rem; border-top: 1px solid rgba(255,255,255,.14); font-size: .78rem; line-height: 1.6; color: #b8c9d0; }

@media (max-width: 960px) {
  .kf-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr); gap: 2rem; }
  .kf-hero h1 { font-size: clamp(3.25rem, 7vw, 4.5rem); }
  .kf-pillar-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .kf-post-grid .wp-block-post-template { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .kf-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .kf-header-inner { min-height: 68px; gap: .75rem; padding-left: 1rem; padding-right: 1rem; }
  .kf-nav a:not(.kf-nav-cta) { display: none; }
  .kf-nav { gap: .5rem; }
  .kf-nav .kf-nav-cta { min-height: 44px; padding: .62rem .9rem; font-size: .84rem; }
  .kf-nav .kf-nav-cta .kf-cta-long { display: none; }
  .kf-nav .kf-nav-cta .kf-cta-short { display: inline; }
  .kf-hero { padding: 3.2rem 0 3.5rem; }
  .kf-hero-grid { width: calc(100vw - 32px); grid-template-columns: 1fr; gap: 2.2rem; }
  .kf-hero h1 { max-width: 12ch; font-size: clamp(2.9rem, 13vw, 4rem); line-height: .96; }
  .kf-hero-lead { margin-top: 1.25rem; font-size: 1.08rem; line-height: 1.58; }
  .kf-eyebrow { font-size: .7rem; letter-spacing: .13em; line-height: 1.5; }
  .kf-focus-card { padding: 1.25rem; border-radius: 24px; }
  .kf-focus-card h2 { font-size: 1.75rem; }
  .kf-focus-map { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .kf-focus-map div { min-height: 84px; padding: .85rem; }
  .kf-hero::before { width: 22rem; height: 22rem; }
  .kf-pillar-grid, .kf-post-grid .wp-block-post-template, .kf-steps, .kf-footer-grid { grid-template-columns: 1fr; }
  .kf-footer-grid { gap: 2rem; }
  .kf-content-shell { padding: 2.25rem 1rem 4rem; overflow: hidden; }
  .kf-content-shell > * { width: 100%; max-width: 100%; }
  .kf-content-shell > h1 { margin-top: 0; margin-bottom: 1.25rem; font-size: clamp(2.8rem, 13vw, 4rem); overflow-wrap: anywhere; }
  .kf-content-shell .kf-start-intro h2 { font-size: clamp(1.85rem, 9vw, 2.6rem); }
  .kf-start-grid { grid-template-columns: 1fr; gap: 1rem; }
  .kf-start-grid, .kf-start-note { left: 0; width: 100%; transform: none; }
  .kf-start-card { min-height: 0; padding: 1.35rem; border-radius: 22px; }
  .kf-start-card-icon { width: 48px; height: 48px; margin-bottom: 1.5rem; border-radius: 14px; }
  .kf-start-card > strong { max-width: 18ch; font-size: clamp(1.65rem, 7vw, 2rem); }
  .kf-start-card-copy { margin: .85rem 0 1rem; }
  .kf-start-note { align-items: flex-start; }
}

@media (max-width: 420px) {
  .kf-logo { gap: .5rem; font-size: 1rem; }
  .kf-logo svg { width: 34px; height: 34px; flex-basis: 34px; }
  .kf-logo span { max-width: none; line-height: 1; }
  .kf-actions > * { width: 100%; }
  .kf-nav .kf-nav-cta { padding: .6rem .78rem; }
  .kf-article-toc ol { columns: 1; }
  .kf-content-shell h1 { font-size: clamp(2.45rem, 12vw, 3.3rem); }
  .kf-start-intro { margin-top: .5rem; margin-bottom: 1.75rem; }
  .kf-content-shell .kf-start-intro > p:last-child { font-size: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
