@charset "UTF-8";
:root {
  --color-red: #E63946;
  --color-teal: #2A9D8F;
  --color-yellow: #F4C430;
  --color-blue: #457B9D;
  --color-green: #588157;
  --color-plum: #7B2CBF;
  --color-charcoal: #1D3557;
  --color-cream: #FAF6EC;
  --color-white: #FFFFFF;
  --container: 1200px;
}

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

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body,
h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

body {
  margin: 0;
  min-height: 100vh;
  line-height: 1.5;
}

h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

h1, h2, h3, h4 {
  text-wrap: balance;
}

p, li {
  text-wrap: pretty;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

@font-face {
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/fira-sans-v18-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/fira-sans-v18-latin-600.woff2") format("woff2");
}
@font-face {
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/fira-sans-v18-latin-700.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/montserrat-v31-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/montserrat-v31-latin-500.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/montserrat-v31-latin-600.woff2") format("woff2");
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/jetbrains-mono-v24-latin-regular.woff2") format("woff2");
}
body {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1D3557;
  line-height: 1.6;
  font-size: clamp(1rem, 2vw, 1.125rem);
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  color: #1D3557;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

p {
  margin: 0 0 1rem;
}

a {
  color: #E63946;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
  transition: color 150ms ease;
}
a:hover {
  color: #2A9D8F;
}

code, pre, kbd, samp {
  font-family: "JetBrains Mono", Menlo, Consolas, monospace;
  font-size: 0.95em;
}

code {
  background: #F7F7F7;
  color: #404040;
  padding: 0.1em 0.35em;
  border-radius: 4px;
  font-size: 0.92em;
}

pre {
  background: #F7F7F7;
  padding: 1rem;
  border-radius: 8px;
  overflow-x: auto;
}
pre code {
  background: none;
  padding: 0;
}

small {
  font-size: 0.85em;
  color: #737373;
}

strong, b {
  font-weight: 700;
}

em, i {
  font-style: italic;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 768px) {
  .container {
    padding-inline: 1.5rem;
  }
}

.container--narrow {
  max-width: 720px;
}

.container--wide {
  max-width: 1400px;
}

.page-content,
.prose,
.page__inner,
.post__inner,
.recipe__inner,
.build__inner,
.topic__inner,
.shelter-update__inner {
  width: 100%;
  margin-inline-start: 0;
  margin-inline-end: auto;
}

.post__hero,
.recipe__hero,
.build__hero,
.shelter-update__hero,
.page__hero {
  max-width: none;
}

.grid-4, .grid-3, .grid-2 {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-3 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-4 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.section {
  padding-block: 4rem;
}
@media (max-width: 768px) {
  .section {
    padding-block: 3rem;
  }
}

.section--soft {
  background: #FAF6EC;
}

.section--dark {
  background: #1D3557;
  color: #FFFFFF;
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4, .section--dark h5, .section--dark h6 {
  color: #FFFFFF;
}

.cta-banner,
.hero,
.three-tiles {
  width: 100%;
  box-sizing: border-box;
}

.cta-banner {
  --cta-bg: #E63946;
  background: var(--cta-bg);
  color: #FFFFFF;
  padding-block: 3rem;
  margin-block: 3rem;
}
.cta-banner__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.cta-banner__title {
  color: #FFFFFF;
  margin: 0;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
}
.cta-banner__body {
  margin: 0;
  max-width: 60ch;
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: 700;
}
.cta-banner__cta {
  margin: 0.75rem 0 0;
}
.cta-banner .cta-banner__btn {
  background: var(--cta-bg);
  color: #FFFFFF;
  border-color: #FFFFFF;
}
.cta-banner .cta-banner__btn:hover {
  background: #FFFFFF;
  color: var(--cta-bg);
}
.cta-banner[data-bg-tone=light] {
  color: #1D3557;
}
.cta-banner[data-bg-tone=light] .cta-banner__title {
  color: #1D3557;
}
.cta-banner[data-bg-tone=light] .cta-banner__body {
  color: #1D3557;
}
.cta-banner[data-bg-tone=light] .cta-banner__btn {
  background: var(--cta-bg);
  color: #1D3557;
  border-color: #1D3557;
}
.cta-banner[data-bg-tone=light] .cta-banner__btn:hover {
  background: #1D3557;
  color: var(--cta-bg);
}

.ghl-form {
  margin-block: 2rem;
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #D4D4D4;
}
.ghl-form iframe {
  display: block;
  width: 100%;
  border: 0;
}

.hero {
  background: linear-gradient(135deg, #FAF6EC 0%, #FFFFFF 60%);
  padding-block: 4rem;
  border-bottom: 1px solid rgba(29, 53, 87, 0.08);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 768px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.hero__eyebrow {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgb(25.8542713568, 96.6457286432, 88.027638191);
  margin: 0 0 0.75rem;
}
.hero__heading {
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  color: #1D3557;
}
.hero__subhead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #1D3557;
  max-width: 48ch;
  margin: 0 0 2rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .hero__subhead {
    margin-inline: auto;
  }
}
.hero__ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 0;
}
@media (max-width: 768px) {
  .hero__ctas {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .hero__visual {
    display: flex;
    justify-content: center;
    order: -1;
  }
}
.hero__photo-frame {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #E63946;
  box-shadow: 0 8px 32px rgba(230, 57, 70, 0.2);
}
.hero__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .hero__photo-frame {
    width: 160px;
    height: 160px;
  }
}
.hero__scroll {
  display: flex;
  justify-content: center;
  padding-top: 2rem;
  grid-column: 1/-1;
}
@media (max-width: 768px) {
  .hero__scroll {
    display: none;
  }
}
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(29, 53, 87, 0.3), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .hero__scroll-line {
    animation: none;
  }
}

@keyframes scroll-line {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 1;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }
  100% {
    transform: scaleY(1);
    transform-origin: bottom;
    opacity: 0;
  }
}
.three-tiles {
  background: #FFFFFF;
}
.three-tiles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .three-tiles__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.tile {
  --tile-accent: #2A9D8F;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: #FFFFFF;
  border-radius: 8px;
  border: 1px solid rgba(29, 53, 87, 0.1);
  border-top: 4px solid var(--tile-accent);
  text-decoration: none;
  color: #1D3557;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.tile:hover {
  box-shadow: 0 8px 24px rgba(29, 53, 87, 0.12);
  transform: translateY(-2px);
  color: #1D3557;
}
.tile--speaking {
  --tile-accent: #F4C430;
}
.tile--writing {
  --tile-accent: #2A9D8F;
}
.tile--cooking {
  --tile-accent: #7B2CBF;
}
.tile__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(29, 53, 87, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--tile-accent);
}
.tile--speaking .tile__icon {
  color: rgb(156.1995412844, 119.9793577982, 8.3004587156);
}
.tile__heading {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.tile__copy {
  font-size: 0.95rem;
  color: #1D3557;
  line-height: 1.6;
  flex: 1;
  margin: 0 0 1rem;
}
.tile__cta {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1D3557;
}
.tile:hover .tile__cta {
  color: var(--tile-accent);
}
.tile--speaking:hover .tile__cta {
  color: #1D3557;
}
@media (max-width: 768px) {
  .tile {
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto auto;
    gap: 0 1rem;
    padding: 1rem 1.5rem;
  }
  .tile .tile__icon {
    grid-row: 1/3;
    margin-bottom: 0;
    align-self: center;
  }
  .tile .tile__heading {
    font-size: 1rem;
    margin: 0 0 0.25rem;
  }
  .tile .tile__copy {
    font-size: 0.875rem;
    grid-column: 2;
    margin-bottom: 0.5rem;
  }
  .tile .tile__cta {
    grid-column: 2;
    margin-top: 0;
  }
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}
@media (max-width: 1024px) {
  .topics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .topics-grid {
    grid-template-columns: 1fr;
  }
}

.series-callout {
  background: #FAF6EC;
  border-block: 1px solid rgba(88, 129, 87, 0.3);
  padding-block: 3rem;
}
.series-callout__inner {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}
.series-callout__eyebrow {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(67.2222222222, 98.5416666667, 66.4583333333);
  margin: 0 0 0.75rem;
}
.series-callout h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #1D3557;
  margin: 0 0 1rem;
}
.series-callout p {
  color: #1D3557;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 1.5rem;
}
.series-callout .btn-primary {
  background: #588157;
  border-color: #588157;
  color: #FFFFFF;
}
.series-callout .btn-primary:hover {
  background: rgb(71.3777777778, 104.6333333333, 70.5666666667);
  border-color: rgb(71.3777777778, 104.6333333333, 70.5666666667);
}

.speaker-cta {
  background: #1D3557;
  color: #FFFFFF;
  padding-block: 4rem;
}
.speaker-cta__inner {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}
.speaker-cta__eyebrow {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F4C430;
  margin: 0 0 0.75rem;
}
.speaker-cta h2 {
  color: #FFFFFF;
  margin: 0 0 1rem;
  border-bottom: 4px solid #F4C430;
  display: inline-block;
  padding-bottom: 0.5rem;
}
.speaker-cta p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 1.5rem;
  line-height: 1.7;
}
.speaker-cta .btn-primary {
  background: #E63946;
  border-color: #E63946;
  color: #FFFFFF;
}
.speaker-cta .btn-primary:hover {
  background: rgb(218.599103139, 27.600896861, 41.9533632287);
  border-color: rgb(218.599103139, 27.600896861, 41.9533632287);
}

.section__heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #1D3557;
  margin: 0 0 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(29, 53, 87, 0.1);
}

.section__cta {
  margin-top: 2rem;
  text-align: center;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 2rem;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
}
.pagination__current {
  color: #737373;
  font-weight: 400;
}
.pagination a {
  text-decoration: none;
}

.home-projects {
  padding-block: 4rem;
  background: #FAF6EC;
}
.home-projects__header {
  text-align: center;
  margin-bottom: 2rem;
}
.home-projects__title {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #1D3557;
  margin: 0 0 0.5rem 0;
}
.home-projects__sub {
  color: rgba(29, 53, 87, 0.7);
  font-size: 1.05rem;
}
.home-projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .home-projects__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .home-projects__grid {
    grid-template-columns: 1fr;
  }
}

.business-tile {
  background: #FFFFFF;
  border: 1px solid rgba(29, 53, 87, 0.08);
  border-top: 4px solid var(--tile-color, #1D3557);
  border-radius: 8px;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.business-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29, 53, 87, 0.08);
}
.business-tile__logo {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  overflow: hidden;
}
.business-tile__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.business-tile__logo-placeholder {
  width: 100%;
  height: 100%;
  background: var(--tile-color);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
}
.business-tile__name {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.25rem;
  color: #1D3557;
  margin: 0 0 0.5rem 0;
}
.business-tile__tagline {
  font-size: 0.95rem;
  color: rgba(29, 53, 87, 0.7);
  line-height: 1.5;
  flex: 1;
  margin: 0 0 1rem 0;
}
.business-tile__cta {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--tile-color);
}

.travel-map-wrap {
  margin: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(29, 53, 87, 0.08);
  box-shadow: 0 4px 16px rgba(29, 53, 87, 0.06);
}

.travel-map {
  height: 480px;
  width: 100%;
}

.travel-map__hint {
  padding: 1rem 1.25rem;
  background: #FAF6EC;
  color: rgba(29, 53, 87, 0.6);
  margin: 0;
  font-size: 0.9rem;
  text-align: center;
}

.travel-posts {
  margin-bottom: 3rem;
}
.travel-posts h2 {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin-bottom: 1.5rem;
}

.topic__keynote-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: #E63946;
  color: #FFFFFF;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.container .page__inner,
.container .page__body,
.container .page-content,
.container .prose,
.container .lab-intro,
.container .build-intro,
.container .recipes-intro,
.container > .content {
  max-width: none !important;
  width: 100%;
}

main p,
main h1,
main h2,
main h3,
main li,
main blockquote,
.page__inner,
.page__body,
.page-content,
.prose,
.giving-back-intro,
.cause-intro,
.lab-intro,
.build-intro,
[class*=__inner],
[class*=__body],
[class*=-intro],
[class*=-content]:not([class*=card]):not([class*=nav]):not([class*=meta]) {
  max-width: none !important;
  width: 100% !important;
  box-sizing: border-box;
}

.breadcrumb,
.breadcrumb__list,
nav[aria-label=Breadcrumb] {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 0.25rem !important;
  list-style: none !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: none !important;
}

.breadcrumb__item,
.breadcrumb li,
nav[aria-label=Breadcrumb] li {
  display: inline-flex !important;
  align-items: center !important;
  width: auto !important;
  max-width: none !important;
  white-space: nowrap;
}

.breadcrumb__sep,
.breadcrumb__separator {
  display: inline !important;
  width: auto !important;
  margin: 0 0.25rem !important;
}

.breadcrumb a,
.breadcrumb__link {
  display: inline !important;
  width: auto !important;
}

.breadcrumb__current,
.breadcrumb__item--current {
  display: inline !important;
  width: auto !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #FFFFFF;
  border-bottom: 2px solid #E63946;
  box-shadow: 0 1px 2px rgba(29, 53, 87, 0.05);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.75rem;
}

.site-header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.site-header__logo img {
  height: 36px;
  width: auto;
  display: block;
}

