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

/* Base */
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-background);
  color: var(--color-foreground);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--color-primary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

/* Header */
.site-header {
  border-bottom: 1px solid var(--color-border);
  padding: 1.5rem 0;
}
.site-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-foreground);
  text-decoration: none;
}
.logo-image {
  height: 32px;
  width: auto;
}
.site-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
}
.site-tagline {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  margin-top: 0.5rem;
}

/* Header controls (search + theme toggle) */
.site-header-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 0 1 auto;
}

/* Theme toggle */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-foreground);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.theme-toggle:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.theme-icon {
  display: none;
}
:root[data-theme-mode="dark"] .theme-icon-dark,
:root[data-theme-mode="light"] .theme-icon-light,
:root[data-theme-mode="system"] .theme-icon-system,
html:not([data-theme-mode]) .theme-icon-dark {
  display: block;
}

/* Search */
.site-search {
  position: relative;
  flex: 0 1 320px;
  min-width: 200px;
}
.search-input {
  width: 100%;
  padding: 0.5rem 0.875rem;
  font-size: 0.9rem;
  font-family: inherit;
  background: var(--color-muted);
  color: var(--color-foreground);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  transition: border-color 0.15s;
}
.search-input::placeholder {
  color: var(--color-muted-foreground);
}
.search-input:focus {
  outline: none;
  border-color: var(--color-accent);
}
.search-results {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  max-height: 70vh;
  overflow-y: auto;
  z-index: 50;
}
.search-result-item {
  display: block;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: var(--color-foreground);
  border-bottom: 1px solid var(--color-border);
}
.search-result-item:last-child {
  border-bottom: none;
}
.search-result-item:hover,
.search-result-item.search-result-active {
  background: var(--color-muted);
}
.search-result-title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}
.search-result-excerpt {
  font-size: 0.8rem;
  color: var(--color-muted-foreground);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.search-result-tags {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.4rem;
  flex-wrap: wrap;
}
.search-result-tag {
  font-size: 0.7rem;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  background: var(--color-muted);
  color: var(--color-accent);
}
.search-empty {
  padding: 1rem;
  text-align: center;
  color: var(--color-muted-foreground);
  font-size: 0.875rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 2.5rem 0;
  margin-top: auto;
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
}
.site-footer-content {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .site-footer-content {
    grid-template-columns: 1fr auto auto;
    align-items: center;
  }
}
.site-footer-meta p {
  margin: 0;
}
.site-footer-meta p + p {
  margin-top: 0.25rem;
}
.site-footer-parent a {
  color: var(--color-muted-foreground);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.site-footer-parent a:hover {
  color: var(--color-accent);
}
.site-footer-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.site-footer-links a {
  color: var(--color-muted-foreground);
  text-decoration: none;
}
.site-footer-links a:hover {
  color: var(--color-accent);
}
.site-footer-socials {
  justify-self: start;
}
@media (min-width: 768px) {
  .site-footer-socials {
    justify-self: end;
  }
}

/* Nav menu */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-foreground);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.nav-toggle:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.site-nav {
  display: none;
  border-top: 1px solid var(--color-border);
  margin-top: 1rem;
  padding-top: 1rem;
}
.site-nav-open {
  display: block;
}
.site-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}
.site-nav a {
  display: block;
  padding: 0.5rem 0;
  color: var(--color-foreground);
  text-decoration: none;
  font-weight: 500;
}
.site-nav a:hover {
  color: var(--color-accent);
}
@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
  .site-nav {
    display: block;
    border-top: none;
    margin-top: 0.5rem;
    padding-top: 0;
  }
  .site-nav ul {
    flex-direction: row;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .site-nav a {
    padding: 0;
    font-size: 0.9rem;
  }
}

/* Post Grid */
.post-grid {
  display: grid;
  gap: 2rem;
  padding: 2.5rem 0;
}

/* Section title (Featured / All posts) */
.section-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-muted-foreground);
  margin: 2rem 0 1rem;
}
.featured-section + .all-posts-section .section-title {
  margin-top: 3rem;
}

/* Featured Grid */
.featured-grid {
  display: grid;
  gap: 1.5rem;
}
.featured-grid-hero {
  grid-template-columns: 1fr;
}
.featured-grid-multi {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .featured-grid-multi {
    grid-template-columns: 1fr 1fr;
  }
}

/* Featured Card */
.featured-card {
  position: relative;
  display: block;
  color: inherit;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--color-muted);
  transition: border-color 0.2s, transform 0.2s;
}
.featured-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
}
.featured-card-image-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.featured-card-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.featured-card-content {
  padding: 1.5rem;
}
.featured-card-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.featured-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
.featured-card-hero .featured-card-title {
  font-size: 1.875rem;
}
.featured-card-title a {
  color: inherit;
  text-decoration: none;
}
.featured-card-title a::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}
.featured-card-excerpt {
  font-size: 0.95rem;
  color: var(--color-muted-foreground);
  margin-bottom: 1rem;
  line-height: 1.55;
}
.featured-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.825rem;
  color: var(--color-muted-foreground);
  flex-wrap: wrap;
}
.featured-card-author {
  color: var(--color-muted-foreground);
  text-decoration: none;
  position: relative;
  z-index: 2;
}
.featured-card-author:hover {
  color: var(--color-accent);
}

