@charset "UTF-8";
:root {
  --color-bg: #ffffff;
  --color-bg-subtle: #f8fafc;
  --color-border: #e2e8f0;
  --color-text: #1e293b;
  --color-text-muted: #64748b;
  --color-text-faint: #94a3b8;
  --color-iam: #2563eb;
  --color-iam-hover: #1d4ed8;
  --color-iam-hover-strong: #1e40af;
  --color-iam-bg: #eff6ff;
  --color-birds: #16a34a;
  --color-birds-bg: #f0fdf4;
  --color-cities: #ea580c;
  --color-cities-bg: #fff7ed;
}

[data-theme=dark] {
  --color-bg: #0f172a;
  --color-bg-subtle: #1e293b;
  --color-border: #334155;
  --color-text: #f1f5f9;
  --color-text-muted: #94a3b8;
  --color-text-faint: #64748b;
  --color-iam: #60a5fa;
  --color-iam-hover: #93c5fd;
  --color-iam-hover-strong: #bfdbfe;
  --color-iam-bg: #1e3a5f;
  --color-birds: #4ade80;
  --color-birds-bg: #052e16;
  --color-cities: #fb923c;
  --color-cities-bg: #431407;
}

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

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text);
  background: var(--color-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#main-content {
  flex: 1;
}

a {
  color: var(--color-iam);
  text-decoration: none;
  transition: color 150ms ease;
}
a:hover {
  color: var(--color-iam-hover-strong);
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}

h1 {
  font-size: 1.875rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.125rem;
}

p {
  margin-bottom: 1.25rem;
}

strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

ul, ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
ul li, ol li {
  margin-bottom: 0.35rem;
}

blockquote {
  border-left: 4px solid var(--color-border);
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0;
  color: var(--color-text-muted);
  background: var(--color-bg-subtle);
  border-radius: 0 0.375rem 0.375rem 0;
}
blockquote p:last-child {
  margin-bottom: 0;
}

code {
  font-family: "SF Mono", "Fira Code", "Cascadia Code", Consolas, monospace;
  font-size: 0.875em;
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-border);
  border-radius: 0.25rem;
  padding: 0.125em 0.375em;
  color: var(--color-text);
}

pre {
  background: #1e293b;
  border-radius: 0.5rem;
  padding: 1.25rem;
  overflow-x: auto;
  margin-bottom: 1.5rem;
}
pre code {
  font-size: 0.875rem;
  background: none;
  border: none;
  padding: 0;
  color: #e2e8f0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  overflow-x: auto;
  display: block;
}

th {
  background: var(--color-bg-subtle);
  font-weight: 600;
  text-align: left;
  padding: 0.625rem 0.875rem;
  border-bottom: 2px solid var(--color-border);
  white-space: nowrap;
}

td {
  padding: 0.5rem 0.875rem;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}

tr:hover td {
  background: var(--color-bg-subtle);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 0.5rem;
}

hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 2.5rem 0;
}

.container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container-wide {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-muted);
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-border);
  border-radius: 9999px;
  padding: 0.125rem 0.625rem;
  white-space: nowrap;
}

.category-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 9999px;
  padding: 0.25rem 0.875rem;
  text-decoration: none;
  transition: opacity 150ms ease;
}
.category-badge:hover {
  opacity: 0.8;
  text-decoration: none;
}
.category-badge.cat-iam {
  background: var(--color-iam-bg);
  color: var(--color-iam);
}
.category-badge.cat-birds {
  background: var(--color-birds-bg);
  color: var(--color-birds);
}
.category-badge.cat-cities {
  background: var(--color-cities-bg);
  color: var(--color-cities);
}

.empty-state {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--color-text-muted);
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: none;
  border: 1.5px solid var(--color-border);
  border-radius: 0.375rem;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: color 150ms ease, border-color 150ms ease, background 150ms ease;
  flex-shrink: 0;
  margin-left: 0.5rem;
  padding: 0;
}
.theme-toggle:hover {
  color: var(--color-text);
  border-color: var(--color-text-muted);
  background: var(--color-bg-subtle);
}
.theme-toggle svg {
  width: 1rem;
  height: 1rem;
  display: block;
}
.theme-toggle .icon-sun {
  display: none;
}
.theme-toggle .icon-moon {
  display: block;
}