.site-nav {
  display: none;
}
@media (min-width: 1024px) {
  .site-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
}
.site-nav a {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  color: #1D3557;
  text-decoration: none;
  padding-block: 0.5rem;
  border-bottom: 2px solid transparent;
  transition: color 150ms ease, border-color 150ms ease;
}
.site-nav a:hover {
  color: #E63946;
}
.site-nav a[aria-current=page] {
  color: #1D3557;
  border-bottom-color: #E63946;
}

.site-header__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #1D3557;
}
@media (min-width: 1024px) {
  .site-header__toggle {
    display: none;
  }
}
.site-header__toggle:focus-visible {
  outline: 2px solid #E63946;
  outline-offset: 2px;
}

.site-nav.nav-open {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  padding: 1rem;
  background: #FFFFFF;
  border-top: 1px solid #D4D4D4;
}
@media (min-width: 1024px) {
  .site-nav.nav-open {
    display: flex;
    flex-direction: row;
  }
}

.site-footer {
  background: #1D3557;
  color: rgba(255, 255, 255, 0.75);
  padding-top: 4rem;
  padding-bottom: 2rem;
  margin-top: auto;
}
.site-footer__top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}
@media (max-width: 1024px) {
  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.site-footer__logo {
  display: inline-flex;
  margin-bottom: 0.5rem;
}
.site-footer__logo img {
  height: 32px;
  width: auto;
  display: block;
}
.site-footer__tagline {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}
.site-footer__bio {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  max-width: 32ch;
}
.site-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.site-footer__social {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  transition: background 0.2s, border-color 0.2s;
}
.site-footer__social:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}
.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .site-footer__nav {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .site-footer__nav {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.site-footer__col-heading {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}
.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.site-footer__links a {
  font-size: 0.9rem;
  color: #FFFFFF;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 0.2em;
  transition: text-decoration-color 0.2s;
  line-height: 1.4;
}
.site-footer__links a:hover {
  text-decoration-color: #FFFFFF;
}
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 640px) {
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
.site-footer__copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}
.site-footer__legal {
  display: flex;
  gap: 1rem;
}
.site-footer__legal a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer__legal a:hover {
  color: #FFFFFF;
}

.btn-buy, .btn-outline, .btn-secondary, .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid transparent;
  border-radius: 4px;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.btn-buy:focus-visible, .btn-outline:focus-visible, .btn-secondary:focus-visible, .btn-primary:focus-visible {
  outline: 2px solid #E63946;
  outline-offset: 2px;
}
.btn-buy:disabled, .btn-outline:disabled, .btn-secondary:disabled, .btn-primary:disabled, [aria-disabled=true].btn-buy, [aria-disabled=true].btn-outline, [aria-disabled=true].btn-secondary, [aria-disabled=true].btn-primary {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary {
  background: #E63946;
  color: #FFFFFF;
}
.btn-primary:hover {
  background: rgb(209.5426008969, 26.4573991031, 40.2152466368);
  color: #FFFFFF;
}

.btn-secondary {
  background: #2A9D8F;
  color: #FFFFFF;
}
.btn-secondary:hover {
  background: rgb(31.2361809045, 116.7638190955, 106.351758794);
  color: #FFFFFF;
}

.btn-outline {
  background: transparent;
  color: #E63946;
  border-color: #E63946;
}
.btn-outline:hover {
  background: #E63946;
  color: #FFFFFF;
}

.btn-buy {
  background: #E63946;
  color: #FFFFFF;
  padding: 1rem 2rem;
  font-size: 1.05rem;
}
.btn-buy:hover {
  background: rgb(209.5426008969, 26.4573991031, 40.2152466368);
  color: #FFFFFF;
}
.btn-buy[data-price]::after {
  content: " — " attr(data-price);
  font-weight: 400;
  opacity: 0.9;
}

.recipe-card, .post-card {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border-radius: 8px;
  --card-accent: #E63946;
  border-top: 4px solid var(--card-accent);
  box-shadow: 0 1px 2px rgba(29, 53, 87, 0.05);
  overflow: hidden;
  transition: box-shadow 250ms ease, transform 250ms ease;
}
.recipe-card:hover, .post-card:hover {
  box-shadow: 0 4px 12px rgba(29, 53, 87, 0.08);
  transform: translateY(-2px);
}
.recipe-card .card__media, .post-card .card__media {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.recipe-card .card__media img, .post-card .card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recipe-card .card__body, .post-card .card__body {
  padding: 1rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.recipe-card .card__title, .post-card .card__title {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0;
}
.recipe-card .card__title a, .post-card .card__title a {
  color: #1D3557;
  text-decoration: none;
}
.recipe-card .card__title a:hover, .post-card .card__title a:hover {
  color: #E63946;
}
.recipe-card .card__meta, .post-card .card__meta {
  font-size: 0.85rem;
  color: #737373;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.recipe-card .card__excerpt, .post-card .card__excerpt {
  color: #1D3557;
  flex: 1;
}

.post-card {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07), 0 4px 16px rgba(0, 0, 0, 0.06);
}
.post-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 8px 32px rgba(0, 0, 0, 0.09);
  transform: translateY(-2px);
}

.recipe-card {
  border-top-color: #7B2CBF;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07), 0 4px 16px rgba(0, 0, 0, 0.06);
}
.recipe-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 8px 32px rgba(0, 0, 0, 0.09);
  transform: translateY(-2px);
}
.recipe-card .card__media img {
  transition: transform 0.3s ease;
}
.recipe-card:hover .card__media img {
  transform: scale(1.03);
}

.post-card__media {
  display: block;
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.post-card__media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-card__placeholder-text {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: #FFFFFF;
}

.post-card__body {
  padding: 1rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.post-card__category {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--card-text-color, var(--card-color, #1F7368));
}

.post-card__title {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0;
  line-height: 1.3;
  color: #1D3557;
}

.post-card__excerpt {
  color: #1D3557;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.post-card__date {
  font-size: 0.8rem;
  color: #404040;
  margin-top: auto;
}

.post-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.recipe-card .card__media {
  aspect-ratio: 4/3;
}

.topic-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #FFFFFF;
  border: 1px solid rgba(29, 53, 87, 0.1);
  border-top: 3px solid #F4C430;
  border-radius: 6px;
  padding: 1.5rem;
  text-decoration: none;
  color: #1D3557;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.topic-card:hover {
  box-shadow: 0 4px 16px rgba(29, 53, 87, 0.1);
  transform: translateY(-1px);
}
.topic-card__title {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.topic-card__title a {
  color: #1D3557;
  text-decoration: none;
}
.topic-card__title a:hover {
  color: rgb(156.1995412844, 119.9793577982, 8.3004587156);
}
.topic-card__synopsis {
  font-size: 0.875rem;
  color: #1D3557;
  line-height: 1.6;
  flex: 1;
  margin: 0 0 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.topic-card__formats {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.topic-card__cta-row {
  margin: auto 0 0;
}
.topic-card__cta {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1D3557;
  text-decoration: none;
}
.topic-card__cta:hover {
  color: rgb(156.1995412844, 119.9793577982, 8.3004587156);
}

.post-card[data-category=mexico-life],
.post-card--mexico-life {
  border-top-color: #E63946;
}

.post-card[data-category=falling-in-out],
.post-card--falling-in-out {
  border-top-color: #588157;
}

.post-card[data-category=personal],
.post-card--personal {
  border-top-color: #E63946;
}

.post-card[data-category=tech-ai],
.post-card--tech-ai {
  border-top-color: #2A9D8F;
}

.post-card[data-category=networking],
.post-card--networking {
  border-top-color: #F4C430;
}

.post-card[data-category=travel],
.post-card--travel {
  border-top-color: #457B9D;
}

.post-card[data-category=recipes],
.post-card--recipes {
  border-top-color: #7B2CBF;
}

.project-tile {
  --project-color: #2A9D8F;
  background: #FFFFFF;
  border-radius: 8px;
  border: 1px solid rgba(29, 53, 87, 0.1);
  border-top: 3px solid var(--project-color);
  padding: 1.5rem;
  text-decoration: none;
  color: #1D3557;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.project-tile:hover {
  box-shadow: 0 4px 16px rgba(29, 53, 87, 0.1);
  transform: translateY(-1px);
  color: #1D3557;
}

.project-tile__name {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #1D3557;
  margin: 0;
}

.project-tile__tagline {
  font-size: 0.875rem;
  color: #1D3557;
  line-height: 1.5;
  margin: 0;
}

.project-tile__event {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(29, 53, 87, 0.08);
}

.project-tile__event-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: #1D3557;
}

.project-tile__event-date {
  font-size: 0.75rem;
  color: #1D3557;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  white-space: nowrap;
}

.project-tile__meta {
  font-size: 0.75rem;
  color: #1D3557;
  margin-top: 0.25rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

.format-pills {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.format-pill,
.cuisine-pill {
  display: inline-flex;
  align-items: center;
  background: #FAF6EC;
  color: #1D3557;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}

.cuisine-pill {
  background: rgba(123, 44, 191, 0.12);
  color: #7B2CBF;
}

.card__cta {
  margin: 0;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
}
.card__cta a {
  text-decoration: none;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.filter-pill {
  padding: 0.5rem 1rem;
  border: 2px solid #2A9D8F;
  border-radius: 999px;
  background: transparent;
  color: #1D3557;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
}
.filter-pill:hover {
  background: rgba(42, 157, 143, 0.1);
}
.filter-pill.active {
  background: #1D3557;
  color: #FFFFFF;
  border-color: #1D3557;
}
.filter-pill:focus-visible {
  outline: 2px solid #E63946;
  outline-offset: 2px;
}

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.recipe-grid__item.hidden {
  display: none;
}

.post-card .card__media,
.recipe-card .card__media,
.topic-card .card__media {
  background: #f0f0f0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(29, 53, 87, 0.05);
  padding: 1rem;
  border-top: 3px solid #E63946;
}
.product-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}
.product-card__price {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #E63946;
  margin: 0.5rem 0;
}

.coming-soon {
  text-align: center;
  font-size: 1.125rem;
  color: #1D3557;
  padding: 4rem 0;
}

a.card__media,
div.card__media,
.card__media {
  display: block !important;
  width: 100% !important;
  height: 220px !important;
  overflow: hidden !important;
  background: #e0e0e0 !important;
  background-color: #e0e0e0 !important;
  background-image: none !important;
}

a.card__media img,
div.card__media img,
.card__media img,
.post-card__media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  margin: 0 !important;
}

.post-card__media {
  display: block !important;
  width: 100% !important;
  height: 220px !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
}
.post-card__media:not(.post-card__media--placeholder) {
  background: #e0e0e0;
}

.recipe-card {
  border-top: 4px solid var(--card-accent, #7B2CBF) !important;
}

.post-card {
  border-top: 3px solid var(--card-color, #457B9D) !important;
}

.post-card__media--placeholder,
.post-card__placeholder {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-card__placeholder-label,
.post-card__placeholder-text {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #ffffff;
  text-transform: uppercase;
}

.post-card__media--placeholder {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
}

.post-card__placeholder-text {
  display: block !important;
  width: auto !important;
  max-width: none !important;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  padding: 0;
  margin: 0;
  line-height: 1;
}

.photo-grid {
  margin: 2.5rem 0;
}
.photo-grid__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 6px;
}
.photo-grid__item {
  display: block;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/3;
}
.photo-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.photo-grid__item:hover img, .photo-grid__item:focus img {
  transform: scale(1.04);
  opacity: 0.9;
}
.photo-grid__item:focus-visible {
  outline: 3px solid #588157;
  outline-offset: 2px;
}
.photo-grid__placeholder {
  background: #f0f0f0;
  border: 2px dashed #ccc;
  border-radius: 4px;
  padding: 1.5rem;
  text-align: center;
  color: #888;
  font-size: 0.9rem;
}
.photo-grid__caption {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: #666;
  font-style: italic;
  text-align: center;
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-lightbox[hidden] {
  display: none;
}
.photo-lightbox__stage {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.photo-lightbox__img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  display: block;
}
.photo-lightbox__caption {
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
  max-width: 600px;
  opacity: 0.85;
  margin: 0;
}
.photo-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  opacity: 0.75;
  transition: opacity 0.15s;
}
.photo-lightbox__close:hover {
  opacity: 1;
}
.photo-lightbox__prev, .photo-lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  transition: background 0.15s;
  line-height: 1;
}
.photo-lightbox__prev:hover, .photo-lightbox__next:hover {
  background: rgba(255, 255, 255, 0.2);
}
.photo-lightbox__prev {
  left: 1rem;
}
.photo-lightbox__next {
  right: 1rem;
}

.post {
  margin-block: 3rem;
}

.post__hero {
  border-top: 6px solid #E63946;
  margin-bottom: 2rem;
}
.post__hero[data-category=mexico-life] {
  border-top-color: #E63946;
}
.post__hero[data-category=falling-in-out] {
  border-top-color: #588157;
}
.post__hero[data-category=personal] {
  border-top-color: #E63946;
}
.post__hero[data-category=tech-ai] {
  border-top-color: #2A9D8F;
}
.post__hero[data-category=networking] {
  border-top-color: #F4C430;
}
.post__hero[data-category=travel] {
  border-top-color: #457B9D;
}
.post__hero[data-category=recipes] {
  border-top-color: #7B2CBF;
}
.post__hero img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 8px;
}

.post__title {
  max-width: 30ch;
  margin-block: 1rem 0.5rem;
}

.post__meta {
  color: #737373;
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.reading-time {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: #FAF6EC;
  color: #1D3557;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.post__body {
  margin-inline: auto;
  line-height: 1.8;
  min-width: 0;
}
.post .post__body > p,
.post .post__body > ul,
.post .post__body > ol,
.post .post__body > blockquote,
.post .post__body > dl {
  max-width: 72ch;
}
.post__body h2, .post__body h3, .post__body h4 {
  scroll-margin-top: 80px;
}
.post__body h2 .heading-anchor, .post__body h3 .heading-anchor, .post__body h4 .heading-anchor {
  opacity: 0;
  margin-left: 0.5rem;
  color: #2A9D8F;
  text-decoration: none;
  font-weight: 400;
  transition: opacity 150ms ease;
}
.post__body h2:hover .heading-anchor, .post__body h3:hover .heading-anchor, .post__body h4:hover .heading-anchor {
  opacity: 1;
}
.post__body h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(29, 53, 87, 0.08);
}
.post__body h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.post__body h4 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.post__body > p:first-of-type {
  font-size: 1.1rem;
  color: #1D3557;
  line-height: 1.75;
}
.post__body p {
  margin: 0 0 1rem;
}
.post__body ul, .post__body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.post__body ul li, .post__body ol li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
.post__body blockquote {
  border-left: 3px solid #2A9D8F;
  padding: 0.75rem 1.5rem;
  margin: 2rem 0;
  background: rgba(42, 157, 143, 0.04);
  border-radius: 0 4px 4px 0;
}
.post__body blockquote p {
  font-style: italic;
  font-size: 1.05rem;
  color: #1D3557;
  margin: 0;
}
.post__body img, .post__body figure {
  width: 100%;
  margin: 2rem 0;
}
.post__body img img, .post__body figure img {
  width: 100%;
  border-radius: 4px;
}
.post__body img figcaption, .post__body figure figcaption {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #1D3557;
  text-align: center;
}
.post__body hr {
  border: none;
  border-top: 1px solid rgba(29, 53, 87, 0.1);
  margin: 3rem auto;
  width: 40%;
}

.breadcrumb {
  margin: 0 0 2rem;
}
.breadcrumb__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.15rem;
  font-size: 0.8rem;
}
.breadcrumb__item {
  color: #888;
}
.breadcrumb__sep, .breadcrumb__separator {
  color: #ccc;
  padding: 0 0.1rem;
}
.breadcrumb__link {
  color: #588157;
  text-decoration: none;
}
.breadcrumb__link:hover {
  text-decoration: underline;
}
.breadcrumb__item--current {
  color: #1D3557;
  font-weight: 600;
}

.figure {
  margin: 2rem 0;
}
.figure img {
  width: 100%;
  border-radius: 4px;
  display: block;
}
.figure__caption {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #737373;
  text-align: center;
  line-height: 1.5;
}
.figure__credit {
  color: #737373;
  font-style: italic;
}

.pull-quote {
  margin: 2rem 0;
  padding: 0.5rem 1.5rem;
  border-left: 4px solid #2A9D8F;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  line-height: 1.4;
  color: #1D3557;
}
.pull-quote p {
  margin: 0 0 0.75rem;
}
.pull-quote__cite {
  display: block;
  margin-top: 0.5rem;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 600;
  color: #737373;
}

.callout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  border-left: 4px solid #2A9D8F;
  background: rgba(42, 157, 143, 0.06);
  border-radius: 4px;
}
.callout__icon {
  font-size: 1.25rem;
  line-height: 1.4;
  color: #2A9D8F;
}
.callout__body > :first-child {
  margin-top: 0;
}
.callout__body > :last-child {
  margin-bottom: 0;
}
.callout--info {
  border-left-color: #2A9D8F;
  background: rgba(42, 157, 143, 0.06);
}
.callout--info .callout__icon {
  color: #2A9D8F;
}
.callout--warning {
  border-left-color: #F4C430;
  background: rgba(244, 196, 48, 0.12);
}
.callout--warning .callout__icon {
  color: rgb(219.1541284404, 168.3357798165, 11.6458715596);
}
.callout--note {
  border-left-color: #E63946;
  background: rgba(230, 57, 70, 0.06);
}
.callout--note .callout__icon {
  color: #E63946;
}
.callout--highlight {
  background: #FAF6EC;
  border-left: 4px solid #E63946;
  border-radius: 0 6px 6px 0;
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
  font-size: 1.1em;
  line-height: 1.7;
}
.callout--highlight .callout__icon {
  color: #E63946;
  font-size: 1.4rem;
}
.callout--highlight .callout__body strong:first-child {
  display: block;
  font-size: 1.15em;
  color: #E63946;
  margin-bottom: 0.5rem;
}

.author-bio {
  background: #FAF6EC;
  border-radius: 8px;
  padding: 1.5rem;
  margin-block: 2rem;
  border-left: 4px solid #E63946;
}
.author-bio__inner {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
@media (max-width: 640px) {
  .author-bio__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.author-bio__photo {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #E63946;
}
.author-bio__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.author-bio__byline {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #404040;
  margin: 0 0 0.25rem;
}
.author-bio__name {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.author-bio__name a {
  color: #1D3557;
  text-decoration: none;
}
.author-bio__name a:hover {
  color: #E63946;
}
.author-bio__copy {
  font-size: 0.875rem;
  color: #1D3557;
  line-height: 1.6;
  margin: 0 0 0.75rem;
}
.author-bio__links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .author-bio__links {
    justify-content: center;
  }
}
.author-bio__social {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1D3557;
  text-decoration: none;
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(42, 157, 143, 0.5);
  border-radius: 999px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.author-bio__social:hover {
  background: #1D3557;
  color: #FFFFFF;
  border-color: #1D3557;
}

.affiliate-disclosure {
  margin: 2rem 0;
  padding: 0.75rem 1rem;
  background: #F7F7F7;
  border-left: 3px solid #F4C430;
  border-radius: 4px;
  font-size: 0.85rem;
  color: #404040;
  font-style: italic;
}

.page {
  margin-block: 0 3rem;
}
.page__title {
  margin-block: 2rem 0.5rem;
}
.page__subtitle {
  color: #737373;
  font-size: 1.1rem;
  margin-block: 0 1.5rem;
}
.page__hero {
  width: 100%;
  max-height: 480px;
  overflow: hidden;
  margin-bottom: 2rem;
  background: #1D3557;
}
.page__hero img {
  display: block;
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}
.page__hero-credit {
  max-width: var(--container);
  margin: 0.5rem auto 0;
  padding-inline: 1rem;
  font-size: 0.8rem;
  color: #737373;
  text-align: right;
}

.about-intro {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0 2rem;
  border-bottom: 1px solid rgba(29, 53, 87, 0.08);
  margin-bottom: 2rem;
}
.about-intro__photo {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #E63946;
}
.about-intro__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-intro__meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.about-intro__location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgb(25.8542713568, 96.6457286432, 88.027638191);
  margin: 0;
}
.about-intro__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgb(25.8542713568, 96.6457286432, 88.027638191);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .about-intro__dot {
    animation: none;
  }
}
.about-intro__roles {
  font-size: 0.95rem;
  color: #1D3557;
  margin: 0;
  font-style: italic;
}
@media (max-width: 640px) {
  .about-intro {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .about-intro .about-intro__location {
    justify-content: center;
  }
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.85);
  }
}
.topic {
  margin-block: 3rem;
}
.topic__header {
  margin-bottom: 2rem;
  text-align: center;
}
.topic__title {
  margin-block: 0.75rem;
}
.topic__synopsis {
  max-width: 60ch;
  margin: 0 auto;
  font-size: 1.15rem;
  color: #1D3557;
}
.topic__section {
  margin-block: 2rem;
}
.topic__section h2 {
  margin-bottom: 0.75rem;
}
.topic__section ul {
  padding-left: 1.5rem;
}

.takeaways {
  list-style: "✓  " inside;
  padding-left: 0;
}
.takeaways li {
  padding-block: 0.5rem;
  border-bottom: 1px solid #F7F7F7;
}
.takeaways li:last-child {
  border-bottom: 0;
}

.video-embed {
  position: relative;
  aspect-ratio: 16/9;
  background: #1D3557;
  border-radius: 8px;
  overflow: hidden;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

.song-embed {
  margin: 1.5rem 0;
  padding: 1.25rem;
  background: #FAF6EC;
  border-left: 4px solid #E63946;
  border-radius: 4px;
}
.song-embed__intro {
  margin: 0 0 1rem 0;
  font-size: 0.95rem;
  color: #1D3557;
}
.song-embed__video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.song-embed__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 4px;
}

.keynote-badge {
  display: inline-block;
  background: #E63946;
  color: #FFFFFF;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.product {
  margin-block: 3rem;
}

.product__layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 3rem;
  align-items: start;
  padding-block: 2rem;
}
@media (max-width: 1024px) {
  .product__layout {
    grid-template-columns: 1fr;
  }
}

.product__media {
  position: sticky;
  top: 2rem;
}
@media (max-width: 1024px) {
  .product__media {
    position: static;
  }
}

.product__hero {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  aspect-ratio: 4/3;
  background: rgba(230, 57, 70, 0.1);
}
.product__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product__price-block {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.product__price {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #E63946;
  line-height: 1;
}

.product__currency {
  font-size: 1rem;
  color: #1D3557;
  font-weight: 600;
}

.product__cta-pending {
  background: #FAF6EC;
  border-left: 4px solid #2A9D8F;
  padding: 1rem 1.5rem;
  border-radius: 0 4px 4px 0;
  margin-block: 1.5rem 0.75rem;
  font-size: 0.95rem;
  color: #1D3557;
}

.product__trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #1D3557;
  margin-top: 0.75rem;
  font-weight: 600;
}
.product__trust svg {
  color: #588157;
  flex-shrink: 0;
}

.product__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 1rem;
}

.product__summary {
  font-size: 1.125rem;
  color: #1D3557;
  margin: 0 0 2rem;
  line-height: 1.7;
}

.product__features {
  margin-block: 2rem;
}
.product__features-heading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.75rem;
  color: #1D3557;
}
.product__features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product__features ul li {
  padding: 0.75rem 0 0.75rem 1.5rem;
  position: relative;
  border-bottom: 1px solid rgba(29, 53, 87, 0.08);
}
.product__features ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.75rem;
  color: #2A9D8F;
  font-weight: 700;
}
.product__features ul li:last-child {
  border-bottom: 0;
}

.ghl-form__placeholder {
  background: #FAF6EC;
  padding: 1.5rem;
  border-radius: 6px;
  text-align: center;
  font-size: 0.95rem;
  color: #1D3557;
  border: 1px dashed rgba(29, 53, 87, 0.2);
}

.category-archive {
  --cat-color: #E63946;
  border-top: 6px solid var(--cat-color);
}
.category-archive__header {
  margin-bottom: 2rem;
  text-align: center;
}
.category-archive__title {
  margin-block: 0.75rem;
}
.category-archive__desc {
  color: #737373;
  max-width: 60ch;
  margin: 0 auto;
}

.recipe__title {
  margin-block: 0.75rem;
}
.recipe__summary {
  color: #1D3557;
  font-size: 1.1rem;
  max-width: 60ch;
}
.recipe__header {
  margin-bottom: 1.5rem;
}
.recipe__section {
  margin-block: 2rem;
}
.recipe__section h2 {
  margin-bottom: 1rem;
}
.recipe__headnote {
  margin-block: 1.5rem;
}
.recipe__print {
  margin-block: 2rem;
  text-align: center;
}
.recipe__ingredients li.checked label {
  text-decoration: line-through;
  opacity: 0.55;
}

.contact-fallback {
  background: #FAF6EC;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  margin-block: 2rem;
}
.contact-fallback p {
  margin-bottom: 1rem;
}

.contact-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(29, 53, 87, 0.1);
}
@media (max-width: 768px) {
  .contact-meta {
    grid-template-columns: 1fr;
  }
}
.contact-meta__item strong {
  display: block;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #404040;
  margin-bottom: 0.5rem;
}
.contact-meta__item p {
  font-size: 0.9rem;
  color: #1D3557;
  line-height: 1.6;
  margin: 0;
}

