:root {
  --bg: #f7f8f5;
  --surface: #ffffff;
  --surface-strong: #101418;
  --text: #182026;
  --muted: #5d6975;
  --line: #dfe5df;
  --accent: #0f766e;
  --accent-strong: #0b534e;
  --accent-soft: #d9f0ec;
  --gold: #b8872c;
  --code: #111827;
  --shadow: 0 22px 60px rgba(26, 36, 45, 0.11);
  --radius: 8px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 48px);
  border-bottom: 1px solid rgba(223, 229, 223, 0.8);
  background: rgba(247, 248, 245, 0.88);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-strong);
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a:hover,
.profile-links a:hover {
  color: var(--accent-strong);
}

.header-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-weight: 700;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.hero {
  display: grid;
  min-height: calc(100vh - 74px);
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: clamp(36px, 6vw, 80px);
  padding-top: 56px;
  padding-bottom: 64px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: 5.65rem;
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 3.1rem;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.hero-lede {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.22rem;
}

.hero-actions,
.profile-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero-actions {
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
}

.button.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 26px rgba(15, 118, 110, 0.2);
}

.button.primary:hover {
  background: var(--accent-strong);
}

.button.secondary {
  border: 1px solid var(--line);
  background: var(--surface);
}

.profile-links {
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 700;
}

.profile-links a {
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-decoration-color: rgba(15, 118, 110, 0.28);
  text-underline-offset: 5px;
}

.hero-panel {
  min-width: 0;
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 16px;
}

.availability-card,
.system-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.availability-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  color: var(--accent-strong);
  font-weight: 800;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #24b47e;
  box-shadow: 0 0 0 6px rgba(36, 180, 126, 0.16);
}

.system-card {
  min-width: 0;
  overflow: hidden;
}

.system-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.terminal-window {
  max-width: calc(100% - 36px);
  margin: 18px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--code);
  color: #d1fae5;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.88rem;
  overflow-x: auto;
}

.terminal-window p {
  margin: 0;
  white-space: nowrap;
}

.terminal-window p + p {
  margin-top: 10px;
}

.terminal-window span {
  color: #fbbf24;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.metric-grid div {
  min-height: 120px;
  padding: 18px;
  border-top: 1px solid var(--line);
}

.metric-grid div:nth-child(1),
.metric-grid div:nth-child(2) {
  border-top: 0;
}

.metric-grid div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.metric-grid strong {
  display: block;
  margin-bottom: 6px;
  font-size: 2rem;
  line-height: 1;
}

.metric-grid span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.intro-band {
  width: 100%;
  max-width: none;
  padding: 52px max(20px, calc((100vw - var(--max)) / 2));
  background: var(--surface-strong);
  color: #f8fafc;
}

.intro-band p {
  max-width: 980px;
  margin: 0 auto;
  font-size: 1.75rem;
  line-height: 1.35;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card,
.post-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.service-card {
  min-height: 275px;
  padding: 24px;
}

.service-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 900;
}

.service-card p,
.experience-copy p,
.reason-list p,
.reason-list li,
.post-card p,
.contact-section p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.experience-copy,
.reason-list {
  font-size: 1.05rem;
}

.impact-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-top: 0;
}

.impact-section article {
  padding: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.impact-section article + article {
  border-left: 1px solid var(--line);
}

.impact-section strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.85rem;
  text-transform: uppercase;
}

.impact-section p {
  margin: 0;
  color: var(--muted);
}