[data-theme=dark] .theme-toggle .icon-sun {
  display: block;
}
[data-theme=dark] .theme-toggle .icon-moon {
  display: none;
}

.page-wrapper {
  padding: 2.5rem 0 3rem;
}

.page-header {
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.page-title {
  font-size: 1.875rem;
  font-weight: 800;
  margin: 0;
}

.page-description {
  color: var(--color-text-muted);
  margin-top: 0.5rem;
  font-size: 1.125rem;
}

.page-content h2 {
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}
.page-content h3 {
  margin-top: 2rem;
}

.site-header {
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 200ms ease, padding 200ms ease;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  gap: 1rem;
  transition: padding 200ms ease;
}
.site-header.scrolled {
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}
.site-header.scrolled .container {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}
.site-header.scrolled .brand-tagline {
  display: none;
}
.site-header.scrolled .brand-name {
  font-size: 1rem;
}
.site-header.scrolled .nav-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
}
.site-header.scrolled .nav-icon {
  display: none;
}
.site-header.scrolled .theme-toggle {
  width: 1.75rem;
  height: 1.75rem;
}
.site-header.scrolled .theme-toggle svg {
  width: 0.875rem;
  height: 0.875rem;
}

.site-brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.2;
}
.site-brand:hover {
  text-decoration: none;
}
.site-brand .brand-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
}
.site-brand .brand-tagline {
  font-size: 0.75rem;
  color: var(--color-text-faint);
  display: none;
}
@media (min-width: 768px) {
  .site-brand .brand-tagline {
    display: block;
  }
}

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

.nav-links {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.25rem;
}
@media (max-width: 639px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    padding: 0.5rem 1.25rem 1rem;
    gap: 0;
  }
  .nav-links.open {
    display: flex;
  }
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 0.375rem 0.625rem;
  border-radius: 0.375rem;
  transition: color 150ms ease, background 150ms ease;
  text-decoration: none;
  --accent: var(--color-iam);
}
.nav-link:hover {
  color: var(--accent);
  background: var(--color-bg-subtle);
  text-decoration: none;
}
.nav-link.active {
  color: var(--accent);
  font-weight: 600;
}
.nav-link .nav-icon {
  font-size: 1em;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.375rem;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-text);
  border-radius: 9999px;
  transition: transform 200ms ease;
}
@media (max-width: 639px) {
  .nav-toggle {
    display: flex;
  }
}