.albergue-posts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 640px) {
  .albergue-posts {
    grid-template-columns: 1fr;
  }
}

.albergue-card {
  background: #FAF6EC;
  border-radius: 8px;
  padding: 1.5rem;
  border-left: 4px solid #588157;
}
.albergue-card__date {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #404040;
  margin-bottom: 0.5rem;
}
.albergue-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.albergue-card__title a {
  color: #1D3557;
  text-decoration: none;
}
.albergue-card__title a:hover {
  color: rgb(36.0555555556, 52.8541666667, 35.6458333333);
}
.albergue-card__stat {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: rgb(36.0555555556, 52.8541666667, 35.6458333333);
  margin-bottom: 0.5rem;
}
.albergue-card__excerpt {
  font-size: 0.875rem;
  color: #1D3557;
  line-height: 1.6;
  margin: 0;
}

.albergue-coming-soon {
  font-style: italic;
  color: #1D3557;
  padding: 2rem;
  text-align: center;
  background: #FAF6EC;
  border-radius: 8px;
}

.shelter-update {
  padding: 2rem 0 4rem;
}
.shelter-update__hero {
  margin-bottom: 2rem;
  border-radius: 8px;
  overflow: hidden;
}
.shelter-update__hero img {
  width: 100%;
  height: auto;
  display: block;
}
.shelter-update__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}
.shelter-update__meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: #1D3557;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(29, 53, 87, 0.08);
}
.shelter-update__meta time {
  font-weight: 600;
  color: #1D3557;
}
.shelter-update__meals {
  color: rgb(36.0555555556, 52.8541666667, 35.6458333333);
  font-weight: 700;
}
.shelter-update__cost {
  color: rgb(25.8542713568, 96.6457286432, 88.027638191);
  font-weight: 700;
}
.shelter-update__menu {
  background: #FAF6EC;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-left: 4px solid #588157;
}
.shelter-update__menu h2 {
  font-size: 1rem;
  margin: 0 0 0.75rem;
  border-bottom: none;
  padding-bottom: 0;
}
.shelter-update__menu ul {
  margin: 0;
  padding-left: 1.5rem;
}
.shelter-update__menu ul li {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}
.shelter-update__body {
  max-width: 72ch;
  line-height: 1.8;
  margin-bottom: 3rem;
}
.shelter-update__body p:first-of-type {
  font-size: 1.05rem;
  color: #1D3557;
}
.shelter-update__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-around;
  margin-bottom: 3rem;
  padding: 1.5rem;
  background: #FAF6EC;
  border-radius: 8px;
}
@media (max-width: 640px) {
  .shelter-update__stats {
    justify-content: center;
  }
}
.shelter-update__footer {
  padding-top: 2rem;
  border-top: 1px solid rgba(29, 53, 87, 0.08);
}

