@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500&family=IBM+Plex+Mono&display=swap");
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  background: #f5f4f0;
  color: #1e2a1f;
  line-height: 1.7;
}

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

a {
  color: #3a6644;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-nav {
  background: #2d3b2e;
  border-bottom: 1px solid #1e2a1f;
  padding: 0 clamp(1rem, 3vw, 2rem);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-nav .brand {
  color: #e8ece6;
  font-family: "Fraunces", "Source Serif Pro", Georgia, serif;
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 500;
  letter-spacing: -0.3px;
  text-decoration: none;
  white-space: nowrap;
}
.site-nav .brand:hover {
  opacity: 0.85;
  text-decoration: none;
}
.site-nav .nav-links {
  display: flex;
  gap: clamp(14px, 2.4vw, 28px);
  flex-wrap: nowrap;
}
.site-nav .nav-links a {
  position: relative;
  color: #e8ece6;
  font-size: 13px;
  letter-spacing: 0.3px;
  opacity: 0.72;
  text-decoration: none;
  padding: 4px 0;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.site-nav .nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #8db88e;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.site-nav .nav-links a:hover {
  opacity: 1;
  text-decoration: none;
}
.site-nav .nav-links a:hover::after {
  transform: scaleX(1);
}

.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--wide {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.75rem;
}

.hero {
  background: linear-gradient(180deg, #edf0e9 0%, #f1f3ed 100%);
  border-bottom: 1px solid #c8d0c4;
  padding: 4rem 2rem 3.25rem;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #8db88e 50%, transparent 100%);
  opacity: 0.5;
}
.hero__label {
  font-family: "IBM Plex Mono", "Fira Code", monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #3a6644;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero__label::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  background: #3a6644;
}
.hero__title {
  font-family: "Fraunces", "Source Serif Pro", Georgia, serif;
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.6px;
  color: #1e2a1f;
  max-width: 620px;
  margin-bottom: 1rem;
}
.hero__sub {
  font-size: 16px;
  color: #3d4f3e;
  max-width: 520px;
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.site-footer {
  border-top: 1px solid #c8d0c4;
  padding: 2rem 1.75rem;
  margin-top: 5rem;
  font-size: 13px;
  color: #7a8c7b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.site-footer__brand {
  font-family: "Fraunces", "Source Serif Pro", Georgia, serif;
  font-weight: 500;
  color: #3d4f3e;
}
.site-footer a {
  color: #7a8c7b;
  font-family: "IBM Plex Mono", "Fira Code", monospace;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.site-footer a:hover {
  color: #3a6644;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2px;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  text-decoration: none;
  transition: all 0.15s ease;
}
.btn--primary {
  background: #3a6644;
  color: #fff;
}
.btn--primary:hover {
  background: #5c8c62;
  text-decoration: none;
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: #3a6644;
  border-color: #3a6644;
}
.btn--ghost:hover {
  background: #edf0e9;
}

.section {
  padding: 3rem 0 1rem;
}
.section__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #c8d0c4;
  position: relative;
}
.section__header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 56px;
  height: 1px;
  background: #3a6644;
}
.section__title {
  font-family: "IBM Plex Mono", "Fira Code", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #3a6644;
}
.section__link, .section__sub {
  font-size: 12px;
  color: #7a8c7b;
  font-family: "IBM Plex Mono", "Fira Code", monospace;
  letter-spacing: 0.5px;
}
.section__link:hover {
  color: #3a6644;
  text-decoration: none;
}

.featured {
  display: block;
  padding: 1.75rem 1.75rem 2rem;
  background: #fbfaf6;
  border: 1px solid #c8d0c4;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(30, 42, 31, 0.04), 0 4px 16px rgba(30, 42, 31, 0.05);
  margin-bottom: 2rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, transform 0.15s;
}
.featured:hover {
  border-color: #8db88e;
  text-decoration: none;
  transform: translateY(-2px);
}
.featured:hover .featured__title {
  color: #3a6644;
}
.featured__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "IBM Plex Mono", "Fira Code", monospace;
  font-size: 10px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #3a6644;
  margin-bottom: 1rem;
}
.featured__eyebrow span:first-child::after {
  content: "·";
  margin-left: 10px;
  color: #c8d0c4;
}
.featured__cat {
  color: #3a6644;
  font-weight: 500;
}
.featured__meta {
  color: #7a8c7b;
  font-weight: 400;
}
.featured__title {
  font-family: "Fraunces", "Source Serif Pro", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.4px;
  color: #1e2a1f;
  margin-bottom: 0.75rem;
  transition: color 0.15s;
}
.featured__excerpt {
  font-size: 15px;
  line-height: 1.65;
  color: #3d4f3e;
  margin-bottom: 1rem;
}
.featured__more {
  font-family: "IBM Plex Mono", "Fira Code", monospace;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: #3a6644;
}

.post-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.post-list__item {
  display: block;
  padding: 1.25rem 0.25rem;
  border-bottom: 1px solid #dde4d9;
  transition: padding 0.15s;
}
.post-list__item:hover {
  padding-left: 0.75rem;
}
.post-list__item:hover .post-list__title {
  color: #3a6644;
}
.post-list__item:last-child {
  border-bottom: none;
}
.post-list__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.post-list__link:hover {
  text-decoration: none;
}
.post-list__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "IBM Plex Mono", "Fira Code", monospace;
  font-size: 11px;
  letter-spacing: 0.6px;
  color: #7a8c7b;
  margin-bottom: 0.4rem;
}
.post-list__meta .dot {
  color: #c8d0c4;
}
.post-list__cat {
  color: #3a6644;
  text-transform: uppercase;
}
.post-list__title {
  font-family: "Fraunces", "Source Serif Pro", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.3;
  color: #1e2a1f;
  margin-bottom: 0.35rem;
  transition: color 0.15s;
}
.post-list__excerpt {
  font-size: 14px;
  line-height: 1.55;
  color: #3d4f3e;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: #c8d0c4;
  border: 1px solid #c8d0c4;
  border-radius: 8px;
  overflow: hidden;
}