/* Tag page header */
.tag-page-header {
  padding: 2.5rem 0 0.5rem;
}
.back-link-inline {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  margin-bottom: 0.75rem;
}
.back-link-inline:hover {
  color: var(--color-accent);
}
.tag-page-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.tag-page-meta {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  margin-top: 0.5rem;
}

/* Author page header */
.author-page-header {
  padding: 2.5rem 0 1rem;
}
.author-page-bio {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 1rem;
}
.author-page-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.author-page-name {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.author-page-description {
  font-size: 0.95rem;
  color: var(--color-muted-foreground);
  line-height: 1.5;
}
.author-page-count {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
}

/* Clickable author link styles */
.post-card-author {
  color: var(--color-muted-foreground);
  text-decoration: none;
  position: relative;
  z-index: 2;
}
.post-card-author:hover {
  color: var(--color-accent);
}
a.post-author {
  text-decoration: none;
  color: inherit;
}
a.post-author .author-name:hover {
  color: var(--color-accent);
}
.author-card-info h3 a {
  color: inherit;
  text-decoration: none;
}
.author-card-info h3 a:hover {
  color: var(--color-accent);
}

/* Post Card */
.post-card {
  position: relative;
  display: block;
  color: inherit;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.post-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
}
.post-card-image-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.post-card-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.post-card-content {
  padding: 1.25rem;
}
.post-card-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
a.tag,
.tag {
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: var(--color-muted);
  color: var(--color-accent);
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.15s, color 0.15s;
}
a.tag:hover {
  background: var(--color-accent);
  color: var(--color-primary-foreground);
}
.post-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.post-card-title a {
  color: inherit;
  text-decoration: none;
}
.post-card-title a::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}
.post-card-excerpt {
  font-size: 0.9rem;
  color: var(--color-muted-foreground);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.post-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--color-muted-foreground);
}

/* Single Post */
.post {
  padding: 2.5rem 0 4rem;
}
.post-header {
  margin-bottom: 2rem;
}
.post-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.post-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
}
.post-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.author-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

/* Post Hero */
.post-hero {
  margin-bottom: 2rem;
  border-radius: 12px;
  overflow: hidden;
}
.post-hero img {
  width: 100%;
}

/* Post Body — Typography */
.post-body {
  font-size: 1.05rem;
  line-height: 1.8;
}
.post-body > * + * {
  margin-top: 1.25rem;
}
.post-body h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-top: 2.5rem;
  line-height: 1.2;
}
.post-body h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2rem;
  line-height: 1.3;
}
.post-body h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1.5rem;
  line-height: 1.4;
}
.post-body p {
  margin: 0;
}
.post-body a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.post-body strong {
  font-weight: 600;
}
.post-body code {
  font-family: var(--font-code);
  background: var(--color-muted);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.9em;
}
.post-body ul, .post-body ol {
  padding-left: 1.5rem;
}
.post-body li {
  margin-top: 0.4rem;
}
.post-body li > ul, .post-body li > ol {
  margin-top: 0.25rem;
}
.post-body blockquote {
  border-left: 3px solid var(--color-accent);
  padding: 0.5rem 1rem;
  margin-left: 0;
  color: var(--color-muted-foreground);
  font-style: italic;
}
.post-body hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 2rem 0;
}

/* Code Block */
.code-block {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.code-header {
  background: var(--color-muted);
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  color: var(--color-muted-foreground);
}
.code-block pre {
  margin: 0;
  padding: 1rem;
  overflow-x: auto;
  background: var(--color-muted);
}
.code-block code {
  font-family: var(--font-code);
  font-size: 0.875rem;
  background: none;
  padding: 0;
  line-height: 1.6;
}

/* Image Block */
.image-block {
  margin: 0;
}
.image-block img {
  border-radius: 8px;
}
.image-block figcaption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-muted-foreground);
  margin-top: 0.5rem;
}

/* Callout */
.callout {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 8px;
  background: var(--color-muted);
  border: 1px solid var(--color-border);
}
.callout-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}
.callout-content {
  flex: 1;
}