.stat-block {
  text-align: center;
  padding: 0.75rem 1.5rem;
}
.stat-block__number {
  display: block;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: rgb(36.0555555556, 52.8541666667, 35.6458333333);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-block__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1D3557;
}
.stat-block--total .stat-block__number {
  color: #E63946;
  font-size: 2.5rem;
}

.featured-video {
  margin: 0 0 2rem 0;
  width: 100%;
}
.featured-video__embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #1D3557;
  border-radius: 8px;
  overflow: hidden;
}
.featured-video__embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.featured-video--loom .featured-video__embed {
  aspect-ratio: 16/10;
}
.featured-video--direct video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  background: #1D3557;
}
.featured-video__caption {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: rgba(29, 53, 87, 0.6);
  font-style: italic;
  text-align: center;
}

.post__layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .post--has-toc .post__layout {
    grid-template-columns: 260px 1fr;
    gap: 3rem;
  }
}

.post--no-toc .post__main {
  max-width: 760px;
  margin-inline: 0;
}

@media (min-width: 1024px) {
  .post__toc {
    position: sticky;
    top: 2rem;
    align-self: start;
    max-height: calc(100vh - 3rem);
    overflow-y: auto;
  }
}

.post__toc-inner {
  background: #FAF6EC;
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid rgba(29, 53, 87, 0.08);
}

.post__toc-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #C5283D;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(29, 53, 87, 0.1);
}
.post__toc-label svg {
  flex-shrink: 0;
}

.post__main {
  min-width: 0;
}

.post__footer {
  margin-top: 2rem;
}

.post__footer-share {
  margin-bottom: 1.5rem;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.toc-list__item {
  margin-bottom: 0.25rem;
}
.toc-list__item--h3 {
  padding-left: 1rem;
  font-size: 0.85rem;
}
.toc-list__link {
  color: rgba(29, 53, 87, 0.7);
  text-decoration: none;
  font-size: 0.92rem;
  line-height: 1.4;
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: all 0.15s ease;
}
.toc-list__link:hover {
  color: #E63946;
  background: rgba(230, 57, 70, 0.06);
}
.toc-list__link.is-active {
  color: #E63946;
  background: rgba(230, 57, 70, 0.08);
  font-weight: 600;
}

.share-buttons {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.share-buttons__label {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(29, 53, 87, 0.5);
  margin-right: 0.25rem;
}
.share-buttons--bottom {
  border-top: 1px solid rgba(29, 53, 87, 0.1);
  padding-top: 1rem;
  margin-top: 1.5rem;
  display: flex;
}

.share-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
  background: rgba(29, 53, 87, 0.06);
  color: #1D3557;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease;
  flex-shrink: 0;
}
.share-button svg {
  width: 18px;
  height: 18px;
  display: block;
  pointer-events: none;
}
.share-button:hover {
  background: #E63946;
  color: #FFFFFF;
}
.share-button:active {
  transform: scale(0.95);
}
.share-button:focus-visible {
  outline: 2px solid #E63946;
  outline-offset: 2px;
}
.share-button__icon-success {
  display: none;
}
.share-button.is-copied {
  background: #588157;
  color: #FFFFFF;
}
.share-button.is-copied .share-button__icon-default {
  display: none;
}
.share-button.is-copied .share-button__icon-success {
  display: block;
}

.related-posts {
  padding-block: 3rem;
  border-top: 1px solid rgba(29, 53, 87, 0.1);
  margin-top: 3rem;
}
.related-posts__title {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.5rem;
  color: #1D3557;
  margin-bottom: 1.5rem;
}
.related-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .related-posts__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .related-posts__grid {
    grid-template-columns: 1fr;
  }
}

.post-comments {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(29, 53, 87, 0.1);
}
.post-comments__title {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.5rem;
  color: #1D3557;
  margin-bottom: 1.5rem;
}
.post-comments__placeholder {
  color: rgba(29, 53, 87, 0.6);
  font-size: 0.95rem;
  font-style: italic;
}
.post-comments__placeholder code {
  font-family: "JetBrains Mono", Menlo, Consolas, monospace;
  font-size: 0.85rem;
  background: rgba(29, 53, 87, 0.06);
  padding: 0 0.3em;
  border-radius: 3px;
}
.post-comments__load {
  display: inline-block;
  background: #C5283D;
  color: #fff;
  border: 0;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease;
}
.post-comments__load:hover, .post-comments__load:focus-visible {
  background: rgb(163.0860759494, 33.1139240506, 50.4987341772);
  outline: none;
}
.post-comments__load:focus-visible {
  box-shadow: 0 0 0 3px rgba(197, 40, 61, 0.35);
}
.post-comments__notice {
  margin-top: 0.75rem;
  color: #404040;
  font-size: 0.85rem;
}

.recipe {
  margin-block: 3rem;
}

.recipe-hero,
.recipe__hero {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  border-top: 4px solid var(--card-accent, #7B2CBF);
  background: #FAF6EC;
  overflow: hidden;
}

.recipe-hero picture,
.recipe__hero picture {
  display: block;
  width: 100%;
}

.recipe-hero img,
.recipe__hero img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  object-position: center;
  margin: 0 !important;
}

.recipe-card__image,
.recipe-card img,
.recipe-card .card__media,
.recipe-card .card__media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.recipe-card__placeholder {
  width: 100%;
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #7B2CBF;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.recipe__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: #FAF6EC;
  border-left: 4px solid #7B2CBF;
  border-radius: 4px;
  margin-block: 1.5rem;
}
.recipe__stats > div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.recipe__stats > div .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1D3557;
  font-weight: 600;
}
.recipe__stats > div .value {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  color: #1D3557;
}

.recipe__ingredients {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.recipe__ingredients li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #F7F7F7;
}
.recipe__ingredients input[type=checkbox] {
  appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #2A9D8F;
  border-radius: 4px;
  cursor: pointer;
  display: inline-grid;
  place-content: center;
  transition: background 150ms ease;
}
.recipe__ingredients input[type=checkbox]::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  transform: scale(0);
  background: #FFFFFF;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transition: transform 150ms ease;
}
.recipe__ingredients input[type=checkbox]:checked {
  background: #2A9D8F;
}
.recipe__ingredients input[type=checkbox]:checked::before {
  transform: scale(1);
}
.recipe__ingredients input[type=checkbox]:focus-visible {
  outline: 2px solid #E63946;
  outline-offset: 2px;
}
.recipe__ingredients input[type=checkbox]:checked + label {
  text-decoration: line-through;
  opacity: 0.55;
}
.recipe__ingredients label {
  cursor: pointer;
}

.recipe__instructions {
  list-style: none;
  counter-reset: step;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.recipe__instructions li {
  counter-increment: step;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}
.recipe__instructions li::before {
  content: counter(step);
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #2A9D8F;
  line-height: 1;
  min-width: 2rem;
}

.recipe-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-block: 1rem 1.5rem;
}
.recipe-actions .btn-outline {
  cursor: pointer;
  font: inherit;
}

.recipe-card-block {
  border: 2px solid #7B2CBF;
  border-radius: 8px;
  padding: 1.5rem;
  margin-block: 2rem;
  background: #FFFFFF;
  scroll-margin-top: 2rem;
}
.recipe-card-block:focus {
  outline: none;
}
.recipe-card-block .recipe-card-block__title {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.recipe-card-block .recipe-card-block__desc {
  color: #1D3557;
  margin-bottom: 1rem;
}
.recipe-card-block .recipe__stats {
  margin-block: 1rem 1.5rem;
}
.recipe-card-block .recipe__section {
  margin-block: 1.5rem;
}

.recipe__ingredient-group {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #7B2CBF;
  margin-block: 1rem 0.5rem;
}

.recipe__notes {
  background: #FAF6EC;
  border-left: 4px solid #2A9D8F;
  padding: 1rem 1.5rem;
  border-radius: 4px;
}
.recipe__notes h3 {
  margin-top: 0;
}
.recipe__notes .recipe__notes-body p {
  margin-block: 0.5rem;
}

.recipe__source {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #F7F7F7;
  font-size: 0.9rem;
  color: #1D3557;
  font-style: italic;
}
.recipe__source a {
  color: inherit;
  text-decoration: underline;
}

.travel {
  --travel-accent: #457B9D;
}

.travel-post__hero {
  border-top: 6px solid #457B9D;
}
.travel-post__hero img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 8px;
}

.post-card--travel,
.travel-card {
  border-top-color: #457B9D;
}

#map {
  height: 500px;
  width: 100%;
  border-radius: 8px;
  background: #FAF6EC;
}
@media (max-width: 768px) {
  #map {
    height: 360px;
  }
}

.location-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: #457B9D;
  color: #FFFFFF;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.travel-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.series-banner {
  background: #588157;
  border-radius: 8px;
  margin-block: 2rem;
  overflow: hidden;
}
.series-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  gap: 1rem;
}
@media (max-width: 640px) {
  .series-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}
.series-banner__label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.series-banner__series-name {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}
.series-banner__part {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.35);
  color: #FFFFFF;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
}
.series-banner__nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .series-banner__nav {
    flex-wrap: wrap;
  }
}
.series-banner__prev, .series-banner__next, .series-banner__all {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #1D3557;
  background: #FFFFFF;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.series-banner__prev:hover, .series-banner__next:hover, .series-banner__all:hover {
  background: #FAF6EC;
  color: rgb(67.2222222222, 98.5416666667, 66.4583333333);
}

.series-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: #FFFFFF;
  color: #1D3557;
  border: 1px solid #D4D4D4;
  border-left: 3px solid #588157;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.series-intro {
  background: rgba(88, 129, 87, 0.08);
  border-left: 4px solid #588157;
  padding: 1.5rem;
  border-radius: 4px;
  margin-block: 2rem;
  max-width: 60ch;
  font-size: 1.05rem;
}
.series-intro h1, .series-intro h2 {
  color: #588157;
  margin-top: 0;
}