.post-card {
  padding: 1.5rem;
  background: #fbfaf6;
  transition: background 0.15s;
}
.post-card:hover {
  background: #edf0e9;
}
.post-card__tag {
  font-family: "IBM Plex Mono", "Fira Code", monospace;
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 500;
  color: #3a6644;
  margin-bottom: 0.65rem;
  min-height: 14px;
}
.post-card__title {
  font-family: "Fraunces", "Source Serif Pro", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.3;
  color: #1e2a1f;
  margin-bottom: 0.5rem;
}
.post-card__title a {
  color: inherit;
}
.post-card__title a:hover {
  color: #3a6644;
  text-decoration: none;
}
.post-card__excerpt {
  font-size: 13px;
  color: #7a8c7b;
  line-height: 1.55;
  margin-bottom: 0.85rem;
}
.post-card__meta {
  font-family: "IBM Plex Mono", "Fira Code", monospace;
  font-size: 11px;
  color: #7a8c7b;
  letter-spacing: 0.4px;
}

.topics-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0.5rem 0 0.25rem;
}

.topic-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fbfaf6;
  border: 1px solid #c8d0c4;
  color: #3d4f3e;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.15s;
}
.topic-pill__count {
  font-family: "IBM Plex Mono", "Fira Code", monospace;
  font-size: 11px;
  color: #7a8c7b;
}
.topic-pill:hover {
  background: #edf0e9;
  border-color: #8db88e;
  color: #3a6644;
  text-decoration: none;
}

