@font-face {
  font-family: "Inter";
  src: url("/fonts/inter/sans.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("/fonts/ibm-plex-mono/mono.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

:root {
  --bg: #e3e8ee;
  --text: #11161d;
  --text-muted: rgba(17, 22, 29, 0.66);
  --text-divider: rgba(17, 22, 29, 0.18);
  --text-border-soft: rgba(17, 22, 29, 0.14);
  --header-anchor-offset: 0px;
  --surface: rgba(255, 255, 255, 0.48);
  --surface-border: rgba(17, 22, 29, 0.12);
  --chrome-surface: #171717;
  --chrome-edge: rgba(255, 255, 255, 0.08);
  --chrome-text: #f2f2f2;
  --chrome-text-muted: rgba(242, 242, 242, 0.68);
  --chrome-text-divider: rgba(242, 242, 242, 0.22);
  --chrome-text-border-soft: rgba(242, 242, 242, 0.14);
  --chrome-social-border: rgba(228, 235, 243, 0.18);
  --scrollbar-track: #d5dce4;
  --scrollbar-thumb: #8c98a6;
  --scrollbar-thumb-hover: #6f7b88;
  --font-sans: "Inter", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0b0b0b;
    --text: #e3e8ee;
    --text-muted: rgba(227, 232, 238, 0.68);
    --text-divider: rgba(227, 232, 238, 0.2);
    --text-border-soft: rgba(227, 232, 238, 0.12);
    --surface: rgba(255, 255, 255, 0.04);
    --surface-border: rgba(255, 255, 255, 0.1);
    --scrollbar-track: #121212;
    --scrollbar-thumb: #424242;
    --scrollbar-thumb-hover: #5c5c5c;
  }
}

html {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--bg);
  scrollbar-color: var(--scrollbar-thumb) transparent;
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 0.42rem;
  height: 0.42rem;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--scrollbar-thumb) 84%, #ffffff 16%) 0%,
    var(--scrollbar-thumb) 100%
  );
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--scrollbar-thumb-hover) 84%, #ffffff 16%) 0%,
    var(--scrollbar-thumb-hover) 100%
  );
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.home-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 20;
  flex: 0 0 auto;
  width: 100%;
  border-bottom: 1px solid var(--text-border-soft);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition:
    background 0.18s ease,
    border-color 0.18s ease;
}

.home-header.is-scrolled {
  background: color-mix(in srgb, var(--bg) 78%, transparent);
}

.home-header-inner,
.home-main {
  width: min(100%, 72rem);
  box-sizing: border-box;
  margin-inline: auto;
}

.home-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 1.25rem;
}

.home-brand {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  color: inherit;
  text-decoration: none;
}

.home-brand-mark {
  width: 1.55rem;
  height: 1.55rem;
  flex: 0 0 auto;
  display: block;
  filter:
    drop-shadow(0 0 0.22rem rgba(255, 255, 255, 0.42))
    drop-shadow(0 0 0.7rem rgba(255, 255, 255, 0.12));
  animation: home-brand-mark-spin 20s linear infinite;
  animation-delay: var(--brand-spin-delay, 0ms);
  transform-origin: 50% 50%;
}

.home-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
}

.home-brand-name {
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.home-brand-primary {
  color: var(--text);
}

.home-brand-handle {
  color: var(--text-muted);
  font-weight: 500;
}

.home-brand-tagline {
  color: var(--text-muted);
  font-size: 0.74rem;
  letter-spacing: 0.03em;
}

.home-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.home-nav-group {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.home-nav-group-secondary {
  gap: 1rem;
}

.home-nav-separator {
  width: 1px;
  align-self: stretch;
  background: var(--text-border-soft);
}

.home-nav-link {
  color: var(--text-muted);
  font-size: 0.84rem;
  text-decoration: none;
}

.home-nav-link:hover,
.home-nav-link:focus-visible {
  color: var(--text);
}

.page-main {
  flex: 1 1 auto;
}

.home-main {
  padding: 0 1.25rem 4.5rem;
}

.home-landing-hero {
  padding: 4.25rem 0 3rem;
}

#writing,
#work,
#start,
#about,
#contact,
#methods,
#pgp,
#channel,
#notes,
#contact-primary-title,
#contact-openpgp-title,
#contact-guidance-title,
#contact-notes-title {
  scroll-margin-top: calc(var(--header-anchor-offset) + 0.9rem);
}

.home-landing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(16rem, 0.8fr);
  gap: 2rem;
  align-items: start;
}

