/*
 * Offline fallback for the Kahuk template.
 * The markup is written with Tailwind utilities; this small stylesheet keeps
 * the downloaded demo usable before Tailwind is compiled or loaded by CDN.
 */
:root {
  --ink: #111827;
  --brand-50: #f1faf9;
  --brand-100: #d9f1ee;
  --brand-200: #bde7e3;
  --brand-300: #8fd8d2;
  --brand-400: #59bdb7;
  --brand-500: #319e99;
  --brand-600: #167f7c;
  --brand-700: #0b6b6b;
  --brand-800: #075757;
  --brand-900: #073b4c;
  --brand-950: #03272f;
  --ai-blue: #2563eb;
  --ai-cyan: #06b6d4;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-900: #0f172a;
}

*, *::before, *::after { box-sizing: border-box; }
html { line-height: 1.5; -webkit-text-size-adjust: 100%; font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
body { margin: 0; background: #fff; color: var(--slate-900); }
button, input { font: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
img { max-width: 100%; height: auto; }
dialog { padding: 0; }

/* Shared content wrapper: 1280px maximum width. */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* Core utility subset */
.scroll-smooth { scroll-behavior: smooth; }
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.relative { position: relative; }
.absolute { position: absolute; }
.pointer-events-none { pointer-events: none; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.shrink-0 { flex-shrink: 0; }
.w-full { width: 100%; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.min-h-20 { min-height: 5rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-7xl { max-width: 80rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: .25rem; }
.mt-2 { margin-top: .5rem; }
.mt-3 { margin-top: .75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-8 { margin-bottom: 2rem; }
.mr-2 { margin-right: .5rem; }
.p-5 { padding: 1.25rem; }
.p-8 { padding: 2rem; }
.px-3 { padding-left: .75rem; padding-right: .75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.py-1 { padding-top: .25rem; padding-bottom: .25rem; }
.py-3 { padding-top: .75rem; padding-bottom: .75rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.pt-3 { padding-top: .75rem; }
.pt-10 { padding-top: 2.5rem; }
.pb-5 { padding-bottom: 1.25rem; }
.pb-16 { padding-bottom: 4rem; }
.pb-20 { padding-bottom: 5rem; }
.gap-1 { gap: .25rem; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-x-6 { column-gap: 1.5rem; }
.gap-y-2 { row-gap: .5rem; }
.space-y-2 > * + * { margin-top: .5rem; }
.left-4 { left: 1rem; }
.top-1\/2 { top: 50%; }
.-translate-y-1\/2 { transform: translateY(-50%); }
.object-cover { object-fit: cover; }
.aspect-\[5\/3\] { aspect-ratio: 5/3; }
.rounded-lg { border-radius: .5rem; }
.rounded-xl { border-radius: .75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.border-t { border-top: 1px solid; }
.border-b { border-bottom: 1px solid; }
.border-slate-100 { border-color: var(--slate-100); }
.border-white\/10 { border-color: rgba(255,255,255,.1); }
.ring-1 { box-shadow: 0 0 0 1px rgba(15,23,42,.08); }
.ring-slate-200 { box-shadow: 0 0 0 1px var(--slate-200); }
.ring-white\/20 { box-shadow: 0 0 0 1px rgba(255,255,255,.2); }
.shadow-card { box-shadow: 0 16px 45px -30px rgba(7,59,76,.38); }
.bg-white { background-color: #fff; }
.bg-slate-50 { background-color: var(--slate-50); }
.bg-brand-100 { background-color: var(--brand-100); }
.bg-white\/10 { background-color: rgba(255,255,255,.1); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--brand-900), var(--brand-800), var(--brand-700)); }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, rgba(241,250,249,.82), #fff); }
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-xs { font-size: .75rem; line-height: 1rem; }
.text-sm { font-size: .875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }
.leading-snug { line-height: 1.375; }
.leading-6 { line-height: 1.5rem; }
.leading-7 { line-height: 1.75rem; }
.leading-8 { line-height: 2rem; }
.tracking-tight { letter-spacing: -.025em; }
.tracking-\[0\.18em\] { letter-spacing: .18em; }
.uppercase { text-transform: uppercase; }
.text-white { color: #fff; }
.text-ink { color: var(--ink); }
.text-brand-700 { color: var(--brand-700); }
.text-slate-400 { color: var(--slate-400); }
.text-slate-500 { color: var(--slate-500); }
.text-slate-600 { color: var(--slate-600); }
.text-slate-900 { color: var(--slate-900); }
.text-emerald-200 { color: #a7f3d0; }
.text-white\/55 { color: rgba(255,255,255,.55); }
.text-white\/65 { color: rgba(255,255,255,.65); }
.text-white\/70 { color: rgba(255,255,255,.70); }
.text-white\/75 { color: rgba(255,255,255,.75); }
.text-white\/80 { color: rgba(255,255,255,.80); }
.transition { transition: color .2s, background-color .2s, border-color .2s, box-shadow .2s, transform .2s; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Reusable components */
.skip-link {
  position: fixed;
  z-index: 100;
  top: .75rem;
  left: .75rem;
  transform: translateY(-150%);
  border-radius: .65rem;
  background: #fff;
  color: var(--ink);
  padding: .65rem 1rem;
  font-weight: 800;
  box-shadow: 0 8px 30px rgba(0,0,0,.18);
}
.skip-link:focus { transform: translateY(0); }
.site-header { position: relative; z-index: 20; }
.nav-link {
  display: inline-flex;
  align-items: center;
  border-radius: .65rem;
  padding: .6rem .9rem;
  color: rgba(255,255,255,.75);
  font-size: .875rem;
  font-weight: 700;
  transition: .2s ease;
}
.nav-link:hover, .nav-link.is-active { background: rgba(255,255,255,.1); color: #fff; }
.search-button,
.mobile-menu-button {
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(11,107,107,.96);
  color: #fff;
  padding: .7rem 1.1rem;
  font-size: .875rem;
  font-weight: 800;
  box-shadow: 0 12px 24px -18px rgba(0,0,0,.7);
}
.mobile-menu-button { width: 2.75rem; height: 2.75rem; padding: 0; border-radius: .8rem; background: rgba(255,255,255,.1); }
.mobile-nav-link { border-radius: .7rem; padding: .8rem .9rem; color: rgba(255,255,255,.8); font-weight: 700; }
.mobile-nav-link:hover { background: rgba(255,255,255,.08); color: #fff; }
.eyebrow { display: inline-flex; font-size: .75rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--brand-700); }
.primary-button, .secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: .8rem;
  padding: .85rem 1.2rem;
  font-size: .9rem;
  font-weight: 800;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.primary-button { background: var(--brand-600); color: #fff; box-shadow: 0 16px 28px -18px rgba(11,107,107,.72); }
.primary-button:hover { transform: translateY(-2px); background: var(--brand-700); box-shadow: 0 22px 35px -18px rgba(11,107,107,.62); }
.secondary-button { background: #fff; color: var(--ink); box-shadow: 0 0 0 1px var(--slate-200); }
.secondary-button:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -22px rgba(7,59,76,.38), 0 0 0 1px #cbd5e1; }
.hero-panel { border-radius: 1.5rem; background: rgba(255,255,255,.65); padding: 1.25rem; box-shadow: 0 0 0 1px rgba(226,232,240,.85), 0 20px 60px -42px rgba(11,107,107,.35); backdrop-filter: blur(12px); }
.topic-chip { border: 1px solid var(--slate-200); border-radius: 999px; background: #fff; color: var(--slate-600); padding: .55rem .9rem; font-size: .8rem; font-weight: 800; transition: .2s; }
.topic-chip:hover, .topic-chip.is-selected { border-color: var(--brand-600); background: var(--brand-600); color: #fff; }
.post-card { overflow: hidden; border-radius: 1.5rem; background: var(--slate-50); box-shadow: 0 0 0 1px rgba(226,232,240,.85), 0 16px 45px -30px rgba(7,59,76,.38); transition: transform .25s, box-shadow .25s, background .25s; }
.post-card:hover { transform: translateY(-4px); background: #fff; box-shadow: 0 0 0 1px rgba(226,232,240,.9), 0 24px 60px -30px rgba(11,107,107,.38); }
.post-image-link { display: block; overflow: hidden; margin: .45rem; border-radius: 1.15rem; background: var(--brand-100); }
.post-image { width: 100%; aspect-ratio: 5/3; object-fit: cover; transition: transform .35s ease; }
.post-card:hover .post-image { transform: scale(1.025); }
.post-card-body { display: flex; min-height: 16.6rem; flex-direction: column; padding: 1.1rem 1.35rem 1.35rem; }
.post-meta-row { display: flex; align-items: center; justify-content: space-between; gap: .75rem; color: var(--slate-500); font-size: .75rem; }
.category-label { display: inline-flex; align-items: center; border-radius: 999px; background: var(--brand-100); color: var(--brand-700); padding: .35rem .6rem; font-size: .68rem; line-height: 1; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.post-title { margin: 1rem 0 0; color: var(--ink); font-size: 1.15rem; line-height: 1.42; font-weight: 900; letter-spacing: -.015em; }
.post-title a:hover { color: var(--brand-700); }
.post-excerpt { margin: .75rem 0 0; color: var(--slate-600); font-size: .9rem; line-height: 1.65; }
.read-more { display: inline-flex; align-items: center; gap: .45rem; margin-top: auto; padding-top: 1.25rem; border-top: 1px solid var(--slate-200); color: var(--brand-600); font-size: .85rem; font-weight: 900; }
.read-more span { transition: transform .2s; }
.read-more:hover span { transform: translateX(4px); }
.pagination-button { display: inline-flex; min-width: 2.25rem; height: 2.25rem; align-items: center; justify-content: center; border-radius: .65rem; background: var(--slate-50); color: var(--slate-600); font-size: .85rem; font-weight: 900; box-shadow: 0 0 0 1px var(--slate-100); }
.pagination-button:hover, .pagination-button.is-current { background: var(--brand-600); color: #fff; box-shadow: none; }
.newsletter-panel { overflow: hidden; border-radius: 1.75rem; background: radial-gradient(circle at 90% 0%, rgba(6,182,212,.62), transparent 38%), linear-gradient(135deg, var(--brand-900), var(--brand-700)); padding: 2rem; box-shadow: 0 28px 70px -42px rgba(7,59,76,.58); }
.newsletter-input { min-width: 0; flex: 1; border: 1px solid rgba(255,255,255,.18); border-radius: .8rem; background: rgba(255,255,255,.1); color: #fff; padding: .9rem 1rem; outline: none; }
.newsletter-input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-input:focus { border-color: rgba(255,255,255,.6); box-shadow: 0 0 0 3px rgba(255,255,255,.12); }
.newsletter-button { border: 0; border-radius: .8rem; background: #fff; color: var(--ink); padding: .9rem 1.25rem; font-weight: 900; }
.newsletter-button:hover { background: var(--brand-50); }
.search-dialog { width: min(92vw, 42rem); border: 0; border-radius: 1.5rem; background: transparent; }
.search-dialog::backdrop { background: rgba(3,39,47,.78); backdrop-filter: blur(5px); }
.search-dialog-panel { border-radius: 1.5rem; background: #fff; padding: 1.5rem; box-shadow: 0 30px 80px -30px rgba(0,0,0,.5); }
.icon-button { display: inline-flex; width: 2.5rem; height: 2.5rem; align-items: center; justify-content: center; border: 0; border-radius: .75rem; background: var(--slate-100); color: var(--slate-600); font-size: 1.4rem; }
.search-input { width: 100%; border: 1px solid var(--slate-200); border-radius: .85rem; background: #fff; padding: .9rem 1rem .9rem 3rem; color: var(--ink); outline: none; }
.search-input:focus { border-color: var(--brand-500); box-shadow: 0 0 0 3px rgba(49,158,153,.16); }
.article-prose { min-width: 0; color: #334155; font-size: 1.05rem; line-height: 1.85; }
.article-prose .lead { color: var(--slate-600); font-size: 1.25rem; line-height: 1.75; }
.article-prose h2 { margin: 2.6rem 0 1rem; color: var(--ink); font-size: 2rem; line-height: 1.2; font-weight: 900; letter-spacing: -.025em; }
.article-prose h3 { margin: 2rem 0 .75rem; color: var(--ink); font-size: 1.4rem; line-height: 1.3; font-weight: 900; }
.article-prose p { margin: 1.15rem 0; }
.article-prose ul, .article-prose ol { margin: 1.25rem 0; padding-left: 1.35rem; }
.article-prose li { margin: .55rem 0; padding-left: .35rem; }
.article-prose ul li::marker { color: var(--brand-600); }
.article-prose ol li::marker { color: var(--brand-700); font-weight: 900; }
.article-callout { margin: 2rem 0; border-left: 4px solid var(--brand-600); border-radius: 0 1rem 1rem 0; background: var(--brand-50); padding: 1.1rem 1.25rem; color: var(--brand-900); }

/* Minimal hover/focus parity */
.hover\:text-white:hover { color: #fff; }
.hover\:text-brand-700:hover { color: var(--brand-700); }
.hover\:text-brand-900:hover { color: var(--brand-900); }
.hover\:-translate-y-1:hover { transform: translateY(-.25rem); }
.hover\:shadow-lift:hover { box-shadow: 0 24px 60px -30px rgba(11,107,107,.38); }
.group:hover .group-hover\:text-brand-700 { color: var(--brand-700); }
.focus\:outline-none:focus { outline: none; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px rgba(255,255,255,.7); }

@media (min-width: 640px) {
  .container { padding-inline: 2rem; }
  .sm\:hidden { display: none; }
  .sm\:inline-flex { display: inline-flex; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:items-end { align-items: flex-end; }
  .sm\:justify-between { justify-content: space-between; }
  .sm\:text-right { text-align: right; }
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1; }
  .sm\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .sm\:py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .sm\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .sm\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .sm\:pb-20 { padding-bottom: 5rem; }
  .newsletter-panel { padding: 3rem; }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-\[1fr_auto\] { grid-template-columns: 1fr auto; }
  .md\:items-center { align-items: center; }
}

@media (min-width: 1024px) {
  .container { padding-inline: 2.5rem; }
  .lg\:hidden { display: none; }
  .lg\:flex { display: flex; }
  .lg\:grid-cols-\[1\.2fr_0\.8fr\] { grid-template-columns: 1.2fr .8fr; }
  .lg\:grid-cols-\[minmax\(0\,1fr\)_220px\] { grid-template-columns: minmax(0,1fr) 220px; }
  .lg\:px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
  .lg\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .lg\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .lg\:sticky { position: sticky; }
  .lg\:top-8 { top: 2rem; }
  .lg\:self-start { align-self: flex-start; }
}

@media (min-width: 1280px) {
  .xl\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ========================================================================
   WordPress theme layer
   ======================================================================== */
body {
  min-height: 100vh;
  background: #fff;
  color: var(--slate-900);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.admin-bar .site-header { top: 0; }

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus,
.skip-link:focus {
  position: fixed !important;
  z-index: 100000;
  top: .75rem;
  left: .75rem;
  width: auto;
  height: auto;
  clip: auto;
  overflow: visible;
  padding: .75rem 1rem;
  border-radius: .5rem;
  background: #fff;
  color: var(--brand-900);
  font-weight: 800;
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
}

:focus-visible {
  outline: 3px solid rgba(6, 182, 212, .55);
  outline-offset: 3px;
}

.site-header {
  position: relative;
  z-index: 50;
  background: linear-gradient(90deg, var(--brand-900), var(--brand-800), var(--brand-700));
  color: #fff;
}

.site-header-inner {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-branding,
.site-brand-link,
.custom-logo-wrap,
.custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.site-brand-link {
  gap: .75rem;
  border-radius: .6rem;
}

.site-brand-mark {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: .75rem;
  background: rgba(255,255,255,.1);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.2);
}

.site-title {
  color: #fff;
  font-size: clamp(1.65rem, 3vw, 1.9rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.035em;
}

.custom-logo {
  display: block;
  width: auto;
  max-width: min(240px, 48vw);
  max-height: 54px;
}

.primary-navigation { display: none; }
.primary-menu,
.mobile-primary-menu,
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.primary-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.primary-menu li { position: relative; }
.primary-menu .sub-menu {
  position: absolute;
  z-index: 60;
  top: calc(100% + .5rem);
  left: 0;
  display: none;
  min-width: 14rem;
  padding: .5rem;
  margin: 0;
  list-style: none;
  border-radius: .9rem;
  background: #fff;
  color: var(--slate-900);
  box-shadow: 0 20px 55px -24px rgba(3,39,47,.5);
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu { display: block; }
.primary-menu .sub-menu .nav-link {
  display: block;
  color: var(--slate-600);
}
.primary-menu .sub-menu .nav-link:hover,
.primary-menu .sub-menu .current-menu-item > .nav-link {
  background: var(--brand-50);
  color: var(--brand-800);
}

.primary-menu .current-menu-item > .nav-link,
.primary-menu .current-menu-ancestor > .nav-link,
.primary-menu .current_page_item > .nav-link,
.primary-menu .current_page_ancestor > .nav-link {
  background: rgba(255,255,255,.1);
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.desktop-search-button { display: none; }
.mobile-menu-button {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: .75rem;
  background: rgba(255,255,255,.08);
  color: #fff;
}

.mobile-menu {
  border-top: 1px solid rgba(255,255,255,.1);
  background: rgba(3,39,47,.16);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu-inner { padding-top: .75rem; padding-bottom: 1.25rem; }
.mobile-primary-menu { display: grid; gap: .25rem; }
.mobile-primary-menu .sub-menu {
  display: grid;
  gap: .25rem;
  padding: .25rem 0 .25rem 1rem;
  margin: 0;
  list-style: none;
}
.mobile-menu .nav-link,
.mobile-search-link {
  display: flex;
  width: 100%;
  align-items: center;
  gap: .5rem;
  border: 0;
  border-radius: .7rem;
  background: transparent;
  color: rgba(255,255,255,.82);
  padding: .8rem .9rem;
  text-align: left;
  font-weight: 750;
}
.mobile-menu .nav-link:hover,
.mobile-menu .current-menu-item > .nav-link,
.mobile-search-link:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
}

/* Search dialog and forms. */
.search-dialog { max-height: calc(100vh - 2rem); }
.search-dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.search-dialog-eyebrow {
  margin: 0;
  color: var(--brand-700);
  font-size: .72rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.search-dialog-title {
  margin: .4rem 0 0;
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -.025em;
}
.search-dialog-form { margin-top: 1.5rem; }
.search-form {
  display: flex;
  align-items: stretch;
  gap: .65rem;
}
.search-field-wrap {
  position: relative;
  min-width: 0;
  flex: 1;
}
.search-field-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--slate-400);
  pointer-events: none;
}
.search-field {
  width: 100%;
  min-height: 3rem;
  border: 1px solid var(--slate-200);
  border-radius: .8rem;
  background: #fff;
  color: var(--ink);
  padding: .8rem 1rem .8rem 2.9rem;
  outline: 0;
}
.search-field:focus {
  border-color: var(--brand-500);
  box-shadow: 0 0 0 3px rgba(49,158,153,.16);
}
.search-submit {
  border: 0;
  border-radius: .8rem;
  background: var(--brand-700);
  color: #fff;
  padding: .75rem 1.15rem;
  font-weight: 850;
}
.search-submit:hover { background: var(--brand-800); }

/* Homepage. */
.home-hero {
  border-bottom: 1px solid var(--slate-100);
  background: linear-gradient(180deg, rgba(241,250,249,.8), #fff);
}
.home-hero-grid {
  display: grid;
  align-items: center;
  gap: 2.5rem;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.home-hero-title {
  max-width: 50rem;
  margin: 1.25rem 0 0;
  color: var(--ink);
  font-size: clamp(2.45rem, 7vw, 3.9rem);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -.045em;
}
.home-hero-text {
  max-width: 43rem;
  margin: 1.5rem 0 0;
  color: var(--slate-600);
  font-size: 1.08rem;
  line-height: 1.75;
}
.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
}
.hero-panel { padding: 1.25rem; }
.hero-panel-label {
  margin: 0;
  color: var(--brand-700);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-featured-link {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 1.25rem;
  border-radius: 1rem;
  background: #fff;
  padding: 1.25rem;
  box-shadow: 0 0 0 1px var(--slate-200);
  transition: transform .2s, box-shadow .2s;
}
.hero-featured-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -30px rgba(11,107,107,.38);
}
.hero-featured-icon {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  flex: 0 0 3rem;
  align-items: center;
  justify-content: center;
  border-radius: .75rem;
  background: var(--brand-100);
  color: var(--brand-700);
}
.hero-featured-title {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.45;
  font-weight: 900;
}
.hero-featured-link:hover .hero-featured-title { color: var(--brand-700); }
.hero-featured-excerpt {
  display: block;
  margin-top: .5rem;
  color: var(--slate-600);
  font-size: .86rem;
  line-height: 1.55;
}
.topics-section { padding-top: 2.5rem; }
.topic-filter-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
}
.topic-filter-label {
  margin-right: .5rem;
  color: var(--slate-500);
  font-size: .86rem;
  font-weight: 800;
}
.latest-section-inner,
.archive-content { padding-top: 3rem; padding-bottom: 4rem; }
.section-heading-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.section-title {
  margin: .75rem 0 0;
  color: var(--ink);
  font-size: clamp(1.9rem, 5vw, 2.35rem);
  line-height: 1.15;
  font-weight: 950;
  letter-spacing: -.035em;
}
.section-description {
  max-width: 36rem;
  margin: 0;
  color: var(--slate-600);
  font-size: .92rem;
  line-height: 1.65;
}
.post-grid {
  display: grid;
  gap: 1.5rem;
}
.post-card[hidden] { display: none; }
.post-card { display: flex; flex-direction: column; }
.post-image-link { display: block; overflow: hidden; background: var(--brand-50); }
.post-image { width: 100%; aspect-ratio: 5 / 3; object-fit: cover; }
.post-title { font-size: 1.1rem; }
.filter-empty-state {
  margin: 2rem 0 0;
  border-radius: 1rem;
  background: var(--slate-50);
  color: var(--slate-600);
  padding: 2rem;
  text-align: center;
}
.theme-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-top: 3rem;
}
.theme-pagination .current {
  background: var(--brand-600);
  color: #fff;
  box-shadow: none;
}

/* Newsletter. */
.newsletter-section { padding-bottom: 4.5rem; }
.newsletter-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.75rem;
}
.newsletter-copy { max-width: 48rem; }
.newsletter-eyebrow {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  padding: .35rem .75rem;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.newsletter-title {
  margin: 1rem 0 0;
  color: #fff;
  font-size: clamp(1.9rem, 5vw, 2.5rem);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -.035em;
}
.newsletter-text {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: rgba(255,255,255,.76);
  line-height: 1.7;
}
.newsletter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  white-space: nowrap;
}

/* Archives and utility pages. */
.archive-hero,
.page-entry-header,
.single-entry-header {
  border-bottom: 1px solid var(--slate-100);
  background: linear-gradient(180deg, rgba(241,250,249,.78), #fff);
}
.archive-hero-inner,
.page-header-inner {
  max-width: 64rem;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.archive-title,
.page-title {
  margin: 1rem 0 0;
  color: var(--ink);
  font-size: clamp(2.25rem, 6vw, 3.55rem);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -.045em;
}
.archive-description,
.page-intro {
  max-width: 48rem;
  margin: 1rem 0 0;
  color: var(--slate-600);
  font-size: 1.05rem;
  line-height: 1.75;
}
.archive-description > *:first-child { margin-top: 0; }
.archive-description > *:last-child { margin-bottom: 0; }
.no-results {
  max-width: 48rem;
  margin: 0 auto;
  border-radius: 1.25rem;
  background: var(--slate-50);
  padding: 2rem;
  text-align: center;
  box-shadow: inset 0 0 0 1px var(--slate-200);
}
.no-results h2 { margin: 0; color: var(--ink); font-size: 1.8rem; }
.no-results p { color: var(--slate-600); }
.no-results-search { max-width: 34rem; margin: 1.5rem auto 0; }
.error-page {
  min-height: 65vh;
  background: linear-gradient(180deg, var(--brand-50), #fff);
}
.error-page-inner {
  display: flex;
  max-width: 54rem;
  flex-direction: column;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
  text-align: center;
}
.error-code {
  color: var(--brand-200);
  font-size: clamp(5rem, 18vw, 10rem);
  line-height: .8;
  font-weight: 950;
  letter-spacing: -.08em;
}
.error-title {
  margin: 1rem 0 0;
  color: var(--ink);
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -.04em;
}
.error-description { max-width: 38rem; color: var(--slate-600); line-height: 1.7; }
.error-search { width: 100%; max-width: 36rem; margin: 1.5rem 0; }

/* Singular content. */
.single-entry-header-inner {
  max-width: 64rem;
  padding-top: 3.5rem;
  padding-bottom: 3.75rem;
}
.back-to-articles {
  display: inline-flex;
  color: var(--brand-700);
  font-size: .9rem;
  font-weight: 850;
}
.back-to-articles:hover { color: var(--brand-900); }
.single-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .7rem;
  margin-top: 2rem;
  color: var(--slate-500);
  font-size: .86rem;
}
.single-entry-title {
  margin: 1.25rem 0 0;
  color: var(--ink);
  font-size: clamp(2.35rem, 7vw, 4rem);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -.048em;
}
.single-entry-lead {
  max-width: 54rem;
  margin: 1.5rem 0 0;
  color: var(--slate-600);
  font-size: clamp(1.08rem, 2vw, 1.25rem);
  line-height: 1.65;
}
.author-summary {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-top: 2rem;
}
.author-avatar { border-radius: 999px; }
.author-name { display: inline-block; color: var(--ink); font-weight: 900; }
.author-name:hover { color: var(--brand-700); }
.author-description { margin: .15rem 0 0; color: var(--slate-500); font-size: .83rem; }
.singular-featured-image {
  max-width: 72rem;
  padding-top: 2.5rem;
}
.featured-image {
  width: 100%;
  aspect-ratio: 5 / 3;
  border-radius: 1.5rem;
  object-fit: cover;
  box-shadow: 0 16px 45px -30px rgba(7,59,76,.38);
}
.single-content-grid {
  display: grid;
  max-width: 68rem;
  gap: 2.5rem;
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}
.singular-content-wrap {
  max-width: 64rem;
  padding-top: 3rem;
  padding-bottom: 4.5rem;
}
.article-prose {
  width: 100%;
  max-width: 51rem;
}
.article-prose > *:first-child { margin-top: 0; }
.article-prose > *:last-child { margin-bottom: 0; }
.article-prose h1,
.article-prose h2,
.article-prose h3,
.article-prose h4,
.article-prose h5,
.article-prose h6 { scroll-margin-top: 2rem; }
.article-prose h4 { margin: 1.65rem 0 .65rem; color: var(--ink); font-size: 1.16rem; font-weight: 900; }
.article-prose a { color: var(--brand-700); text-decoration: underline; text-decoration-thickness: .08em; text-underline-offset: .16em; }
.article-prose a:hover { color: var(--brand-900); }
.article-prose blockquote {
  margin: 2rem 0;
  border-left: 4px solid var(--brand-500);
  background: var(--brand-50);
  color: var(--brand-900);
  padding: 1rem 1.25rem;
}
.article-prose blockquote > *:first-child { margin-top: 0; }
.article-prose blockquote > *:last-child { margin-bottom: 0; }
.article-prose pre {
  overflow-x: auto;
  border-radius: 1rem;
  background: var(--brand-950);
  color: #e6fffb;
  padding: 1.25rem;
  font-size: .9rem;
  line-height: 1.65;
}
.article-prose code {
  border-radius: .3rem;
  background: var(--slate-100);
  color: var(--brand-900);
  padding: .12rem .32rem;
  font-size: .9em;
}
.article-prose pre code { background: transparent; color: inherit; padding: 0; }
.article-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: .94rem;
}
.article-prose th,
.article-prose td {
  border: 1px solid var(--slate-200);
  padding: .7rem .8rem;
  text-align: left;
  vertical-align: top;
}
.article-prose th { background: var(--brand-50); color: var(--brand-900); }
.article-prose figure { margin: 1.75rem 0; }
.article-prose figcaption { margin-top: .6rem; color: var(--slate-500); font-size: .82rem; text-align: center; }
.article-prose .alignwide { width: min(100vw - 2.5rem, 68rem); max-width: none; margin-left: 50%; transform: translateX(-50%); }
.article-prose .alignfull { width: 100vw; max-width: none; margin-left: 50%; transform: translateX(-50%); }
.article-prose .wp-block-image img { border-radius: 1rem; }
.article-prose .wp-block-button__link {
  border-radius: .75rem;
  background: var(--brand-700);
  color: #fff;
  text-decoration: none;
  font-weight: 850;
}
.post-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  margin-top: 2.5rem;
  border-top: 1px solid var(--slate-200);
  padding-top: 1.5rem;
  font-size: .86rem;
}
.post-tags-label { color: var(--ink); font-weight: 900; }
.post-tags a {
  border-radius: 999px;
  background: var(--brand-50);
  color: var(--brand-700);
  padding: .35rem .65rem;
  text-decoration: none;
  font-weight: 750;
}
.article-toc { min-width: 0; }
.article-toc-panel {
  border-radius: 1rem;
  background: var(--slate-50);
  padding: 1.25rem;
  box-shadow: inset 0 0 0 1px var(--slate-200);
}
.article-toc-title {
  margin: 0;
  color: var(--brand-700);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.article-toc-links { display: grid; gap: .7rem; margin-top: 1rem; }
.article-toc-link {
  color: var(--slate-600);
  font-size: .86rem;
  line-height: 1.4;
  font-weight: 700;
}
.article-toc-link.is-subheading { padding-left: .75rem; font-size: .8rem; font-weight: 600; }
.article-toc-link:hover { color: var(--brand-700); }
.single-entry-footer {
  max-width: 68rem;
  padding-bottom: 4rem;
}
.post-navigation {
  border-top: 1px solid var(--slate-200);
  padding-top: 1.5rem;
}
.post-navigation .nav-links { display: grid; gap: 1rem; }
.post-navigation a {
  display: block;
  border-radius: 1rem;
  background: var(--slate-50);
  padding: 1rem;
  box-shadow: inset 0 0 0 1px var(--slate-200);
}
.post-navigation a:hover { background: var(--brand-50); }
.post-nav-label { display: block; color: var(--slate-500); font-size: .72rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.post-nav-title { display: block; margin-top: .35rem; color: var(--ink); font-weight: 900; line-height: 1.45; }
.related-posts-section {
  border-top: 1px solid var(--slate-100);
  background: var(--slate-50);
}
.related-posts-inner { max-width: 68rem; padding-top: 3.5rem; padding-bottom: 3.5rem; }
.related-posts-title { margin: .75rem 0 0; color: var(--ink); font-size: 2rem; font-weight: 950; letter-spacing: -.03em; }
.related-posts-grid { display: grid; gap: 1.5rem; margin-top: 2rem; }

/* Comments. */
.comments-container { max-width: 68rem; padding-top: 3rem; padding-bottom: 4rem; }
.comments-area { max-width: 51rem; }
.comments-title,
.comment-reply-title { color: var(--ink); font-size: 1.75rem; line-height: 1.25; font-weight: 950; letter-spacing: -.025em; }
.comment-list { padding: 0; margin: 1.5rem 0; list-style: none; }
.comment-list .children { list-style: none; padding-left: 1.5rem; }
.comment-body {
  position: relative;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background: var(--slate-50);
  padding: 1.25rem;
  box-shadow: inset 0 0 0 1px var(--slate-200);
}
.comment-meta { font-size: .82rem; }
.comment-author { display: flex; align-items: center; gap: .65rem; }
.comment-author .avatar { border-radius: 999px; }
.comment-metadata { margin: .5rem 0 0 3.65rem; color: var(--slate-500); }
.comment-content { color: var(--slate-600); line-height: 1.7; }
.reply a { color: var(--brand-700); font-weight: 800; }
.comment-form { display: grid; gap: 1rem; }
.comment-form p { margin: 0; }
.comment-form label { display: block; margin-bottom: .4rem; color: var(--ink); font-weight: 800; }
.comment-form input:not([type="checkbox"]):not([type="submit"]),
.comment-form textarea {
  width: 100%;
  border: 1px solid var(--slate-200);
  border-radius: .75rem;
  background: #fff;
  padding: .8rem .9rem;
}
.comment-form input:focus,
.comment-form textarea:focus {
  border-color: var(--brand-500);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(49,158,153,.16);
}
.comment-form .form-submit { margin-top: .25rem; }
.comment-form .form-submit .submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 2.85rem;
  border: 1px solid transparent;
  border-radius: .75rem;
  appearance: none;
  background: var(--brand-700);
  color: #fff;
  padding: .8rem 1.25rem;
  font: inherit;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.comment-form .form-submit .submit:hover { background: var(--brand-800); }
.comment-form .form-submit .submit:active { transform: translateY(1px); }
.comment-form .form-submit .submit:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(49,158,153,.24);
}

/* Footer. */
.site-footer {
  background: linear-gradient(90deg, var(--brand-900), var(--brand-800), var(--brand-700));
  color: #fff;
}
.footer-widgets-wrap { border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-widgets {
  display: grid;
  gap: 2rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.footer-widget-title { margin: 0 0 1rem; color: #fff; font-size: 1.05rem; }
.footer-widget,
.footer-widget a { color: rgba(255,255,255,.72); }
.footer-widget a:hover { color: #fff; }
.footer-widget ul { padding-left: 1.1rem; }
.site-footer-main {
  display: grid;
  gap: 2rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.footer-site-title { color: #fff; font-size: 1.55rem; font-weight: 950; letter-spacing: -.03em; }
.footer-tagline { margin: .5rem 0 0; color: rgba(255,255,255,.65); font-size: .86rem; }
.footer-menu { display: flex; flex-wrap: wrap; gap: .65rem 1.5rem; }
.footer-nav-link { color: rgba(255,255,255,.72); font-size: .88rem; }
.footer-nav-link:hover { color: #fff; }
.site-footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer-copyright { padding-top: 1.25rem; padding-bottom: 1.25rem; color: rgba(255,255,255,.56); font-size: .76rem; text-align: center; }

/* WordPress generated classes. */
.sticky { position: relative; }
.sticky::after {
  content: "Featured";
  position: absolute;
  z-index: 3;
  top: .75rem;
  right: .75rem;
  border-radius: 999px;
  background: var(--brand-900);
  color: #fff;
  padding: .3rem .6rem;
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.bypostauthor { display: block; }
.wp-caption { max-width: 100%; }
.wp-caption-text,
.gallery-caption { color: var(--slate-500); font-size: .8rem; }
.page-links { margin-top: 2rem; font-weight: 800; }
.page-links .post-page-numbers { display: inline-flex; margin-left: .35rem; padding: .25rem .55rem; border-radius: .4rem; background: var(--slate-100); }

@media (min-width: 640px) {
  .desktop-search-button { display: inline-flex; }
  .home-hero-grid { padding-top: 4rem; padding-bottom: 4rem; }
  .section-heading-row { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .section-description { text-align: right; }
  .newsletter-panel { padding: 3rem; }
  .post-navigation .nav-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .post-navigation .nav-next { text-align: right; }
  .related-posts-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-widgets { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  .post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .newsletter-panel { flex-direction: row; align-items: center; justify-content: space-between; }
  .site-footer-main { grid-template-columns: 1fr auto; align-items: center; }
  .footer-menu { justify-content: flex-end; }
}

@media (min-width: 1024px) {
  .primary-navigation { display: block; }
  .mobile-menu-button { display: none; }
  .mobile-menu { display: none !important; }
  .home-hero-grid { grid-template-columns: 1.2fr .8fr; padding-top: 5rem; padding-bottom: 5rem; }
  .post-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .single-content-grid { grid-template-columns: minmax(0, 1fr) 14rem; }
  .article-toc { position: sticky; top: 2rem; align-self: start; }
  .footer-widgets { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 639px) {
  .search-form { flex-direction: column; }
  .search-submit { min-height: 3rem; }
  .newsletter-button { width: 100%; }
}

/* Ads */
.post-grid .monetize-me {
    margin-top: 0; margin-bottom: 0; align-content: center; border-radius: 1.5rem; background: var(--slate-50); box-shadow: 0 0 0 1px rgba(226,232,240,.85), 0 16px 45px -30px rgba(7,59,76,.38);
}