.post {
  padding: 3rem 0 2rem;
}
.post__header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #c8d0c4;
}
.post__tag {
  font-family: "IBM Plex Mono", "Fira Code", monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #3a6644;
  font-weight: 500;
  margin-bottom: 0.75rem;
  min-height: 14px;
}
.post__title {
  font-family: "Fraunces", "Source Serif Pro", Georgia, serif;
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.5px;
  margin-bottom: 0.75rem;
}
.post__meta {
  font-family: "IBM Plex Mono", "Fira Code", monospace;
  font-size: 12px;
  color: #7a8c7b;
  letter-spacing: 0.4px;
}
.post__content h2, .post__content h3, .post__content h4 {
  font-family: "Fraunces", "Source Serif Pro", Georgia, serif;
  font-weight: 500;
  margin: 2rem 0 0.75rem;
  line-height: 1.3;
  letter-spacing: -0.2px;
}
.post__content h2 {
  font-size: 1.5rem;
}
.post__content h3 {
  font-size: 1.2rem;
}
.post__content p {
  margin-bottom: 1.25rem;
}
.post__content ul, .post__content ol {
  margin: 0 0 1.25rem 1.5rem;
}
.post__content ul li, .post__content ol li {
  margin-bottom: 0.4rem;
}
.post__content blockquote {
  border-left: 3px solid #8db88e;
  padding: 0.5rem 0 0.5rem 1.25rem;
  color: #3d4f3e;
  font-style: italic;
  margin: 1.5rem 0;
}
.post__content code {
  font-family: "IBM Plex Mono", "Fira Code", monospace;
  font-size: 0.875em;
  background: #edf0e9;
  border: 1px solid #c8d0c4;
  border-radius: 3px;
  padding: 1px 5px;
  color: #3a6644;
}
.post__content div.highlight, .post__content pre.highlight {
  background: #1e2a1f;
  border: 1px solid #3a4e3b;
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}
.post__content div.highlight code, .post__content pre.highlight code {
  background: none;
  border: none;
  padding: 0;
  color: #c8d8c4;
  font-size: 0.85rem;
  line-height: 1.6;
}

.tag-badge {
  display: inline-block;
  font-family: "IBM Plex Mono", "Fira Code", monospace;
  font-size: 10px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 3px;
  background: #edf0e9;
  color: #3a6644;
  border: 1px solid #c8d0c4;
  margin-right: 4px;
  text-decoration: none;
}
.tag-badge:hover {
  background: #c8d0c4;
  text-decoration: none;
}