.home-landing-name {
  margin: 0 0 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-landing-title {
  max-width: 13ch;
  margin: 0;
  color: var(--text);
  font-size: clamp(2.7rem, 7vw, 5.3rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.94;
  text-wrap: balance;
}

.home-landing-summary {
  max-width: 42rem;
  margin: 1.35rem 0 0;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.85;
}

.contact-summary {
  max-width: 46rem;
}

.contact-hero-copy {
  max-width: 52rem;
}

.contact-inline-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
}

.contact-inline-link:hover,
.contact-inline-link:focus-visible {
  color: var(--text);
}

.home-landing-aside {
  padding-top: 0.15rem;
  padding-left: 1.4rem;
  border-left: 1px solid var(--text-border-soft);
}

.home-landing-aside-label {
  margin: 0;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-landing-aside-copy {
  margin: 0.9rem 0 0;
  color: var(--text-muted);
  line-height: 1.85;
}

.home-landing-aside-list {
  margin: 0.9rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  line-height: 1.85;
}

.home-landing-aside-list li + li {
  margin-top: 0.2rem;
}

.home-landing-section {
  margin-top: 2.9rem;
  padding-top: 2.35rem;
  border-top: 1px solid var(--text-divider);
}

.home-section-header-landing {
  margin-bottom: 1.25rem;
}

.home-start-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.home-start-entry {
  min-width: 0;
  padding-top: 0;
}

.home-entry-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-entry-title,
.home-curation-title {
  margin: 0.5rem 0 0;
  color: var(--text);
  font-size: 1.18rem;
  font-weight: 650;
  line-height: 1.38;
  overflow-wrap: anywhere;
}

.home-entry-summary,
.home-curation-summary {
  max-width: 44rem;
  margin: 0.7rem 0 0;
  color: var(--text-muted);
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.home-entry-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.9rem;
  color: var(--text-muted);
  font-size: 0.84rem;
  text-decoration: none;
}

.home-entry-link:hover,
.home-entry-link:focus-visible {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1.5px;
}

.home-entry-link-prominent {
  min-height: 2.25rem;
  padding: 0 0.9rem;
  border: 1px solid var(--text-border-soft);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 72%, transparent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.home-entry-link-prominent:hover,
.home-entry-link-prominent:focus-visible {
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  text-decoration: none;
}

.home-curation-list {
  display: grid;
  border-top: 1px solid var(--text-divider);
}

.home-curation-item {
  min-width: 0;
  padding: 1.15rem 0 1.2rem;
  border-top: 1px solid var(--text-border-soft);
}

.home-curation-item-tail {
  padding-bottom: 0.3rem;
}

.home-curation-item:first-child {
  border-top: 0;
}

.home-curation-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin: 0;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-curation-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.9rem;
}

.home-support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(16rem, 0.75fr);
  gap: 2rem;
}

.contact-primary-grid {
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.8fr);
}

.home-support-block {
  min-width: 0;
  padding-top: 0;
}

.home-support-block + .home-support-block {
  padding-left: 1.6rem;
  border-left: 1px solid var(--text-border-soft);
}

.home-support-block-compact .home-section-title {
  max-width: 12ch;
}

.home-contact-links {
  margin-top: 1.1rem;
}