.series-list {
  list-style: none;
  padding: 0;
  margin-block: 2rem;
  border-left: 3px solid #588157;
}
.series-list__item {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #F7F7F7;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: baseline;
}
.series-list__item:last-child {
  border-bottom: 0;
}
.series-list__item a {
  flex: 1;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  color: #1D3557;
  text-decoration: none;
}
.series-list__item a:hover {
  color: #588157;
}
.series-list__item time {
  color: #737373;
  font-size: 0.85rem;
}
.series-list__part {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  color: #1D3557;
  min-width: 60px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.series-timeline {
  position: relative;
  margin: 2.5rem 0;
}
.series-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, #588157 5%, #588157 95%, transparent);
  transform: translateX(-50%);
  z-index: 0;
}
.series-timeline__item {
  display: grid;
  grid-template-columns: 1fr 4rem 1fr;
  align-items: center;
  gap: 0;
  margin-bottom: 3rem;
  position: relative;
}
.series-timeline__item--left .series-timeline__card {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  padding-right: 2rem;
}
.series-timeline__item--left .series-timeline__node {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
}
.series-timeline__item--left .series-timeline__spacer {
  grid-column: 3;
  grid-row: 1;
}
.series-timeline__item--right .series-timeline__spacer {
  grid-column: 1;
  grid-row: 1;
}
.series-timeline__item--right .series-timeline__node {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
}
.series-timeline__item--right .series-timeline__card {
  grid-column: 3;
  grid-row: 1;
  justify-self: start;
  padding-left: 2rem;
}
.series-timeline__node {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #588157;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  position: relative;
  box-shadow: 0 0 0 4px white, 0 0 0 6px #588157;
  flex-shrink: 0;
}
.series-timeline__number {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
}
.series-timeline__card {
  width: 100%;
  max-width: 420px;
  background: white;
  border: 1px solid #e0ece0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.series-timeline__card:hover {
  box-shadow: 0 4px 16px rgba(88, 129, 87, 0.15);
  transform: translateY(-2px);
}
.series-timeline__card-image {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #e8f0e8;
}
.series-timeline__card-image a {
  display: block;
  width: 100%;
  height: 100%;
}
.series-timeline__card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}
.series-timeline__card:hover .series-timeline__card-image img {
  transform: scale(1.03);
}
.series-timeline__card-body {
  padding: 1rem 1.25rem 1.25rem;
}
.series-timeline__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  line-height: 1.35;
}
.series-timeline__title a {
  color: #1D3557;
  text-decoration: none;
}
.series-timeline__title a:hover {
  color: #588157;
}
.series-timeline__excerpt {
  font-size: 0.825rem;
  color: #666;
  margin: 0 0 0.75rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.series-timeline__meta {
  font-size: 0.75rem;
  color: #999;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.series-timeline__read::before {
  content: "·";
  margin-right: 0.5rem;
}
@media (max-width: 680px) {
  .series-timeline::before {
    left: 1.25rem;
  }
  .series-timeline__item {
    grid-template-columns: 3rem 1fr;
    grid-template-rows: auto;
    align-items: start;
    gap: 0 1rem;
    margin-bottom: 2rem;
  }
  .series-timeline__item--left .series-timeline__node, .series-timeline__item--right .series-timeline__node {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    margin-top: 0.2rem;
  }
  .series-timeline__item--left .series-timeline__card, .series-timeline__item--right .series-timeline__card {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
    padding: 0;
    max-width: 100%;
  }
  .series-timeline__item--left .series-timeline__spacer, .series-timeline__item--right .series-timeline__spacer {
    display: none;
  }
}

.series-nav {
  margin: 3rem 0 2rem;
  padding: 1.5rem;
  background: #f0f6f1;
  border: 1px solid #588157;
  border-top: 4px solid #588157;
  border-radius: 4px;
}
.series-nav__back {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #588157;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}
.series-nav__back:hover {
  text-decoration: underline;
}
.series-nav__prevnext {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.series-nav__prev, .series-nav__next {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-decoration: none;
  background: white;
  border: 1px solid #c8dfc8;
  border-radius: 4px;
  padding: 0.75rem 1rem;
  flex: 1;
  max-width: 48%;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.series-nav__prev:hover, .series-nav__next:hover {
  border-color: #588157;
  background: #e8f4e8;
}
.series-nav__prev--empty, .series-nav__next--empty {
  background: none;
  border: none;
  pointer-events: none;
}
.series-nav__next {
  text-align: right;
  margin-left: auto;
}
.series-nav__label {
  font-size: 0.7rem;
  color: #588157;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.series-nav__title {
  font-size: 0.9rem;
  color: #1D3557;
  font-weight: 600;
  line-height: 1.3;
}
.series-nav__toc {
  border-top: 1px solid #c8dfc8;
  padding-top: 1rem;
}
.series-nav__toc summary {
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  color: #588157;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
  user-select: none;
}
.series-nav__toc summary:hover {
  color: #3d6b3d;
}
.series-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.series-nav__item {
  font-size: 0.875rem;
  line-height: 1.4;
}
.series-nav__item a {
  color: #457B9D;
  text-decoration: none;
}
.series-nav__item a:hover {
  text-decoration: underline;
  color: #2d5a7a;
}
.series-nav__item--current {
  font-weight: 700;
  color: #1D3557;
}

@media (max-width: 600px) {
  .series-nav__prevnext {
    flex-direction: column;
  }
  .series-nav__prev,
  .series-nav__next {
    max-width: 100%;
    text-align: left;
  }
}
.lab-intro {
  margin-block: 2rem 3rem;
}
.lab-intro__lead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #1D3557;
  margin: 0 0 0.75rem;
}
.lab-intro__sub {
  font-size: 0.95rem;
  color: #1D3557;
  font-style: italic;
  margin: 0;
}

.builds-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.build-card {
  background: #FFFFFF;
  border: 1px solid rgba(29, 53, 87, 0.08);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin-bottom: 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.build-card:hover {
  border-color: rgba(29, 53, 87, 0.25);
  box-shadow: 0 4px 16px rgba(29, 53, 87, 0.06);
}
.build-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.build-card__date {
  font-family: "JetBrains Mono", Menlo, Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(29, 53, 87, 0.6);
}
.build-card__status {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-family: "JetBrains Mono", Menlo, Consolas, monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
}
.build-card__status--shipped {
  background: rgba(88, 129, 87, 0.15);
  color: #588157;
}
.build-card__status--building {
  background: rgba(244, 196, 48, 0.2);
  color: rgb(156.1995412844, 119.9793577982, 8.3004587156);
}
.build-card__status--abandoned {
  background: rgba(29, 53, 87, 0.08);
  color: rgba(29, 53, 87, 0.5);
}
.build-card__status--archived {
  background: rgba(29, 53, 87, 0.08);
  color: rgba(29, 53, 87, 0.5);
}
.build-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.build-card__tag {
  font-family: "JetBrains Mono", Menlo, Consolas, monospace;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  background: rgba(42, 157, 143, 0.08);
  color: #2A9D8F;
  border-radius: 4px;
}
.build-card__title {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  line-height: 1.2;
  color: #1D3557;
  margin: 0.5rem 0 0 0;
}
.build-card__title a {
  color: inherit;
  text-decoration: none;
}
.build-card__title a:hover {
  color: #E63946;
}
.build-card__tagline, .build-card__excerpt {
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(29, 53, 87, 0.7);
  margin: 0;
}
.build-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(29, 53, 87, 0.06);
}
.build-card__repo {
  font-family: "JetBrains Mono", Menlo, Consolas, monospace;
  font-size: 0.85rem;
  color: #E63946;
  text-decoration: none;
}
.build-card__repo:hover {
  text-decoration: underline;
}

.lab-empty {
  font-style: italic;
  color: #1D3557;
  text-align: center;
  padding: 3rem;
  background: #FAF6EC;
  border-radius: 8px;
}

.build {
  padding-block: 2rem 4rem;
}
.build__header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(29, 53, 87, 0.08);
}
.build__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-family: "JetBrains Mono", Menlo, Consolas, monospace;
  font-size: 0.8rem;
  color: #1D3557;
  align-items: center;
}
.build__meta time {
  font-weight: 700;
}
.build__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.15;
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
}
.build__tagline {
  font-size: 1.1rem;
  color: #1D3557;
  line-height: 1.6;
  margin: 0 0 1.5rem;
  max-width: 60ch;
}
.build__status {
  font-family: "JetBrains Mono", Menlo, Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 3px;
}
.build__status--shipped {
  color: rgb(36.0555555556, 52.8541666667, 35.6458333333);
  background: rgba(88, 129, 87, 0.18);
}
.build__status--building {
  color: rgb(122.3009174312, 93.9412844037, 6.4990825688);
  background: rgba(244, 196, 48, 0.25);
}
.build__status--archived {
  color: #1D3557;
  background: rgba(29, 53, 87, 0.12);
}
.build__facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  padding: 1rem;
  background: #FAF6EC;
  border-radius: 6px;
  margin-top: 1rem;
}
.build__fact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.build__fact-label {
  font-family: "JetBrains Mono", Menlo, Consolas, monospace;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1D3557;
}
.build__fact-value, .build__fact-link {
  font-family: "JetBrains Mono", Menlo, Consolas, monospace;
  font-size: 0.85rem;
  color: #1D3557;
}
.build__fact-link {
  color: rgb(25.8542713568, 96.6457286432, 88.027638191);
  text-decoration: underline;
  text-decoration-color: rgba(42, 157, 143, 0.3);
}
.build__fact-link:hover {
  text-decoration-color: #2A9D8F;
}
.build__tech {
  display: inline-block;
  font-family: "JetBrains Mono", Menlo, Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgb(25.8542713568, 96.6457286432, 88.027638191);
  background: rgba(42, 157, 143, 0.12);
  padding: 2px 8px;
  border-radius: 3px;
  margin-right: 4px;
  margin-bottom: 4px;
}
.build__hero {
  margin-bottom: 2rem;
  border-radius: 8px;
  overflow: hidden;
}
.build__hero img {
  width: 100%;
  height: auto;
  display: block;
}
.build__layout {
  display: block;
}
.build--with-toc .build__layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .build--with-toc .build__layout {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1025px) {
  .build__toc {
    position: sticky;
    top: 2rem;
    align-self: start;
  }
}
@media (max-width: 1024px) {
  .build__toc {
    border-bottom: 1px solid rgba(29, 53, 87, 0.1);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.build__main {
  min-width: 0;
}
.build__body {
  line-height: 1.75;
  font-size: 1rem;
}
.build__body h2 {
  font-size: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(29, 53, 87, 0.08);
}
.build__body h3 {
  font-size: 1.15rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
.build__body p {
  margin: 0 0 1rem;
}
.build__body code {
  font-family: "JetBrains Mono", Menlo, Consolas, monospace;
  font-size: 0.875em;
  background: rgba(29, 53, 87, 0.06);
  padding: 2px 6px;
  border-radius: 3px;
  color: rgb(209.5426008969, 26.4573991031, 40.2152466368);
}
.build__body pre {
  background: #1a1f2e;
  color: #e6e8eb;
  border-radius: 6px;
  padding: 1rem 1.5rem;
  margin-block: 1.5rem;
  overflow-x: auto;
  font-family: "JetBrains Mono", Menlo, Consolas, monospace;
  font-size: 0.85rem;
  line-height: 1.6;
}
.build__body pre code {
  background: none;
  padding: 0;
  color: inherit;
  font-size: inherit;
}
.build__body a:not(.build__fact-link):not(.breadcrumb__link) {
  color: rgb(25.8542713568, 96.6457286432, 88.027638191);
  text-decoration: underline;
  text-decoration-color: rgba(42, 157, 143, 0.3);
  text-underline-offset: 2px;
}
.build__body a:not(.build__fact-link):not(.breadcrumb__link):hover {
  text-decoration-color: #2A9D8F;
}
.build__body blockquote {
  border-left: 3px solid #2A9D8F;
  padding: 0.5rem 1.5rem;
  margin-block: 1.5rem;
  background: rgba(42, 157, 143, 0.04);
  font-style: italic;
  color: #1D3557;
}
.build__body ul, .build__body ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.build__body ul li, .build__body ol li {
  margin-bottom: 0.5rem;
}
.build__body hr {
  border: none;
  border-top: 1px solid rgba(29, 53, 87, 0.1);
  margin-block: 2rem;
}
.build__body table {
  width: 100%;
  border-collapse: collapse;
  margin-block: 1.5rem;
  font-size: 0.9rem;
}
.build__body table th, .build__body table td {
  text-align: left;
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid rgba(29, 53, 87, 0.1);
}
.build__body table th {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  background: #FAF6EC;
}
.build__takeaways {
  background: #FAF6EC;
  border-left: 4px solid #2A9D8F;
  border-radius: 0 6px 6px 0;
  padding: 1.5rem;
  margin-block: 2rem;
}
.build__takeaways h2 {
  font-size: 1.1rem;
  margin: 0 0 0.75rem;
  border-bottom: none;
  padding-bottom: 0;
}
.build__takeaways ul {
  margin: 0;
  padding-left: 1.5rem;
}
.build__takeaways ul li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}
.build__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(29, 53, 87, 0.08);
}

.home-lab {
  padding-block: 3rem;
  background: #FFFFFF;
}
.home-lab__header {
  text-align: center;
  margin-bottom: 2rem;
  max-width: 60ch;
  margin-inline: auto;
}
.home-lab__eyebrow {
  font-family: "JetBrains Mono", Menlo, Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(25.8542713568, 96.6457286432, 88.027638191);
  margin: 0 0 0.5rem;
}
.home-lab__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.75rem;
}
.home-lab__sub {
  color: #1D3557;
  margin: 0;
}
.home-lab__sub a {
  color: rgb(25.8542713568, 96.6457286432, 88.027638191);
  font-weight: 700;
}
.home-lab__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 768px) {
  .home-lab__grid {
    grid-template-columns: 1fr;
  }
}
.home-lab__card {
  display: block;
  padding: 1.5rem;
  background: #FFFFFF;
  border: 1px solid rgba(29, 53, 87, 0.1);
  border-radius: 6px;
  text-decoration: none;
  color: #1D3557;
  transition: border-color 0.2s, transform 0.2s;
}
.home-lab__card:hover {
  border-color: rgba(42, 157, 143, 0.4);
  transform: translateY(-2px);
}
.home-lab__card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
.home-lab__card-meta time {
  font-family: "JetBrains Mono", Menlo, Consolas, monospace;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1D3557;
}
.home-lab__card-status {
  font-family: "JetBrains Mono", Menlo, Consolas, monospace;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgb(25.8542713568, 96.6457286432, 88.027638191);
  background: rgba(42, 157, 143, 0.12);
  padding: 2px 6px;
  border-radius: 3px;
}
.home-lab__card-title {
  font-size: 1rem;
  line-height: 1.3;
  margin: 0 0 0.75rem;
  font-weight: 700;
}
.home-lab__card-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.home-lab__card-stack span {
  font-family: "JetBrains Mono", Menlo, Consolas, monospace;
  font-size: 0.7rem;
  color: #1D3557;
  background: rgba(29, 53, 87, 0.08);
  padding: 2px 6px;
  border-radius: 3px;
}

.toc-inner {
  background: #FAF6EC;
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
}