.site-footer {
  background: var(--color-bg-subtle);
  border-top: 1px solid var(--color-border);
  padding: 2.5rem 0 1.5rem;
  margin-top: 4rem;
  font-size: 0.875rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand {
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.footer-desc {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-heading {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 0.375rem;
}
.footer-col ul a {
  color: var(--color-text-muted);
}
.footer-col ul a:hover {
  color: var(--color-iam);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-faint);
  font-size: 0.75rem;
  text-align: center;
}
.footer-bottom a {
  color: var(--color-text-faint);
}
.footer-bottom a:hover {
  color: var(--color-text-muted);
}

.post {
  padding: 2.5rem 0 3rem;
}

.post-header {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.post-title {
  font-size: 1.875rem;
  line-height: 1.2;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .post-title {
    font-size: 2.25rem;
  }
}

.post-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}
.post-meta time {
  font-weight: 500;
}
.post-meta .post-author::before {
  content: "·";
  margin-right: 0.75rem;
}
.post-meta .post-tags {
  display: flex;
  gap: 0.375rem;
  flex-wrap: wrap;
}

.post-hero-image {
  margin-top: 1.5rem;
}
.post-hero-image img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.post-content {
  padding-top: 0.5rem;
  padding-bottom: 2rem;
}
.post-content h2 {
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}
.post-content h3 {
  margin-top: 2rem;
}
.post-content .mermaid {
  margin: 1.5rem 0;
  text-align: center;
  overflow-x: auto;
}

.post-footer {
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.post-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.post-nav a {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  max-width: 48%;
  color: var(--color-text-muted);
  text-decoration: none;
}
.post-nav a:hover {
  color: var(--color-iam);
  text-decoration: none;
}
.post-nav a .post-nav-title {
  font-weight: 600;
  color: var(--color-text);
}
.post-nav .post-nav-next {
  text-align: right;
  margin-left: auto;
}

.category-page {
  padding: 2.5rem 0 3rem;
}

.category-header {
  text-align: center;
  padding-bottom: 2.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}
.category-header .category-icon {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.category-header h1 {
  font-size: 1.875rem;
  margin: 0 0 0.5rem;
}
.category-header .category-description {
  color: var(--color-text-muted);
  max-width: 480px;
  margin: 0 auto 0.75rem;
}
.category-header .post-count {
  font-size: 0.875rem;
  color: var(--color-text-faint);
  font-weight: 500;
}

.post-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.post-list-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--color-border);
  transition: background 150ms ease;
}
@media (max-width: 640px) {
  .post-list-item {
    grid-template-columns: 1fr auto;
  }
  .post-list-item .post-list-meta {
    display: none;
  }
}

.post-list-meta time {
  font-size: 0.75rem;
  color: var(--color-text-faint);
  font-weight: 500;
  line-height: 1.8;
}

.post-list-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.375rem;
  line-height: 1.3;
}
.post-list-title a {
  color: var(--color-text);
}
.post-list-title a:hover {
  color: var(--color-iam);
  text-decoration: none;
}

.post-list-excerpt {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0 0 0.5rem;
}

.post-list-tags {
  display: flex;
  gap: 0.375rem;
  flex-wrap: wrap;
}

.series-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.series-card {
  border: 1.5px solid var(--color-iam);
  border-radius: 0.5rem;
  overflow: hidden;
}

.series-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: var(--color-iam-bg);
  border-bottom: 1px solid var(--color-iam);
  flex-wrap: wrap;
}

.series-pin-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-iam);
  flex-shrink: 0;
}

.series-card-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  color: var(--color-text);
  flex: 1;
}

.series-post-count {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.series-card-body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem 1.25rem;
  flex-wrap: wrap;
}

.series-card-excerpt {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.series-card-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-iam);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
}
.series-card-cta:hover {
  text-decoration: underline;
}

.section-divider {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-faint);
  margin: 2rem 0 0.5rem;
}

.series-nav {
  margin-bottom: 2rem;
  padding: 0.875rem 1.25rem;
  background: var(--color-iam-bg);
  border-left: 3px solid var(--color-iam);
  border-radius: 0 0.375rem 0.375rem 0;
}

.series-nav-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.625rem;
}

.series-nav-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text);
}

.series-nav-count {
  font-size: 0.75rem;
  color: var(--color-iam);
  font-weight: 600;
  white-space: nowrap;
}

.series-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
@media (min-width: 768px) {
  .series-nav-links {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
}

.series-nav-prev,
.series-nav-next,
.series-nav-toc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 150ms ease;
  line-height: 1.4;
}
.series-nav-prev:hover,
.series-nav-next:hover,
.series-nav-toc:hover {
  color: var(--color-iam);
  text-decoration: none;
}

.series-nav-toc {
  font-size: 0.75rem;
  color: var(--color-text-faint);
}
@media (min-width: 768px) {
  .series-nav-toc {
    margin: 0 auto;
  }
}
.series-nav-toc:hover {
  color: var(--color-iam);
}

@media (min-width: 768px) {
  .series-nav-next {
    margin-left: auto;
    text-align: right;
  }
}