.contact-label {
  margin: 0;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-value {
  margin: 0.55rem 0 0;
  color: var(--text);
  font-size: 1.18rem;
  font-weight: 650;
  line-height: 1.38;
  overflow-wrap: anywhere;
}

.contact-fingerprint {
  margin: 0.7rem 0 0;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  line-height: 1.9;
  overflow-wrap: anywhere;
}

.contact-note-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.contact-note-list .home-curation-summary {
  margin: 0;
}

.home-curation-summary code {
  font-family: var(--font-mono);
}

.contact-note-list-compact {
  gap: 0.75rem;
}

.contact-command {
  margin: 0;
  padding: 0.95rem 1rem;
  border: 1px solid var(--text-border-soft);
  border-radius: 1rem;
  background: color-mix(in srgb, var(--surface) 78%, transparent);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.7;
  overflow-x: auto;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.contact-command code {
  font: inherit;
}

.home-hero,
.home-section {
  padding-top: 2rem;
}

.home-hero {
  padding-top: 3rem;
}

.home-hero-grid,
.home-split-section,
.home-card-grid {
  display: grid;
  gap: 1.25rem;
}

.home-hero-grid > *,
.home-split-section > *,
.home-card-grid > * {
  min-width: 0;
}

.home-hero-grid {
  grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.85fr);
  align-items: start;
}

.home-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}

.home-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.85rem;
  border: 1px solid var(--text-border-soft);
  border-radius: 999px;
  color: var(--text-muted);
  background: color-mix(in srgb, var(--surface) 80%, transparent);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.home-title {
  max-width: 12ch;
  margin: 0;
  color: var(--text);
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-wrap: balance;
}