.skills-section {
  padding-top: 36px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.skill-group {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-list span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  background: #fbfcfa;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.reason-list ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.reason-list li {
  position: relative;
  padding-left: 28px;
}

.reason-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.writing-section {
  border-top: 1px solid var(--line);
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.post-card {
  min-height: 230px;
  padding: 24px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.post-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.post-card span {
  display: block;
  margin-bottom: 46px;
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.post-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
  max-width: none;
  padding: 72px max(20px, calc((100vw - var(--max)) / 2));
  background: var(--surface-strong);
  color: #fff;
}

.contact-section div {
  max-width: 760px;
}

.contact-section h2 {
  margin-bottom: 12px;
}

.contact-section p {
  margin: 0;
  color: #cbd5e1;
}

.internal-hero,
.article-hero {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.internal-hero {
  padding: 88px 0 44px;
}

.internal-hero div {
  max-width: 780px;
}

.internal-hero h1,
.article-hero h1 {
  font-size: 4.2rem;
  line-height: 1;
}

.internal-hero p,
.article-hero p {
  color: var(--muted);
  font-size: 1.15rem;
}

.content-shell {
  display: grid;
  width: min(var(--max), calc(100% - 40px));
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: start;
  margin: 0 auto;
  padding: 34px 0 92px;
}

.archive-feed {
  display: grid;
  gap: 16px;
}

.archive-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.archive-card.featured-post {
  border-color: rgba(15, 118, 110, 0.3);
  box-shadow: var(--shadow);
}

.archive-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.archive-meta span:first-child {
  color: var(--accent-strong);
}

.archive-card h2 {
  margin-bottom: 12px;
  font-size: 1.85rem;
  line-height: 1.14;
}

.archive-card p {
  max-width: 720px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent-strong);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(15, 118, 110, 0.24);
  text-underline-offset: 5px;
}

.sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
}

.widget {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.widget h2 {
  margin-bottom: 12px;
  font-size: 1.1rem;
  line-height: 1.2;
}

.widget p {
  color: var(--muted);
  font-size: 0.95rem;
}

.contractor-widget {
  background: var(--surface-strong);
  color: #fff;
}

.contractor-widget p {
  color: #cbd5e1;
}

.widget-kicker {
  margin-bottom: 8px;
  color: #99f6e4;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.stacked-form,
.search-form {
  display: grid;
  gap: 10px;
}

.stacked-form label {
  display: grid;
  gap: 7px;
}

.stacked-form label span,
.screen-reader-text {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.stacked-form input,
.search-form input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 12px;
  background: #fbfcfa;
  color: var(--text);
  font: inherit;
}

.stacked-form button,
.search-form button {
  min-height: 44px;
  border: 0;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.widget-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.widget-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
}

.widget-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.widget-list a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.widget-list.compact a {
  line-height: 1.35;
}

.widget-list a:hover {
  color: var(--accent-strong);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--accent-strong);
}

.article-hero {
  padding: 64px 0 24px;
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: end;
}

.article-hero h1 {
  max-width: 820px;
  margin-bottom: 18px;
}

.article-summary {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.article-summary strong {
  display: block;
  margin: 12px 0;
  font-size: 1.05rem;
}

.article-summary ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.entry-content {
  min-width: 0;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.page-shell {
  display: block;
  max-width: 900px;
}

.entry-content .lead {
  color: var(--text);
  font-size: 1.24rem;
  line-height: 1.65;
}

.entry-content h2 {
  margin: 46px 0 16px;
  font-size: 2rem;
  line-height: 1.15;
}

.entry-content p,
.entry-content li {
  color: var(--muted);
  font-size: 1.03rem;
}

.callout {
  margin: 34px 0;
  padding: 22px;
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  background: var(--accent-soft);
}

.callout p {
  margin: 8px 0 0;
  color: var(--accent-strong);
}

.code-block {
  margin: 28px 0;
  overflow: hidden;
  border: 1px solid #243244;
  border-radius: var(--radius);
  background: var(--code);
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.16);
}

.code-block figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px;
  border-bottom: 1px solid #263244;
  color: #cbd5e1;
  font-size: 0.82rem;
  font-weight: 800;
}

.code-block figcaption span:first-child {
  color: #99f6e4;
}

.code-block pre {
  margin: 0;
  overflow-x: auto;
  padding: 20px;
}

.code-block code {
  color: #e5edf5;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.9rem;
  line-height: 1.7;
}

.post-navigation {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-top: 48px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.post-navigation a {
  color: var(--accent-strong);
  font-weight: 800;
}

.table-of-contents ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.table-of-contents a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.widget .wp-block-search {
  display: grid;
  gap: 10px;
}

.widget .wp-block-search__label {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.2;
}

.widget .wp-block-search__inside-wrapper {
  display: grid;
  gap: 10px;
}

.widget .wp-block-search__input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 12px;
  background: #fbfcfa;
  color: var(--text);
  font: inherit;
}

.widget .wp-block-search__button {
  min-height: 44px;
  margin: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.widget .wp-block-latest-posts,
.widget .wp-block-categories,
.widget .wp-block-archives {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.widget .wp-block-latest-posts li,
.widget .wp-block-categories li,
.widget .wp-block-archives li {
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
}

.widget .wp-block-latest-posts li:last-child,
.widget .wp-block-categories li:last-child,
.widget .wp-block-archives li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.widget .wp-block-latest-posts a,
.widget .wp-block-categories a,
.widget .wp-block-archives a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 26px clamp(20px, 4vw, 48px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-footer p {
  margin: 0;
}

.site-footer a,
.page-numbers {
  color: var(--accent-strong);
}

.navigation.pagination {
  margin-top: 24px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-numbers {
  display: inline-flex;
  min-width: 38px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-weight: 800;
}

.page-numbers.current {
  background: var(--accent);
  color: #fff;
}

.entry-content ul,
.entry-content ol {
  color: var(--muted);
  font-size: 1.03rem;
}

.entry-content a {
  color: var(--accent-strong);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(15, 118, 110, 0.24);
  text-underline-offset: 4px;
}

.entry-content blockquote {
  margin: 32px 0;
  padding: 22px;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: #fbfcfa;
  color: var(--muted);
}

.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.entry-content table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.entry-content th,
.entry-content td {
  padding: 12px;
  border: 1px solid var(--line);
}

.entry-content pre,
.wp-block-code {
  overflow: hidden;
  border: 1px solid #243244;
  border-radius: var(--radius);
  background: var(--code);
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.16);
}

.entry-content pre {
  overflow-x: auto;
  padding: 20px;
}

.entry-content pre code,
.wp-block-code code {
  color: #e5edf5;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.9rem;
  line-height: 1.7;
}

.wp-block-code {
  padding: 20px;
}

.wp-block-code code {
  white-space: pre;
}

.wp-block-quote {
  margin: 32px 0;
}

.wp-block-image {
  margin: 32px 0;
}

.wp-caption-text,
.wp-block-image figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.gallery-caption,
.bypostauthor {
  display: block;
}

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

  .hero,
  .split-section,
  .content-shell,
  .article-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .service-grid,
  .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-section {
    grid-template-columns: 1fr;
  }

  .impact-section article + article {
    border-left: 0;
  }

  h1 {
    font-size: 4.3rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .intro-band p {
    font-size: 1.45rem;
  }

  .sidebar {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-cta {
    min-height: 38px;
  }

  .section {
    width: min(100% - 32px, var(--max));
    padding: 64px 0;
  }

  h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2rem;
  }

  .internal-hero,
  .article-hero,
  .content-shell {
    width: min(100% - 32px, var(--max));
  }

  .internal-hero {
    padding: 58px 0 22px;
  }

  .article-hero {
    padding: 44px 0 10px;
  }

  .internal-hero h1,
  .article-hero h1 {
    font-size: 2.85rem;
  }

  .content-shell {
    padding-bottom: 64px;
  }

  .archive-card,
  .entry-content,
  .widget {
    padding: 22px;
  }

  .archive-card h2 {
    font-size: 1.55rem;
  }

  .entry-content h2 {
    font-size: 1.6rem;
  }

  .code-block pre {
    padding: 16px;
  }

  .hero {
    gap: 36px;
    padding-top: 42px;
  }

  .hero-actions,
  .button,
  .contact-section {
    width: 100%;
  }

  .button {
    padding-inline: 18px;
  }

  .hero-panel {
    min-width: 0;
  }

  .metric-grid,
  .service-grid,
  .skills-grid,
  .post-grid {
    grid-template-columns: 1fr;
  }

  .metric-grid div,
  .metric-grid div:nth-child(odd) {
    border-right: 0;
  }

  .metric-grid div:nth-child(2) {
    border-top: 1px solid var(--line);
  }

  .terminal-window {
    font-size: 0.78rem;
  }

  .intro-band {
    width: 100%;
    max-width: none;
    padding: 40px 18px;
  }

  .contact-section {
    flex-direction: column;
    align-items: flex-start;
    padding: 56px 18px;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 2.62rem;
    line-height: 1.02;
  }

  .hero-lede {
    font-size: 1.08rem;
  }

  .profile-links {
    gap: 10px 14px;
    font-size: 0.92rem;
  }

  .profile-links a:last-child {
    flex-basis: 100%;
  }

  .terminal-window {
    overflow-x: hidden;
    font-size: 0.72rem;
  }

  .terminal-window p {
    white-space: normal;
  }

  .internal-hero h1,
  .article-hero h1 {
    font-size: 2.45rem;
  }

  .entry-content {
    padding: 18px;
  }

  .code-block code {
    font-size: 0.78rem;
  }
}