.toc-label {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(29, 53, 87, 0.5);
  margin: 0 0 0.75rem;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  counter-reset: none;
}
.toc-list li {
  margin: 0;
}
.toc-list a {
  display: block;
  font-size: 0.82rem;
  line-height: 1.4;
  color: rgba(29, 53, 87, 0.7);
  text-decoration: none;
  padding: 0.25rem 0 0.25rem 0.75rem;
  border-left: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.toc-list a:hover, .toc-list a.active {
  color: rgb(25.8542713568, 96.6457286432, 88.027638191);
  border-left-color: #2A9D8F;
}

.blog-index {
  padding-block: 3rem;
}
.blog-index__header {
  margin-bottom: 2rem;
}
.blog-index__title {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #1D3557;
  margin-bottom: 0.5rem;
}
.blog-index__sub {
  color: rgba(29, 53, 87, 0.7);
  font-size: 1.125rem;
}
.blog-index__controls {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .blog-index__controls {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.blog-index__search-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(29, 53, 87, 0.2);
  border-radius: 6px;
  font-size: 1rem;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #FFFFFF;
}
.blog-index__search-input:focus {
  outline: 2px solid #E63946;
  outline-offset: 2px;
  border-color: #E63946;
}
@media (min-width: 768px) {
  .blog-index__search-input {
    max-width: 360px;
  }
}
.blog-index__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.blog-index__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .blog-index__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .blog-index__grid {
    grid-template-columns: 1fr;
  }
}
.blog-index__empty {
  grid-column: 1/-1;
  text-align: center;
  padding-block: 2rem;
  color: rgba(29, 53, 87, 0.6);
  font-size: 1rem;
}

.cat-pill {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1D3557;
  background: #FFFFFF;
  border: 1px solid rgba(29, 53, 87, 0.15);
  border-left: 3px solid var(--cat-color, #1D3557);
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.15s ease;
}
.cat-pill:hover {
  border-color: var(--cat-color, #1D3557);
  background: rgba(29, 53, 87, 0.03);
}
.cat-pill--active {
  background: #1D3557;
  color: #FFFFFF;
  border-color: #1D3557;
}

.post-card {
  background: #FFFFFF;
  border: 1px solid rgba(29, 53, 87, 0.08);
  border-top: 3px solid var(--card-color, #1D3557);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29, 53, 87, 0.08);
}
.post-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.post-card__media {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: rgba(29, 53, 87, 0.05);
}
.post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.post-card__media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-card__placeholder-text {
  color: rgba(255, 255, 255, 0.95);
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}
.post-card__body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.post-card__category {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--card-text-color, var(--card-color, #1D3557));
  margin-bottom: 0.5rem;
}
.post-card__title {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.25rem;
  color: #1D3557;
  line-height: 1.3;
  margin: 0 0 0.75rem 0;
}
.post-card__excerpt {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(29, 53, 87, 0.75);
  margin: 0 0 1rem 0;
  flex: 1;
}
.post-card__date {
  font-size: 0.8rem;
  color: #404040;
  margin-top: auto;
}

.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 2rem;
  border-top: 1px solid rgba(29, 53, 87, 0.1);
  margin-top: 2rem;
}
.pagination__info {
  color: rgba(29, 53, 87, 0.6);
  font-size: 0.95rem;
}
.pagination__links {
  display: flex;
  gap: 0.75rem;
}

.tag-archive {
  padding-block: 3rem;
}
.tag-archive__header {
  margin-bottom: 2rem;
  text-align: center;
}
.tag-archive__eyebrow {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #E63946;
  margin: 0 0 0.5rem 0;
}
.tag-archive__title {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #1D3557;
  margin: 0 0 0.5rem 0;
  text-transform: lowercase;
}
.tag-archive__title::before {
  content: "#";
  color: #E63946;
  margin-right: 0.5rem;
}
.tag-archive__count {
  color: rgba(29, 53, 87, 0.6);
  margin: 0;
}

.pillar-hero {
  position: relative;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 480px;
  display: flex;
  align-items: center;
  color: #FFFFFF;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .pillar-hero {
    min-height: 360px;
  }
}
.pillar-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(29, 53, 87, 0.65) 0%, rgba(29, 53, 87, 0.35) 100%);
}
.pillar-hero > .container {
  position: relative;
  z-index: 1;
  width: 100%;
}
.pillar-hero__inner {
  max-width: 720px;
  padding-block: 3rem;
}
.pillar-hero--center .pillar-hero__inner {
  margin-inline: auto;
  text-align: center;
}
.pillar-hero__eyebrow {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 0.75rem 0;
}
.pillar-hero__title {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
  color: #FFFFFF;
  margin: 0 0 1rem 0;
  text-shadow: 0 2px 16px rgba(29, 53, 87, 0.4);
}
.pillar-hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 1.5rem 0;
  max-width: 600px;
  text-shadow: 0 1px 8px rgba(29, 53, 87, 0.4);
}
.pillar-hero--center .pillar-hero__subtitle {
  margin-inline: auto;
}
.pillar-hero__cta {
  background: #E63946;
  border-color: #E63946;
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(29, 53, 87, 0.25);
}
.pillar-hero__cta:hover {
  background: rgb(218.599103139, 27.600896861, 41.9533632287);
  border-color: rgb(218.599103139, 27.600896861, 41.9533632287);
  color: #FFFFFF;
}

.post-hero {
  background: #FFFFFF;
  padding-block: 2rem 0;
  position: relative;
}
.post-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .post-hero__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.post-hero__text {
  min-width: 0;
}
.post-hero__title {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.15;
  color: #1D3557;
  margin: 0 0 1rem 0;
}
.post-hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.5;
  color: rgba(29, 53, 87, 0.75);
  margin: 0 0 1.25rem 0;
}
.post-hero__audio {
  background: rgba(42, 157, 143, 0.06);
  border-left: 4px solid #2A9D8F;
  border-radius: 0 8px 8px 0;
  padding: 0.75rem 1rem;
  margin: 0 0 1.25rem 0;
}
.post-hero__audio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgb(31.2361809045, 116.7638190955, 106.351758794);
  margin-bottom: 0.5rem;
}
.post-hero__audio-label svg {
  flex-shrink: 0;
}
.post-hero__audio-player {
  width: 100%;
  height: 36px;
}
.post-hero__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.post-hero__author-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #E63946;
  object-fit: cover;
  flex-shrink: 0;
}
.post-hero__author-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.post-hero__author-name {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  color: #1D3557;
  font-size: 0.95rem;
}
.post-hero__author-bio {
  font-size: 0.8rem;
  color: rgba(29, 53, 87, 0.6);
}
.post-hero__media {
  aspect-ratio: 4/3;
  align-self: stretch;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(29, 53, 87, 0.05);
}
.post-hero__media picture {
  display: block;
  width: 100%;
  height: 100%;
}
.post-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.post-hero__media--placeholder {
  background: var(--cat-color, #1D3557);
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-hero__media--placeholder span {
  color: #FFFFFF;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.16em;
}
.post-hero__meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid rgba(29, 53, 87, 0.08);
}
@media (max-width: 768px) {
  .post-hero__meta-row {
    gap: 0.75rem 1.25rem;
  }
}
.post-hero__meta-cell {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.post-hero__meta-cell--share {
  margin-left: auto;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 768px) {
  .post-hero__meta-cell--share {
    margin-left: 0;
    width: 100%;
  }
}
.post-hero__meta-label {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(29, 53, 87, 0.5);
}
.post-hero__cat-pill {
  display: inline-block;
  align-self: flex-start;
  padding: 0.25rem 0.75rem;
  background: rgba(29, 53, 87, 0.04);
  color: #1D3557;
  border-left: 3px solid var(--cat-color, #1D3557);
  border-radius: 4px;
  text-decoration: none;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
}
.post-hero__cat-pill:hover {
  background: rgba(29, 53, 87, 0.08);
}
.post-hero__divider {
  height: 6px;
  background: var(--cat-color, #E63946);
  position: relative;
  margin-top: 1.5rem;
}
.post-hero__divider-notch {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 24px solid transparent;
  border-right: 24px solid transparent;
  border-top: 18px solid var(--cat-color, #E63946);
}

.post-hero {
  background: linear-gradient(180deg, rgba(250, 246, 236, 0.4) 0%, #FFFFFF 80%);
}
.post-hero__title {
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.post-hero__media {
  box-shadow: 0 12px 32px rgba(29, 53, 87, 0.12);
}
.post-hero__audio {
  padding: 1rem 1.25rem;
  border-radius: 0 10px 10px 0;
}
.post-hero__author-photo {
  width: 56px;
  height: 56px;
  border-width: 3px;
}

.post-tldr {
  background: rgba(42, 157, 143, 0.05);
  border-left: 4px solid #2A9D8F;
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.5rem;
  margin: 0 0 2rem 0;
}
.post-tldr__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgb(31.2361809045, 116.7638190955, 106.351758794);
  background: rgba(42, 157, 143, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}
.post-tldr__label svg {
  flex-shrink: 0;
}
.post-tldr__body {
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(29, 53, 87, 0.9);
}
.post-tldr__body p {
  margin: 0 0 0.5rem 0;
}
.post-tldr__body p:last-child {
  margin: 0;
}
.post-tldr__body ul, .post-tldr__body ol {
  margin: 0.5rem 0;
  padding-left: 1.25rem;
}
.post-tldr__body li {
  margin-bottom: 0.5rem;
}
.post-tldr__body li:last-child {
  margin-bottom: 0;
}
.post-tldr__body li::marker {
  color: #2A9D8F;
}
.post-tldr__body a {
  color: rgb(25.8542713568, 96.6457286432, 88.027638191);
}

.layout-post .post--polished .post__body .table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 2rem 0;
  border: 1px solid rgba(29, 53, 87, 0.12);
  border-radius: 8px;
}
.layout-post .post--polished .post__body .table-wrapper table {
  margin: 0;
  border: none;
}
.layout-post .post--polished .post__body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 2rem 0;
  border: 1px solid rgba(29, 53, 87, 0.12);
  border-radius: 8px;
  overflow: hidden;
}
.layout-post .post--polished .post__body table th {
  background: #FAF6EC;
  color: #1D3557;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 2px solid rgba(29, 53, 87, 0.18);
}
.layout-post .post--polished .post__body table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(29, 53, 87, 0.08);
  vertical-align: top;
}
.layout-post .post--polished .post__body table tbody tr:nth-child(even) td {
  background: rgba(29, 53, 87, 0.025);
}
.layout-post .post--polished .post__body table tbody tr:last-child td {
  border-bottom: none;
}
.layout-post .post--polished .post__body table td strong {
  color: var(--post-accent-color, #E63946);
}
.layout-post .post--polished .post__body h2 {
  position: relative;
  padding-left: 1.25rem;
}
.layout-post .post--polished .post__body h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  bottom: 0.35em;
  width: 5px;
  background: var(--post-accent-color, #E63946);
  border-radius: 2px;
}
.layout-post .post--polished .post__body h3 {
  position: relative;
  padding-left: 1rem;
}
.layout-post .post--polished .post__body h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  bottom: 0.4em;
  width: 3px;
  background: var(--post-accent-color, #E63946);
  border-radius: 2px;
  opacity: 0.75;
}
.layout-post .post--polished .post__body .footnotes {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(29, 53, 87, 0.12);
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(29, 53, 87, 0.88);
}
.layout-post .post--polished .post__body .footnotes::before {
  content: "Sources";
  display: block;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--post-accent-color, #E63946);
  margin-bottom: 1rem;
}
.layout-post .post--polished .post__body .footnotes ol {
  padding-left: 1.5rem;
  margin: 0;
}
.layout-post .post--polished .post__body .footnotes ol li {
  margin-bottom: 0.75rem;
}
.layout-post .post--polished .post__body .footnotes ol li::marker {
  color: var(--post-accent-color, #E63946);
  font-weight: 700;
}
.layout-post .post--polished .post__body .footnotes .reversefootnote {
  margin-left: 0.4em;
  color: var(--post-accent-color, #E63946);
  text-decoration: none;
}
.layout-post .post--polished .post__body .footnotes .reversefootnote:hover {
  text-decoration: underline;
}
.layout-post .post--polished .post__body .stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
  list-style: none;
  padding: 0;
}
@media (max-width: 768px) {
  .layout-post .post--polished .post__body .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .layout-post .post--polished .post__body .stat-grid {
    grid-template-columns: 1fr;
  }
}
.layout-post .post--polished .post__body .stat-grid__item {
  background: #FAF6EC;
  border-left: 4px solid var(--post-accent-color, #E63946);
  border-radius: 0 8px 8px 0;
  padding: 1.25rem;
  margin: 0;
}
.layout-post .post--polished .post__body .stat-grid__number {
  display: block;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1;
  color: var(--post-accent-color, #E63946);
  margin-bottom: 0.5rem;
}
.layout-post .post--polished .post__body .stat-grid__label {
  display: block;
  font-size: 0.9rem;
  color: rgba(29, 53, 87, 0.88);
  line-height: 1.4;
}
@media print {
  .layout-post .post--polished .post__body h2::before,
  .layout-post .post--polished .post__body h3::before {
    background: #444 !important;
  }
  .layout-post .post--polished .post__body table {
    border-color: #000 !important;
  }
  .layout-post .post--polished .post__body table th {
    background: #eee !important;
    color: #000 !important;
  }
  .layout-post .post--polished .post__body .stat-grid__item {
    background: #f6f6f6 !important;
    border-left-color: #000 !important;
  }
  .layout-post .post--polished .post__body .footnotes::before {
    color: #000 !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .layout-post .post--polished .post__body * {
    animation-duration: 0.001s !important;
  }
}

.hero-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.5rem;
  margin-left: auto;
  position: relative;
  justify-content: flex-end;
  width: fit-content;
  max-width: 100%;
}
.hero-share__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 2.75rem;
  width: 2.75rem;
  padding: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #1D3557 !important;
  border: none;
  font-size: 0.95rem;
  line-height: 1;
  text-decoration: none !important;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  text-shadow: none !important;
}
.hero-share__btn i {
  font-size: 1.05rem;
}
.hero-share__btn .share-icon {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
}
.hero-share__btn:hover, .hero-share__btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.4);
  filter: brightness(1.1);
  outline: none;
  color: #1D3557 !important;
}
.hero-share__copy {
  width: auto;
  padding: 0 1.15rem 0 1rem;
  font-family: inherit;
  font-weight: 600;
  background: #C5283D;
  color: #fff !important;
}
.hero-share__copy:hover, .hero-share__copy:focus {
  color: #fff !important;
}
.hero-share__btn--facebook {
  background: #1877f2;
  color: #fff !important;
}
.hero-share__btn--facebook:hover, .hero-share__btn--facebook:focus {
  color: #fff !important;
}
.hero-share__btn--x {
  background: #0f1419;
  color: #fff !important;
}
.hero-share__btn--x:hover, .hero-share__btn--x:focus {
  color: #fff !important;
}
.hero-share__btn--linkedin {
  background: #0a66c2;
  color: #fff !important;
}
.hero-share__btn--linkedin:hover, .hero-share__btn--linkedin:focus {
  color: #fff !important;
}
.hero-share__btn--bluesky {
  background: #0085ff;
  color: #fff !important;
}
.hero-share__btn--bluesky:hover, .hero-share__btn--bluesky:focus {
  color: #fff !important;
}
.hero-share__btn--reddit {
  background: #ff4500;
  color: #fff !important;
}
.hero-share__btn--reddit:hover, .hero-share__btn--reddit:focus {
  color: #fff !important;
}
.hero-share__btn--threads {
  background: #000000;
  color: #fff !important;
}
.hero-share__btn--threads:hover, .hero-share__btn--threads:focus {
  color: #fff !important;
}
.hero-share__btn--whatsapp {
  background: #25d366;
  color: #fff !important;
}
.hero-share__btn--whatsapp:hover, .hero-share__btn--whatsapp:focus {
  color: #fff !important;
}
.hero-share__btn--telegram {
  background: #229ed9;
  color: #fff !important;
}
.hero-share__btn--telegram:hover, .hero-share__btn--telegram:focus {
  color: #fff !important;
}
.hero-share__btn--email {
  background: #2A9D8F;
  color: #fff !important;
}
.hero-share__btn--email:hover, .hero-share__btn--email:focus {
  color: #fff !important;
}
.hero-share__label {
  font-size: 0.85rem;
  letter-spacing: 0.01em;
}
.hero-share__toast {
  position: absolute;
  bottom: calc(100% + 0.4rem);
  right: 0;
  padding: 0.3rem 0.7rem;
  background: #1D3557;
  color: #fff;
  font-size: 0.78rem;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.hero-share__toast.is-visible {
  opacity: 1;
}
.hero-share__more {
  position: relative;
  display: inline-flex;
}
.hero-share__more-toggle {
  background: #1D3557;
  color: #fff !important;
}
.hero-share__more-toggle:hover, .hero-share__more-toggle:focus {
  color: #fff !important;
}
.hero-share__panel {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(4, 2.75rem);
  gap: 0.5rem;
  padding: 0.6rem;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  width: max-content;
  max-width: 90vw;
}
.hero-share__panel[hidden] {
  display: none;
}
.hero-share__panel::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 1rem;
  width: 12px;
  height: 12px;
  background: inherit;
  transform: rotate(45deg);
  box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.08);
}

.page__share {
  margin: 3rem 0 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(29, 53, 87, 0.1);
  border-bottom: 1px solid rgba(29, 53, 87, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.page__share-title {
  flex-basis: 100%;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(29, 53, 87, 0.85);
  margin: 0 0 0.75rem 0;
}
.page__share .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  margin: 0;
  padding: 0.5rem 1rem;
  min-height: 44px;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  border-width: 0;
  border-radius: 999px;
  cursor: pointer;
  color: #fff;
}
.page__share .btn i {
  margin: 0;
}
.page__share .btn .share-icon {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  vertical-align: baseline;
  margin: 0;
}
.page__share .btn:hover, .page__share .btn:focus, .page__share .btn:visited {
  color: #fff;
}
.page__share .btn--bluesky {
  background-color: #0F6FE0;
  color: #fff;
}
.page__share .btn--bluesky:hover, .page__share .btn--bluesky:focus {
  background-color: rgb(11.1589958159, 82.5765690377, 166.6410041841);
  color: #fff;
}
.page__share .btn--bluesky:visited {
  color: #fff;
}
.page__share .btn--twitter {
  background-color: #0F70B7;
}
.page__share .btn--twitter:hover, .page__share .btn--twitter:focus {
  background-color: rgb(12, 89.6, 146.4);
}
.page__share .btn--facebook {
  background-color: #3b5998;
}
.page__share .btn--facebook:hover, .page__share .btn--facebook:focus {
  background-color: rgb(47.2, 71.2, 121.6);
}
.page__share .btn--linkedin {
  background-color: #006FA6;
}
.page__share .btn--linkedin:hover, .page__share .btn--linkedin:focus {
  background-color: rgb(0, 88.8, 132.8);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-block: 2rem;
}
@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}
.gallery__item {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 6px;
  background: rgba(29, 53, 87, 0.05);
  cursor: zoom-in;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.gallery__item:hover img {
  transform: scale(1.04);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(29, 53, 87, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.gallery-lightbox.is-open {
  display: flex;
}
.gallery-lightbox__img {
  max-width: 95vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}
.gallery-lightbox__caption {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  color: #FFFFFF;
  font-size: 0.9rem;
  background: rgba(29, 53, 87, 0.8);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  margin: 0;
  max-width: 80vw;
  text-align: center;
}
.gallery-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: 0;
  color: #FFFFFF;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
}
.gallery-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.1);
}
.gallery-lightbox__close:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: 2px;
}

.impact-counter {
  margin: 2.5rem 0;
  text-align: center;
}
.impact-counter__heading, .impact-counter__title {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(29, 53, 87, 0.7);
  margin: 0 0 1.5rem 0;
}
.impact-counter__stats, .impact-counter__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .impact-counter__stats, .impact-counter__grid {
    grid-template-columns: 1fr;
  }
}
.impact-counter__card, .impact-counter__stat {
  background: #FAF6EC;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.impact-counter__number, .impact-counter__num {
  display: block;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #2A9D8F;
  line-height: 1;
}
.impact-counter__number small, .impact-counter__num small {
  font-size: 0.55em;
  font-weight: 600;
  color: rgba(29, 53, 87, 0.6);
  margin-left: 0.25rem;
}
.impact-counter__label {
  display: block;
  font-size: 0.875rem;
  color: rgba(29, 53, 87, 0.7);
}

.lifetime-impact {
  background: #1D3557;
  color: #FFFFFF;
  padding: 4rem 0;
  margin-block: 3rem 0;
}
.lifetime-impact__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding-inline: 1.5rem;
}
.lifetime-impact__heading {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: #FFFFFF;
  margin: 0 0 0.75rem 0;
  text-align: center;
}
.lifetime-impact__intro {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.6;
}
.lifetime-impact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .lifetime-impact__grid {
    grid-template-columns: 1fr;
  }
}
.lifetime-impact__stat {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  border-top: 4px solid #F4C430;
}
.lifetime-impact__number {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #F4C430;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.lifetime-impact__label {
  color: #FFFFFF;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.lifetime-impact__note {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  line-height: 1.4;
}