.home-intro {
  max-width: 43rem;
  margin: 1.4rem 0 0;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.8;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.home-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0 1.25rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.home-action-primary {
  color: var(--bg);
  background: var(--text);
}

.home-action-primary:hover,
.home-action-primary:focus-visible {
  background: color-mix(in srgb, var(--text) 88%, #ffffff 12%);
}

.home-action-secondary {
  color: var(--text);
  border: 1px solid var(--text-border-soft);
  background: color-mix(in srgb, var(--surface) 72%, transparent);
}

.home-action-secondary:hover,
.home-action-secondary:focus-visible {
  background: color-mix(in srgb, var(--surface) 92%, transparent);
}

.home-focus-card,
.home-card,
.home-subcard {
  min-width: 0;
  border: 1px solid var(--text-border-soft);
  border-radius: 1.6rem;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 1.25rem 2.2rem rgba(10, 12, 16, 0.06);
}

.home-focus-card,
.home-card-large {
  padding: 1.45rem;
}

.home-card {
  padding: 1.35rem;
}

.home-card-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.home-section-kicker {
  color: var(--text-muted);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-section-title,
.home-card-title,
.home-subcard-title {
  margin: 0.42rem 0 0;
  color: var(--text);
  overflow-wrap: anywhere;
}

.home-section-title {
  font-size: clamp(1.55rem, 2vw, 2.3rem);
  font-weight: 650;
  letter-spacing: -0.03em;
}

.home-card-title {
  font-size: 1.18rem;
  font-weight: 650;
  line-height: 1.35;
}

.home-card-summary,
.home-subcard-body {
  margin: 0.85rem 0 0;
  color: var(--text-muted);
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.home-section-link {
  color: var(--text-muted);
  font-size: 0.84rem;
  text-decoration: none;
}

.home-section-link:hover,
.home-section-link:focus-visible {
  color: var(--text);
}

.home-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  color: var(--text-muted);
  font-size: 0.73rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-split-section {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.home-note-list,
.home-list-block,
.home-focus-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.1rem;
}

.home-note-item,
.home-list-block p,
.home-focus-item {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.home-note-item,
.home-list-block p {
  padding-top: 0.85rem;
  border-top: 1px solid var(--text-border-soft);
}

.home-note-item:first-child,
.home-list-block p:first-child {
  padding-top: 0;
  border-top: 0;
}

.home-focus-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.home-focus-mark {
  flex: 0 0 auto;
  width: 0.52rem;
  height: 0.52rem;
  margin-top: 0.55rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--text) 76%, transparent);
}

.home-subcard {
  padding: 1.1rem 1.15rem;
}

.home-subcard-title {
  font-size: 1rem;
  font-weight: 650;
}

.site-footer {
  flex: 0 0 auto;
  min-height: 3.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--text-border-soft);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(18px);
}

.site-footer-left {
  display: flex;
  align-items: center;
}

.site-footer-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.site-footer-copyright {
  padding-left: 2.5rem;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.site-footer-copyright:hover {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1.5px;
}

.site-footer-copyright:focus-visible {
  color: var(--text);
  border-radius: 0.35rem;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1.5px;
}

.site-footer-socials {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding-right: 3rem;
}

.site-footer-social-badge {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  border: 1px solid var(--text-border-soft);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, transparent 100%),
    color-mix(in srgb, var(--surface) 82%, var(--bg) 18%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.site-footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition:
    color 0.16s ease,
    border-color 0.16s ease;
}

.site-footer-social-placeholder {
  display: inline-block;
}

.site-footer-social-link:hover,
.site-footer-social-link:focus-visible {
  color: var(--text);
  border-color: color-mix(in srgb, var(--text) 22%, transparent);
}

.site-footer-social-link-signal {
  width: 1.5rem;
  height: 1.5rem;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.site-footer-social-icon {
  width: 2rem;
  height: 2rem;
  fill: currentColor;
}

.site-footer-social-icon-signal {
  width: 1.5rem;
  height: 1.5rem;
}

.site-footer-social-icon-mail {
  width: 1.6rem;
  height: 1.6rem;
}

@keyframes home-brand-mark-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-brand-mark {
    animation: none;
  }
}

@media (max-width: 640px) {
  html,
  body {
    overflow-x: hidden;
  }

  :root {
    --mobile-header-offset: 0px;
  }

  .site-footer {
    min-height: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0.9rem 0 1rem;
    overflow-x: hidden;
  }

  .site-footer-left,
  .site-footer-right {
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
    padding-inline: 1rem;
  }

  .site-footer-left {
    order: 2;
    max-width: 16rem;
    margin-inline: auto;
    margin-top: 0.75rem;
    border-top: 1px solid var(--text-divider);
    padding-top: 0.75rem;
  }

  .site-footer-socials {
    order: 1;
    width: 100%;
    justify-content: center;
    padding-right: 0;
  }

  .site-footer-right {
    order: 1;
    max-width: 16rem;
    margin-inline: auto;
    justify-content: center;
  }

  .site-footer-copyright {
    padding-left: 0;
    text-align: center;
  }

  .site-footer-social-badge {
    width: 2rem;
    height: 2rem;
  }

  .site-footer-social-icon {
    width: 2rem;
    height: 2rem;
  }

  .site-footer-social-link-signal,
  .site-footer-social-icon-signal {
    width: 2rem;
    height: 2rem;
  }

  .site-footer-social-icon-mail {
    width: 1.8rem;
    height: 1.8rem;
  }

  .home-header-inner,
  .home-main {
    width: 100%;
  }

  .home-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
  }

  .home-header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.95rem 1rem;
  }

  .home-brand {
    gap: 0.6rem;
  }

  .home-brand-mark {
    width: 1.4rem;
    height: 1.4rem;
  }

  .home-nav {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    gap: 0.8rem;
  }

  .home-nav-group {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem 1rem;
  }

  .home-nav-group-secondary {
    width: 100%;
    padding-top: 0.8rem;
    border-top: 1px solid var(--text-border-soft);
  }

  .home-nav-separator {
    display: none;
  }

  .home-main {
    padding: calc(var(--mobile-header-offset) + 0.75rem) 1rem 3.5rem;
  }

  .home-landing-hero {
    padding: 2.35rem 0 2.25rem;
  }

  .home-landing-grid,
  .home-start-grid,
  .home-support-grid,
  .contact-primary-grid {
    grid-template-columns: 1fr;
  }

  .home-landing-title {
    max-width: 11ch;
  }

  .home-landing-aside {
    max-width: 32rem;
    padding-left: 0;
    padding-top: 1rem;
    border-left: 0;
    border-top: 1px solid var(--text-border-soft);
  }

  .home-start-entry {
    padding-top: 0.95rem;
    border-top: 1px solid var(--text-border-soft);
  }

  .home-start-entry:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .home-support-block + .home-support-block {
    padding-left: 0;
    padding-top: 1rem;
    border-left: 0;
    border-top: 1px solid var(--text-border-soft);
  }

  .home-hero {
    padding-top: 2rem;
  }

  .home-hero-grid,
  .home-split-section,
  .home-card-grid-three {
    grid-template-columns: 1fr;
  }

  .home-section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-focus-card,
  .home-card,
  .home-card-large,
  .home-subcard {
    padding: 1.1rem;
  }
}