.page {
  padding: 3.5rem 0 1rem;
}
.page__header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #c8d0c4;
  position: relative;
}
.page__header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 64px;
  height: 1px;
  background: #3a6644;
}
.page__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "IBM Plex Mono", "Fira Code", monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #3a6644;
  margin-bottom: 0.85rem;
}
.page__label::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  background: #3a6644;
}
.page__title {
  font-family: "Fraunces", "Source Serif Pro", Georgia, serif;
  font-size: clamp(1.85rem, 3.6vw, 2.4rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 0.6rem;
}
.page__subtitle {
  font-family: "Fraunces", "Source Serif Pro", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.5;
  color: #3d4f3e;
  max-width: 620px;
  font-style: italic;
}
.page__content > :first-child {
  margin-top: 0;
}
.page__content h2 {
  font-family: "Fraunces", "Source Serif Pro", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  margin: 2.25rem 0 0.75rem;
  letter-spacing: -0.2px;
}
.page__content h3 {
  font-family: "Fraunces", "Source Serif Pro", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 1.5rem 0 0.5rem;
}
.page__content p {
  margin-bottom: 1.15rem;
  line-height: 1.65;
}
.page__content ul, .page__content ol {
  margin: 0 0 1.25rem 1.5rem;
}
.page__content ul li, .page__content ol li {
  margin-bottom: 0.4rem;
}
.page__content a {
  color: #3a6644;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}
.page__content a:hover {
  text-decoration: none;
  border-bottom-color: #3a6644;
}
.page__content code {
  font-family: "IBM Plex Mono", "Fira Code", monospace;
  font-size: 0.875em;
  background: #edf0e9;
  border: 1px solid #c8d0c4;
  border-radius: 3px;
  padding: 1px 5px;
  color: #3a6644;
}

.status-card {
  background: #fbfaf6;
  border: 1px solid #c8d0c4;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(30, 42, 31, 0.04), 0 4px 16px rgba(30, 42, 31, 0.05);
  padding: 1.1rem 1.4rem;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.status-card__row {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  flex-wrap: wrap;
  font-size: 14px;
}
.status-card__dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5c8c62;
  box-shadow: 0 0 0 0 rgba(92, 140, 98, 0.55);
  align-self: center;
  animation: status-pulse 2.4s ease-in-out infinite;
}
.status-card__label {
  font-family: "IBM Plex Mono", "Fira Code", monospace;
  font-size: 10px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #7a8c7b;
  flex: 0 0 auto;
  min-width: 92px;
}
.status-card__value {
  font-family: "Fraunces", "Source Serif Pro", Georgia, serif;
  font-size: 15px;
  color: #1e2a1f;
}
.status-card__value em {
  font-style: italic;
}

@keyframes status-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(92, 140, 98, 0.5);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(92, 140, 98, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(92, 140, 98, 0);
  }
}
.callout {
  margin: 1.75rem 0 2rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(180deg, #edf0e9 0%, #fbfaf6 100%);
  border-left: 3px solid #3a6644;
  border-radius: 0 8px 8px 0;
  position: relative;
}
.callout p {
  font-family: "Fraunces", "Source Serif Pro", Georgia, serif;
  font-size: 1.2rem;
  line-height: 1.45;
  font-style: italic;
  color: #1e2a1f;
  margin: 0 0 0.5rem;
}
.callout__link {
  font-family: "IBM Plex Mono", "Fira Code", monospace;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #3a6644;
  text-decoration: none;
  border-bottom: none !important;
}
.callout__link:hover {
  color: #5c8c62;
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0.75rem 0 0;
}

.cred {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 16px;
  background: #fbfaf6;
  border: 1px solid #c8d0c4;
  border-radius: 4px;
  border-left: 3px solid #3a6644;
  min-width: 180px;
}
.cred--pending {
  border-left-color: #a86b3c;
  background: repeating-linear-gradient(135deg, #fbfaf6, #fbfaf6 8px, #f4f3ee 8px, #f4f3ee 16px);
}
.cred__name {
  font-family: "Fraunces", "Source Serif Pro", Georgia, serif;
  font-weight: 600;
  font-size: 14px;
  color: #1e2a1f;
  letter-spacing: 0.2px;
}
.cred__note {
  font-family: "IBM Plex Mono", "Fira Code", monospace;
  font-size: 10px;
  letter-spacing: 0.8px;
  color: #7a8c7b;
  text-transform: uppercase;
}

.colophon {
  margin-top: 2.5rem;
  padding: 1rem 1.25rem;
  border-top: 1px dashed #c8d0c4;
  font-family: "IBM Plex Mono", "Fira Code", monospace;
  font-size: 12px;
  letter-spacing: 0.3px;
  color: #7a8c7b;
  line-height: 1.7;
}
.colophon a {
  color: #3d4f3e !important;
  border-bottom: 1px solid #c8d0c4 !important;
}
.colophon a:hover {
  color: #3a6644 !important;
  border-bottom-color: #3a6644 !important;
}

.timeline {
  margin-top: 1.5rem;
  position: relative;
}

.timeline-year {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 1.5rem;
  padding-bottom: 0.75rem;
}
.timeline-year__rail {
  padding-top: 0.4rem;
}
.timeline-year__label {
  font-family: "Fraunces", "Source Serif Pro", Georgia, serif;
  font-size: 1.85rem;
  font-weight: 500;
  color: #7a8c7b;
  line-height: 1;
  letter-spacing: -0.5px;
  display: inline-block;
}

.timeline-events {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.timeline-events::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  bottom: 1rem;
  left: 6px;
  width: 1px;
  background: #c8d0c4;
}

.timeline-event {
  position: relative;
  padding: 0.95rem 1.2rem 1rem 2.25rem;
  background: #fbfaf6;
  border: 1px solid #c8d0c4;
  border-radius: 8px;
  transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.timeline-event:hover {
  transform: translateX(2px);
  border-color: #8db88e;
  box-shadow: 0 1px 2px rgba(30, 42, 31, 0.04), 0 4px 16px rgba(30, 42, 31, 0.05);
}
.timeline-event__dot {
  position: absolute;
  left: -1px;
  top: 1.05rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #3a6644;
  border: 3px solid #f5f4f0;
  box-shadow: 0 0 0 1px #c8d0c4;
  z-index: 2;
}
.timeline-event__body {
  min-width: 0;
}
.timeline-event__kind {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "IBM Plex Mono", "Fira Code", monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #7a8c7b;
  margin-bottom: 0.35rem;
}
.timeline-event__status {
  display: inline-block;
  padding: 1px 7px;
  border-radius: 3px;
  background: #edf0e9;
  color: #3a6644;
  font-size: 9px;
  letter-spacing: 1.2px;
}
.timeline-event__status--current {
  background: #3a6644;
  color: #fff;
}
.timeline-event__title {
  font-family: "Fraunces", "Source Serif Pro", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.3;
  color: #1e2a1f;
  margin: 0 0 0.25rem;
  letter-spacing: -0.1px;
}
.timeline-event__note {
  font-size: 13px;
  line-height: 1.55;
  color: #3d4f3e;
  margin: 0;
}
.timeline-event--role .timeline-event__dot {
  background: #3a6644;
}
.timeline-event--role .timeline-event__kind {
  color: #3a6644;
}
.timeline-event--cert .timeline-event__dot {
  background: #a86b3c;
}
.timeline-event--cert .timeline-event__kind {
  color: #a86b3c;
}
.timeline-event--education .timeline-event__dot {
  background: #5c8c62;
}
.timeline-event--education .timeline-event__kind {
  color: #5c8c62;
}
.timeline-event--book .timeline-event__dot {
  background: #fbfaf6;
  border-color: #f5f4f0;
  box-shadow: 0 0 0 2px #8db88e;
}
.timeline-event--book .timeline-event__kind {
  color: #8db88e;
}
.timeline-event--resource .timeline-event__dot {
  background: #7a8c7b;
}
.timeline-event.is-in_progress .timeline-event__dot {
  animation: timeline-pulse 2.4s ease-in-out infinite;
}
.timeline-event.is-in_progress {
  border-style: dashed;
}
.timeline-event.is-current {
  border-color: #8db88e;
  background: linear-gradient(180deg, #edf0e9 0%, #fbfaf6 60%);
}
.timeline-event.is-current .timeline-event__dot {
  animation: timeline-pulse 2.4s ease-in-out infinite;
}

@keyframes timeline-pulse {
  0% {
    box-shadow: 0 0 0 1px #c8d0c4, 0 0 0 0 rgba(92, 140, 98, 0.5);
  }
  70% {
    box-shadow: 0 0 0 1px #c8d0c4, 0 0 0 8px rgba(92, 140, 98, 0);
  }
  100% {
    box-shadow: 0 0 0 1px #c8d0c4, 0 0 0 0 rgba(92, 140, 98, 0);
  }
}
.timeline-footnote {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px dashed #c8d0c4;
  font-family: "IBM Plex Mono", "Fira Code", monospace;
  font-size: 12px;
  color: #7a8c7b;
  letter-spacing: 0.3px;
}
.timeline-footnote code {
  background: #edf0e9;
  border: 1px solid #c8d0c4;
  border-radius: 3px;
  padding: 1px 5px;
  color: #3a6644;
  font-size: 11px;
}

@media (max-width: 560px) {
  .timeline-year {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .timeline-year__label {
    font-size: 1.5rem;
  }
}
.filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 0.25rem 0 1.5rem;
  margin: 0.5rem 0 2rem;
  border-bottom: 1px dashed #dde4d9;
}
.filter-row__label {
  font-family: "IBM Plex Mono", "Fira Code", monospace;
  font-size: 10px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #7a8c7b;
  margin-right: 4px;
}

.archive-year {
  padding: 1.75rem 0 0.5rem;
}
.archive-year__title {
  font-family: "Fraunces", "Source Serif Pro", Georgia, serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: #c8d0c4;
  line-height: 1;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.archive-year__title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #dde4d9;
}

.archive-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.archive-list__item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1.25rem;
  align-items: baseline;
  padding: 0.85rem 0.25rem;
  border-bottom: 1px solid #dde4d9;
  transition: padding 0.15s, background 0.15s;
}
.archive-list__item:hover {
  padding-left: 0.75rem;
}
.archive-list__item:hover .archive-list__title {
  color: #3a6644;
}
.archive-list__item:last-child {
  border-bottom: none;
}
.archive-list__date {
  font-family: "IBM Plex Mono", "Fira Code", monospace;
  font-size: 12px;
  color: #7a8c7b;
  letter-spacing: 0.3px;
}
.archive-list__title {
  font-family: "Fraunces", "Source Serif Pro", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #1e2a1f;
  transition: color 0.15s;
}
.archive-list__title:hover {
  color: #3a6644;
  text-decoration: none;
}
.archive-list__cat {
  font-family: "IBM Plex Mono", "Fira Code", monospace;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #3a6644;
}

.notes-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.notes-list__item {
  padding: 1.5rem 0;
  border-bottom: 1px solid #dde4d9;
}
.notes-list__item:last-child {
  border-bottom: none;
}
.notes-list__meta {
  font-family: "IBM Plex Mono", "Fira Code", monospace;
  font-size: 11px;
  color: #7a8c7b;
  margin-bottom: 0.4rem;
  letter-spacing: 0.5px;
}
.notes-list__title {
  font-family: "Fraunces", "Source Serif Pro", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.notes-list__title a {
  color: #1e2a1f;
}
.notes-list__title a:hover {
  color: #3a6644;
  text-decoration: none;
}
.notes-list__excerpt {
  font-size: 14px;
  color: #3d4f3e;
  line-height: 1.6;
}

.empty-state {
  padding: 2.5rem 1.5rem;
  background: #fbfaf6;
  border: 1px dashed #c8d0c4;
  border-radius: 8px;
  text-align: center;
  color: #7a8c7b;
  font-size: 14px;
}
.empty-state p {
  margin-bottom: 0.5rem;
}
.empty-state__hint {
  font-size: 13px;
  color: #7a8c7b;
  line-height: 1.6;
}
.empty-state code {
  font-family: "IBM Plex Mono", "Fira Code", monospace;
  background: #edf0e9;
  border: 1px solid #c8d0c4;
  border-radius: 3px;
  padding: 1px 5px;
  color: #3a6644;
  font-size: 12px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 2.5rem 0 1rem;
  font-size: 13px;
  font-family: "IBM Plex Mono", "Fira Code", monospace;
  letter-spacing: 0.4px;
}
.pagination a, .pagination span {
  padding: 6px 14px;
  border: 1px solid #c8d0c4;
  border-radius: 4px;
  color: #3d4f3e;
  text-decoration: none;
  background: #fbfaf6;
}
.pagination a:hover {
  border-color: #3a6644;
  color: #3a6644;
}
.pagination .current {
  background: #3a6644;
  color: #fff;
  border-color: #3a6644;
}
.pagination .disabled {
  opacity: 0.4;
  pointer-events: none;
}

.highlight .c, .highlight .c1, .highlight .cm {
  color: #6a8c6b;
  font-style: italic;
}
.highlight .k, .highlight .kd, .highlight .kn {
  color: #8db88e;
}
.highlight .s, .highlight .s1, .highlight .s2 {
  color: #a8c8a0;
}
.highlight .nf, .highlight .nc {
  color: #c8e0c0;
}
.highlight .mi, .highlight .mf {
  color: #b0d4a8;
}
.highlight .o {
  color: #7aaa7a;
}
.highlight .n, .highlight .na, .highlight .nb {
  color: #c8d8c4;
}
.highlight .err {
  color: #e07070;
  background: none;
}

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