.post-list-arrow {
  color: var(--color-text-faint);
  font-size: 1.125rem;
  align-self: center;
  transition: transform 150ms ease, color 150ms ease;
  text-decoration: none;
}
.post-list-arrow:hover {
  transform: translateX(4px);
  color: var(--color-iam);
  text-decoration: none;
}

.home-hero {
  padding: 3.5rem 0 3rem;
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}
@media (min-width: 768px) {
  .home-hero {
    padding: 5rem 0 4rem;
    text-align: left;
  }
}

.hero-greeting {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-faint);
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 2.25rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 540px;
  line-height: 1.65;
  margin: 0 auto 1.5rem;
}
@media (min-width: 768px) {
  .hero-description {
    margin: 0 0 1.5rem;
  }
}

.hero-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 768px) {
  .hero-links {
    justify-content: flex-start;
  }
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1.125rem;
  border-radius: 0.5rem;
  border: 1.5px solid transparent;
  text-decoration: none;
  transition: all 200ms ease;
}
.hero-link.primary {
  background: var(--color-iam);
  color: #fff;
  border-color: var(--color-iam);
}
.hero-link.primary:hover {
  background: var(--color-iam-hover);
  border-color: var(--color-iam-hover);
  text-decoration: none;
}
.hero-link.secondary {
  background: transparent;
  color: var(--color-text-muted);
  border-color: var(--color-border);
}
.hero-link.secondary:hover {
  border-color: var(--color-text-muted);
  color: var(--color-text);
  text-decoration: none;
}

.home-pillars {
  padding: 3rem 0;
}

.section-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-faint);
  margin-bottom: 1.5rem;
}

.pillar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .pillar-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar-card {
  display: flex;
  flex-direction: column;
  border: 1.5px solid var(--color-border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-decoration: none;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
  background: var(--color-bg);
}
.pillar-card:hover {
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}
.pillar-card.pillar-iam:hover {
  border-color: var(--color-iam);
}
.pillar-card.pillar-birds:hover {
  border-color: var(--color-birds);
}
.pillar-card.pillar-cities:hover {
  border-color: var(--color-cities);
}

.pillar-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.875rem;
}

.pillar-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}
.pillar-iam .pillar-title {
  color: var(--color-iam);
}
.pillar-birds .pillar-title {
  color: var(--color-birds);
}
.pillar-cities .pillar-title {
  color: var(--color-cities);
}

.pillar-description {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

.pillar-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-faint);
  transition: color 150ms ease;
}
.pillar-iam:hover .pillar-cta {
  color: var(--color-iam);
}
.pillar-birds:hover .pillar-cta {
  color: var(--color-birds);
}
.pillar-cities:hover .pillar-cta {
  color: var(--color-cities);
}

.home-recent {
  padding: 0 0 3rem;
}

.recent-section {
  margin-bottom: 3rem;
}

.recent-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-border);
}
.recent-section-header h2 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.recent-section-header a {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}
.recent-section-header a:hover {
  color: var(--color-iam);
}

.recent-posts {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.recent-post-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
}
.recent-post-item:last-child {
  border-bottom: none;
}

.recent-post-info {
  flex: 1;
  min-width: 0;
}

.recent-post-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
  display: block;
}
.recent-post-title:hover {
  color: var(--color-iam);
  text-decoration: none;
}

.recent-post-date {
  font-size: 0.75rem;
  color: var(--color-text-faint);
  margin-top: 0.125rem;
}

.comments-section {
  margin-top: 0;
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg-subtle);
}

.comments-header {
  margin-bottom: 1.5rem;
}

.comments-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 0.375rem;
}

.comments-note {
  font-size: 0.875rem;
  color: var(--color-text-faint);
  margin: 0;
}
.comments-note a {
  color: var(--color-text-muted);
}
.comments-note a:hover {
  color: var(--color-iam);
}

.giscus,
.giscus-frame {
  width: 100%;
}

.comments-noscript {
  font-size: 0.875rem;
  color: var(--color-text-faint);
  padding: 1.5rem;
  text-align: center;
  border: 1px dashed var(--color-border);
  border-radius: 0.5rem;
}

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