/* Bookmark */
.bookmark {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
}
.bookmark-link {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: 0.25rem;
  text-decoration: none;
}
.bookmark-url {
  font-size: 0.85rem;
  color: var(--color-muted-foreground);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bookmark-caption {
  font-size: 0.9rem;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 1.25rem 0 0;
  font-size: 0.825rem;
}
.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  padding: 0;
  margin: 0;
}
.breadcrumb-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-muted-foreground);
}
.breadcrumb-item a {
  color: var(--color-muted-foreground);
  text-decoration: none;
}
.breadcrumb-item a:hover {
  color: var(--color-accent);
}
.breadcrumb-item [aria-current="page"] {
  color: var(--color-foreground);
  font-weight: 500;
}
.breadcrumb-separator {
  color: var(--color-muted-foreground);
  opacity: 0.5;
}

/* Table of Contents */
.post-toc {
  background: var(--color-muted);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0 2rem;
}
.post-toc-title {
  font-family: var(--font-heading);
  font-size: 0.825rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-muted-foreground);
  margin: 0 0 0.75rem;
}
.post-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.post-toc-item {
  margin: 0.4rem 0;
}
.post-toc-item a {
  color: var(--color-foreground);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.4;
  border-left: 2px solid transparent;
  padding-left: 0.6rem;
  display: inline-block;
  transition: color 0.15s, border-color 0.15s;
}
.post-toc-item a:hover {
  color: var(--color-accent);
  border-left-color: var(--color-accent);
}
.post-toc-level-3 {
  padding-left: 1rem;
}
.post-toc-level-3 a {
  font-size: 0.825rem;
  color: var(--color-muted-foreground);
}

/* Share Buttons */
.share-buttons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 0;
  margin: 2rem 0 1rem;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  flex-wrap: wrap;
}
.share-buttons-label {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  margin-right: 0.5rem;
  font-weight: 500;
}
.share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-foreground);
  text-decoration: none;
  cursor: pointer;
  font: inherit;
  padding: 0;
  transition: border-color 0.15s, color 0.15s, background-color 0.15s;
}
.share-button:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.share-copy-check {
  display: none;
}
.share-copy.share-copied {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: var(--color-primary-foreground);
}
.share-copy.share-copied .share-copy-icon {
  display: none;
}
.share-copy.share-copied .share-copy-check {
  display: block;
}

/* Author Bio */
.author-bio {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 12px;
  background: var(--color-muted);
  align-items: flex-start;
}
.author-bio-card {
  margin-top: 3rem;
}
.author-bio-page {
  margin-top: 1rem;
  padding: 1.5rem 0;
  background: transparent;
}
.author-bio-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.author-bio-page .author-bio-avatar {
  width: 80px;
  height: 80px;
}
.author-bio-info {
  flex: 1;
}
.author-bio-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
  line-height: 1.3;
}
.author-bio-page .author-bio-name {
  font-size: 1.5rem;
  font-weight: 700;
}
.author-bio-name a {
  color: inherit;
  text-decoration: none;
}
.author-bio-name a:hover {
  color: var(--color-accent);
}
.author-bio-role {
  font-size: 0.8rem;
  color: var(--color-muted-foreground);
  margin-bottom: 0.5rem;
}
.author-bio-page .author-bio-role {
  font-size: 0.9rem;
}
.author-bio-text {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  line-height: 1.55;
  margin-bottom: 0.75rem;
}
.author-bio-page .author-bio-text {
  font-size: 0.95rem;
}
.author-bio-socials {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  color: var(--color-muted-foreground);
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.social-icon:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* 404 */
.not-found {
  text-align: center;
  padding: 6rem 0;
}
.not-found h1 {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 700;
  color: var(--color-muted-foreground);
  margin-bottom: 0.5rem;
}
.not-found p {
  font-size: 1.125rem;
  color: var(--color-muted-foreground);
  margin-bottom: 2rem;
}
.back-link {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-primary-foreground);
  border-radius: 8px;
  font-weight: 500;
  transition: opacity 0.2s;
}
.back-link:hover {
  opacity: 0.9;
  color: var(--color-primary-foreground);
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem 0 4rem;
  flex-wrap: wrap;
}
.pagination-numbers {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pagination-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.65rem;
  font-size: 0.875rem;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  color: var(--color-foreground);
  text-decoration: none;
  transition: border-color 0.15s, background-color 0.15s, color 0.15s;
}
.pagination-link:hover:not(.pagination-disabled):not(.pagination-current) {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.pagination-current {
  background: var(--color-accent);
  color: var(--color-primary-foreground);
  border-color: var(--color-accent);
  cursor: default;
}
.pagination-disabled {
  color: var(--color-muted-foreground);
  cursor: not-allowed;
  opacity: 0.5;
}
.pagination-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  color: var(--color-muted-foreground);
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 6rem 0;
}
.empty-state h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.empty-state p {
  color: var(--color-muted-foreground);
}

/* Responsive */
@media (min-width: 768px) {
  .container {
    max-width: 768px;
    padding: 0 2rem;
  }
  .post-title {
    font-size: 2.75rem;
  }
}