.image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 3/2;
  background: #FAF6EC;
  border: 2px dashed rgba(42, 157, 143, 0.4);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  margin: 1.5rem 0;
  text-align: center;
}
.image-placeholder__label {
  font-family: "JetBrains Mono", Menlo, Consolas, monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #2A9D8F;
  margin-bottom: 0.5rem;
}
.image-placeholder__hint {
  color: rgba(29, 53, 87, 0.5);
  font-size: 0.9rem;
  font-style: italic;
}

.store-intro {
  max-width: 720px;
  margin: 0 0 2rem 0;
}
.store-intro p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(29, 53, 87, 0.85);
  margin-bottom: 1rem;
}

.store-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(29, 53, 87, 0.1);
}

.store-filter {
  padding: 0.5rem 1rem;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: #FFFFFF;
  color: #1D3557;
  border: 1px solid rgba(29, 53, 87, 0.15);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.store-filter:hover {
  border-color: #E63946;
  color: #E63946;
}
.store-filter:focus-visible {
  outline: 2px solid #E63946;
  outline-offset: 2px;
}
.store-filter.is-active {
  background: #1D3557;
  color: #FFFFFF;
  border-color: #1D3557;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 1024px) {
  .store-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .store-grid {
    grid-template-columns: 1fr;
  }
}

.store-card {
  background: #FFFFFF;
  border: 1px solid rgba(29, 53, 87, 0.08);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.store-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29, 53, 87, 0.08);
  color: inherit;
}
.store-card.is-hidden {
  display: none;
}
.store-card__media {
  aspect-ratio: 4/3;
  background: rgba(29, 53, 87, 0.05);
  overflow: hidden;
}
.store-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.store-card__media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}
.store-card__media--placeholder span {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
}
.store-card__media--placeholder[data-category=workbook] {
  background: #E63946;
}
.store-card__media--placeholder[data-category=course] {
  background: #2A9D8F;
}
.store-card__media--placeholder[data-category=coaching] {
  background: #7B2CBF;
}
.store-card__media--placeholder[data-category=template] {
  background: #457B9D;
}
.store-card__media--placeholder[data-category=strategy] {
  background: #588157;
}
.store-card__body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.store-card__badge {
  display: inline-block;
  align-self: flex-start;
  padding: 0.25rem 0.5rem;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(244, 196, 48, 0.2);
  color: rgb(156.1995412844, 119.9793577982, 8.3004587156);
  border-radius: 4px;
  margin-bottom: 0.5rem;
}
.store-card__title {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.2rem;
  color: #1D3557;
  margin: 0 0 0.5rem 0;
}
.store-card__price {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #E63946;
  margin: 0 0 0.75rem 0;
}
.store-card__summary {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(29, 53, 87, 0.7);
  flex: 1;
  margin: 0 0 1rem 0;
}
.store-card__cta {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #E63946;
}

.site-header__search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  margin-left: 0.75rem;
  background: rgba(29, 53, 87, 0.04);
  border: 1px solid rgba(29, 53, 87, 0.08);
  border-radius: 50%;
  color: #1D3557;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.15s;
}
.site-header__search-toggle svg {
  width: 18px;
  height: 18px;
  pointer-events: none;
}
.site-header__search-toggle:hover {
  background: #E63946;
  border-color: #E63946;
  color: #FFFFFF;
  transform: translateY(-1px);
}
.site-header__search-toggle:focus-visible {
  outline: 2px solid #E63946;
  outline-offset: 2px;
}

.site-search {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(29, 53, 87, 0.92);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 12vh 1rem 1rem;
}
.site-search.is-open {
  display: flex;
}
.site-search__inner {
  width: 100%;
  max-width: 720px;
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  max-height: 70vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}
.site-search__close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  background: transparent;
  border: 0;
  color: rgba(29, 53, 87, 0.5);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  z-index: 1;
  border-radius: 50%;
}
.site-search__close:hover {
  color: #1D3557;
  background: rgba(29, 53, 87, 0.04);
}
.site-search__close:focus-visible {
  outline: 2px solid #E63946;
  outline-offset: 2px;
}
.site-search__input {
  width: 100%;
  padding: 1.5rem 3rem 1rem 1.5rem;
  border: 0;
  border-bottom: 1px solid rgba(29, 53, 87, 0.1);
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.25rem;
  color: #1D3557;
  background: #FFFFFF;
}
.site-search__input:focus {
  outline: none;
  border-bottom-color: #E63946;
}
.site-search__results {
  overflow-y: auto;
  padding: 0.5rem 0;
}
.site-search__hint {
  padding: 1.5rem;
  color: rgba(29, 53, 87, 0.5);
  text-align: center;
  margin: 0;
}

.search-result {
  display: block;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid rgba(29, 53, 87, 0.04);
}
.search-result:hover, .search-result.is-focused {
  background: rgba(29, 53, 87, 0.03);
}
.search-result__type {
  display: inline-block;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2A9D8F;
  margin-bottom: 0.25rem;
}
.search-result__title {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.05rem;
  color: #1D3557;
  margin: 0 0 0.25rem 0;
}
.search-result__excerpt {
  font-size: 0.875rem;
  color: rgba(29, 53, 87, 0.65);
  margin: 0;
  line-height: 1.4;
}

details.legal-detail {
  margin: 1.5rem 0;
  border-left: 4px solid #1F7368;
  border-radius: 0 8px 8px 0;
  background: #faf6f1;
  overflow: hidden;
}
details.legal-detail > summary {
  padding: 0.75rem 1rem;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  color: #155952;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  user-select: none;
}
details.legal-detail > summary::before {
  content: "📋";
  font-size: 0.8rem;
}
details.legal-detail > summary::after {
  content: " ▼";
  font-size: 0.7rem;
  margin-left: auto;
  color: #1F7368;
}
details.legal-detail > summary::-webkit-details-marker {
  display: none;
}
details.legal-detail > summary:hover {
  color: #e05c5c;
  background: rgba(183, 227, 229, 0.3);
}
details.legal-detail[open] summary::after {
  content: " ▲";
}
details.legal-detail .legal-detail-body {
  padding: 1rem 1.25rem 1rem 1rem;
  border-top: 1px solid #b7e3e5;
  font-size: 0.9rem;
  color: #2a2a2a;
}
details.legal-detail .legal-detail-body p:last-child {
  margin-bottom: 0;
}
details.legal-detail .legal-detail-body table {
  margin: 1rem 0;
  font-size: 0.85rem;
}
details.legal-detail .legal-detail-body ul, details.legal-detail .legal-detail-body ol {
  padding-left: 1.25rem;
}

.tldr-box {
  position: relative;
  background: linear-gradient(180deg, #fafcfc 0%, #f3f9f9 100%);
  border: 1px solid #cfe3e4;
  border-radius: 10px;
  padding: 2.15em 1.6em 1.3em;
  margin: 2.25em 0 1.8em;
  box-shadow: 0 2px 14px rgba(30, 58, 95, 0.06);
}
.tldr-box .tldr-label,
.tldr-box > h3:first-child {
  position: absolute;
  top: -0.9em;
  left: 1.2em;
  background: linear-gradient(135deg, #5db1b4 0%, #3e9093 100%);
  color: #fff;
  font-size: 0.78em;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45em 0.95em;
  border-radius: 999px;
  margin: 0;
  box-shadow: 0 2px 6px rgba(30, 58, 95, 0.18);
  line-height: 1;
}
.tldr-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.tldr-box li {
  position: relative;
  font-size: 0.95em;
  line-height: 1.6;
  color: #2a2a2a;
  margin-bottom: 0.65em;
  padding-left: 1.6em;
}
.tldr-box li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: #5db1b4;
  font-weight: 700;
  font-size: 1.05em;
}
.tldr-box li:last-child {
  margin-bottom: 0;
}
.tldr-box li strong {
  color: #1e3a5f;
}

.stat-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 1.2em 0;
}

@media (max-width: 900px) {
  .stat-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .stat-card-grid {
    grid-template-columns: 1fr;
  }
}
.stat-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 1.2rem 1rem;
  text-align: center;
}

.stat-card-number {
  font-size: 2.4em;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.3em;
}

.stat-card-number.teal {
  color: #1F7368;
}

.stat-card-number.coral {
  color: #B83A3A;
}

.stat-card-label {
  font-size: 0.85em;
  color: #555;
  line-height: 1.4;
}

.stat-callout {
  background: #f7f7f7;
  border-left: 4px solid #5db1b4;
  padding: 1.1em 1.4em;
  margin: 1.5em 0;
  border-radius: 0 4px 4px 0;
}

.stat-callout .number {
  font-size: 2em;
  font-weight: 700;
  color: #1F7368;
  display: block;
  line-height: 1.1;
}

.stat-callout .label {
  font-size: 0.88em;
  color: #555;
  margin-top: 0.2em;
  display: block;
}

.two-col-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5em 0;
}

@media (max-width: 600px) {
  .two-col-compare {
    grid-template-columns: 1fr;
  }
}
.compare-col {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 1rem 1.1rem;
}

.compare-col.teal {
  border-top: 3px solid #5db1b4;
}

.compare-col.coral {
  border-top: 3px solid #e05c5c;
}

.compare-col h3, .compare-col h4 {
  margin: 0 0 0.7em;
  font-size: 0.9em;
  color: #1e3a5f;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.compare-col ul {
  margin: 0;
  padding-left: 1.2em;
  font-size: 0.88em;
  line-height: 1.7;
  color: #2a2a2a;
}

.fact-box {
  background: #faf6f1;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 1rem 1.2rem;
  margin: 1.2em 0;
  font-size: 0.9em;
}

.fact-box strong {
  color: #1e3a5f;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 1.5em 0;
}

.tip-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-top: 3px solid #5db1b4;
  border-radius: 4px;
  padding: 1rem 1.1rem;
}

.tip-card.danger {
  border-top-color: #e05c5c;
}

.tip-card.warning {
  border-top-color: #ffd93d;
}

.tip-card h3, .tip-card h4 {
  margin: 0 0 0.4em 0;
  font-size: 0.95em;
  color: #1e3a5f;
}

.tip-card p {
  margin: 0;
  font-size: 0.88em;
  line-height: 1.5;
  color: #2a2a2a;
}

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

.social-meme {
  margin: 2rem auto;
  max-width: 540px;
  background: #ffffff;
  border: 1px solid #dadde1;
  border-radius: 12px;
  overflow: hidden;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #050505;
  box-shadow: 0 1px 2px rgba(29, 53, 87, 0.05);
}

.social-meme__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
}

.social-meme__avatar {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1877f2;
  color: #fff;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.social-meme__byline {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.25;
}

.social-meme__group {
  font-weight: 700;
  font-size: 0.95rem;
  color: #050505;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.social-meme__meta {
  font-size: 0.8125rem;
  color: #65676b;
}

.social-meme__body {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
  min-height: 280px;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  line-height: 1.25;
  word-break: break-word;
  hyphens: auto;
}

.social-meme__text {
  margin: 0;
  max-width: 32ch;
}

.social-meme__emojis {
  display: inline-block;
  margin-left: 0.25em;
  font-weight: 400;
}

.social-meme__footer {
  padding: 0.75rem 1rem;
  border-top: 1px solid #dadde1;
  font-size: 0.8125rem;
  color: #65676b;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-meme__reactions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.social-meme__reaction-icons {
  font-size: 0.95rem;
  letter-spacing: -0.15em;
}

.social-meme__caption {
  padding: 0.5rem 1rem 0.75rem;
  font-size: 0.75rem;
  font-style: italic;
  color: #65676b;
  text-align: center;
  border-top: 1px solid #dadde1;
}
.social-meme__caption--default {
  opacity: 0.85;
}

.social-meme--twitter .social-meme__avatar {
  background: #000;
}

.social-meme--instagram .social-meme__avatar {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-meme--bluesky .social-meme__avatar {
  background: #1185fe;
}

.social-comment {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 1.5rem auto;
  max-width: 540px;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.social-comment__avatar {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: #2A9D8F;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  line-height: 1;
}
.social-comment__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.social-comment__initials {
  letter-spacing: 0.02em;
}

.social-comment__bubble {
  flex: 1 1 auto;
  min-width: 0;
  background: #f0f2f5;
  border-radius: 18px;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  line-height: 1.4;
  color: #050505;
}

.social-comment__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.social-comment__author {
  font-weight: 700;
  color: #050505;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.social-comment__verified {
  display: inline-flex;
  color: #1877f2;
  line-height: 0;
}

.social-comment__meta {
  font-size: 0.8125rem;
  color: #65676b;
}

.social-comment__text > p {
  margin: 0 0 0.5rem;
}
.social-comment__text > p:last-child {
  margin-bottom: 0;
}

.social-comment--twitter .social-comment__bubble {
  background: transparent;
  border: 1px solid #dadde1;
  border-radius: 12px;
}
.social-comment--twitter .social-comment__verified {
  color: #1d9bf0;
}

.social-comment--bluesky .social-comment__verified {
  color: #1185fe;
}

@media (max-width: 640px) {
  .social-meme {
    margin-inline: 0;
    border-radius: 8px;
  }
  .social-meme__body {
    padding: 2rem 1rem;
    min-height: 220px;
  }
  .social-comment {
    margin-inline: 0;
  }
  .social-comment__bubble {
    font-size: 0.9rem;
  }
}
@media print {
  .social-meme,
  .social-comment {
    break-inside: avoid;
    box-shadow: none;
  }
  .social-meme {
    border: 1px solid #999;
  }
  .social-meme__body {
    background: #fff !important;
    color: #000 !important;
    border-top: 1px solid #999;
    border-bottom: 1px solid #999;
  }
  .social-meme__avatar,
  .social-comment__avatar {
    background: #ddd !important;
    color: #000 !important;
  }
  .social-comment__bubble {
    background: #f4f4f4 !important;
    border: 1px solid #bbb;
  }
}
@media (prefers-reduced-motion: reduce) {
  .social-meme,
  .social-comment,
  .social-meme *,
  .social-comment * {
    transition: none !important;
    animation: none !important;
  }
}
.highlight .c, .highlight .cm, .highlight .cp, .highlight .c1, .highlight .cs {
  color: #6b7280;
  font-style: italic;
}
.highlight .err {
  color: #ef4444;
}
.highlight .k, .highlight .kc, .highlight .kd, .highlight .kn, .highlight .kp, .highlight .kr, .highlight .kt {
  color: #c084fc;
  font-weight: 500;
}
.highlight .o, .highlight .ow {
  color: #f9a8d4;
}
.highlight .gd {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
}
.highlight .gi {
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
}
.highlight .gh, .highlight .bp, .highlight .vc, .highlight .vg, .highlight .vi {
  color: #60a5fa;
}
.highlight .m, .highlight .mf, .highlight .mh, .highlight .mi, .highlight .mo, .highlight .il {
  color: #fbbf24;
}
.highlight .s, .highlight .sb, .highlight .sc, .highlight .sd, .highlight .s2, .highlight .se, .highlight .sh, .highlight .si, .highlight .sx, .highlight .sr, .highlight .s1, .highlight .ss {
  color: #34d399;
}
.highlight .na, .highlight .nb, .highlight .nc, .highlight .no, .highlight .nd, .highlight .ni, .highlight .ne, .highlight .nf, .highlight .nl, .highlight .nn, .highlight .nt, .highlight .nv {
  color: #93c5fd;
}
.highlight .nx {
  color: #e6e8eb;
}

@media print {
  .site-header,
  .site-footer,
  .site-nav,
  aside,
  .post-comments,
  .related-posts,
  .share-buttons,
  .cta-banner,
  #site-nav-toggle,
  .site-header__toggle,
  .skip-link {
    display: none !important;
  }
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
    background: #fff;
  }
  a {
    color: #000;
    text-decoration: underline;
  }
  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.85em;
    color: #555;
  }
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }
  h1 {
    font-size: 22pt;
  }
  h2 {
    font-size: 16pt;
  }
  h3 {
    font-size: 13pt;
  }
  .recipe .breadcrumb,
  .recipe .recipe-actions,
  .recipe .recipe__headnote,
  .recipe .related-posts {
    display: none !important;
  }
  .recipe__hero,
  .recipe__stats {
    page-break-inside: avoid;
  }
  .recipe-card-block {
    border: 1px solid #000 !important;
    background: #fff !important;
    padding: 0 !important;
  }
  .recipe__notes {
    background: #fff !important;
  }
  .recipe__instructions {
    page-break-before: auto;
  }
  .recipe__instructions li,
  .recipe__ingredients li {
    page-break-inside: avoid;
  }
  .recipe__ingredients input[type=checkbox] {
    appearance: none;
    width: 0.9rem;
    height: 0.9rem;
    border: 1px solid #000 !important;
    background: #fff !important;
  }
  .recipe__ingredients input[type=checkbox]::before {
    display: none !important;
  }
  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }
  h1, h2, h3, h4 {
    page-break-after: avoid;
  }
  p, li, blockquote {
    orphans: 3;
    widows: 3;
  }
}
.skip-link {
  position: absolute;
  top: -40px;
  left: 0.5rem;
  background: #E63946;
  color: #FFFFFF;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  z-index: 100;
  text-decoration: none;
  transform: translateY(-100%);
  transition: transform 150ms ease;
}
.skip-link:focus {
  transform: translateY(calc(40px + 0.5rem));
  outline: 2px solid #FFFFFF;
  outline-offset: 2px;
}

.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;
}

a:focus-visible,
button:focus-visible,
[role=button]:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid #E63946;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body .post__body h2,
body article.post h2,
body .post h2,
body main h2,
body .post-content h2,
body .entry-content h2 {
  border-top: 0 !important;
  border-bottom: 0 !important;
  border-right: 0 !important;
  box-shadow: none !important;
  text-decoration: none !important;
  background-image: none !important;
  padding-bottom: 0 !important;
  margin-bottom: 1.25rem !important;
  text-wrap: balance;
}

body .post__body h2::after,
body article.post h2::after,
body .post h2::after,
body main h2::after,
body .post-content h2::after,
body .entry-content h2::after {
  content: none !important;
  display: none !important;
  border: 0 !important;
  background: none !important;
  height: 0 !important;
  width: 0 !important;
}

.toc-list__link.is-active,
.post-toc .toc-link.is-active,
.toc-sidebar .toc-link.active,
.table-of-contents a.active,
nav.toc a[aria-current=true] {
  text-indent: 0 !important;
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
  hanging-punctuation: none;
}
.toc-list__link.is-active::before,
.post-toc .toc-link.is-active::before,
.toc-sidebar .toc-link.active::before,
.table-of-contents a.active::before,
nav.toc a[aria-current=true]::before {
  position: static !important;
  margin-right: 0.25rem !important;
}

.toc-list__link,
.post-toc .toc-link,
.toc-sidebar .toc-link,
.table-of-contents a,
nav.toc a {
  text-wrap: balance;
  display: block;
}

/*# sourceMappingURL=main.css.map */