/* ==========================================================================
   Field Notes Theme - Styles
   ========================================================================== */

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --text-primary: #ffffff;
  --text-secondary: #888888;
  --text-tertiary: #555555;
  --accent: #ffffff;
  --border: #222222;
  --max-width: 900px;
}

/* Reset & Base
   ========================================================================== */

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

html {
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-primary);
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* Header
   ========================================================================== */

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-name {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}

.version-badge {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--text-tertiary);
  letter-spacing: 0.02em;
}

.header-nav {
  display: flex;
  gap: 24px;
}

.header-nav a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  transition: color 0.15s ease;
}

.header-nav a:hover {
  color: var(--text-primary);
}

.header-nav a.active {
  color: var(--text-primary);
}

/* Main Content
   ========================================================================== */

.site-main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 24px 80px;
}

/* ==========================================================================
   Home Page / Landing
   ========================================================================== */

.home-page {
  padding-top: 80px;
}

/* Hero Section */
.hero {
  margin-bottom: 80px;
}

.hero-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 20px;
  max-width: 600px;
}

.hero-description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 580px;
}

.hero-button {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 14px 24px;
  border: 1px solid var(--text-primary);
  background: var(--text-primary);
  color: var(--bg-primary);
  transition: all 0.15s ease;
}

.hero-button:hover {
  background: transparent;
  color: var(--text-primary);
}

/* Latest Post Section */
.latest-post {
  margin-bottom: 80px;
  padding-bottom: 80px;
}

.latest-card {
  display: block;
}

.latest-image {
  margin-bottom: 24px;
  border-radius: 6px;
  overflow: hidden;
}

.latest-image img {
  width: 100%;
  height: auto;
  transition: opacity 0.15s ease;
}

.latest-card:hover .latest-image img {
  opacity: 0.85;
}

.latest-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.latest-excerpt {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 16px;
  max-width: 600px;
}

.latest-meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.latest-tag {
  color: var(--text-secondary);
}

/* Newsletter Section */
.newsletter-section {
  padding: 48px 0;
  margin-bottom: 48px;
}

.newsletter-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}

.newsletter-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
}

.newsletter-badge {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--text-tertiary);
  letter-spacing: 0.02em;
}

.newsletter-description {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 24px;
  max-width: 520px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 480px;
}

.newsletter-input {
  flex: 1;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  padding: 14px 16px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.15s ease;
}

.newsletter-input::placeholder {
  color: var(--text-tertiary);
}

.newsletter-input:focus {
  border-color: var(--text-tertiary);
}

.newsletter-btn {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  padding: 14px 20px;
  background: var(--text-primary);
  border: 1px solid var(--text-primary);
  color: var(--bg-primary);
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: all 0.15s ease;
}

.newsletter-btn:hover {
  background: transparent;
  color: var(--text-primary);
}

.newsletter-success {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 12px;
}

.newsletter-error {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: #c0392b;
  margin-top: 12px;
}

/* Section Labels
   ========================================================================== */

.section-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Featured Section
   ========================================================================== */

.featured-section {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.featured-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.featured-entry {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  transition: border-color 0.15s ease;
}

.featured-entry:hover {
  border-color: #444444;
}

.featured-id {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--accent);
  flex-shrink: 0;
}

.featured-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

/* Entry List
   ========================================================================== */

.entry-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
}

.entry-card {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  background: var(--bg-primary);
  transition: background 0.15s ease;
}

.entry-card:hover {
  background: var(--bg-secondary);
}

/* Thumbnail */
.entry-thumb {
  width: 140px;
  height: 95px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
}

.entry-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
}

/* Entry Content */
.entry-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.entry-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.4;
}

.entry-excerpt {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 10px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.entry-meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.entry-id {
  color: var(--accent);
}

.entry-meta .sep {
  color: var(--text-tertiary);
}

/* Pagination
   ========================================================================== */

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.pagination-link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--text-secondary);
  transition: color 0.15s ease;
}

.pagination-link:hover {
  color: var(--text-primary);
}

.pagination-info {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--text-tertiary);
}

/* Subscribe Section
   ========================================================================== */

.subscribe-section {
  margin-top: 56px;
  padding: 32px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
}

.subscribe-header {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.subscribe-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.subscribe-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

.subscribe-form {
  display: flex;
  gap: 8px;
}

.subscribe-input {
  flex: 1;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  padding: 12px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.15s ease;
}

.subscribe-input::placeholder {
  color: var(--text-tertiary);
}

.subscribe-input:focus {
  border-color: var(--text-tertiary);
}

.subscribe-btn {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  padding: 12px 20px;
  background: var(--text-primary);
  border: none;
  color: var(--bg-primary);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.15s ease;
}

.subscribe-btn:hover {
  background: #cccccc;
}

.subscribe-message {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 12px;
}

.subscribe-error {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: #c0392b;
  margin-top: 12px;
}

/* Footer
   ========================================================================== */

.site-footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 24px;
  margin-top: 48px;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--text-tertiary);
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--text-tertiary);
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: var(--text-secondary);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: var(--text-tertiary);
  transition: color 0.15s ease;
}

.footer-social a:hover {
  color: var(--text-primary);
}

/* ==========================================================================
   Post Page
   ========================================================================== */

.post-header {
  margin-bottom: 40px;
}

.post-meta-top {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--text-tertiary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.post-number {
  color: var(--accent);
}

.post-tag {
  color: var(--text-secondary);
  transition: color 0.15s ease;
}

.post-tag:hover {
  color: var(--text-primary);
}

.post-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.post-excerpt {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Feature Image */
.post-feature-image {
  margin-bottom: 40px;
  border-radius: 8px;
  overflow: hidden;
}

.post-feature-image figcaption {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 12px;
  text-align: center;
}

/* Post Content */
.post-content {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-primary);
}

.post-content h2 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 20px;
  font-weight: 500;
  margin-top: 48px;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.post-content h3 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 16px;
  font-weight: 500;
  margin-top: 36px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.post-content p {
  margin-bottom: 24px;
}

.post-content a {
  color: var(--text-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.post-content a:hover {
  color: var(--accent);
}

.post-content blockquote {
  margin: 32px 0;
  padding-left: 20px;
  border-left: 2px solid var(--border);
  color: var(--text-secondary);
  font-style: italic;
}

.post-content code {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.9em;
  background: var(--bg-secondary);
  padding: 2px 6px;
  border-radius: 3px;
}

.post-content pre {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 20px;
  overflow-x: auto;
  margin: 32px 0;
}

.post-content pre code {
  background: none;
  padding: 0;
}

.post-content ul,
.post-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.post-content li {
  margin-bottom: 8px;
}

.post-content img {
  border-radius: 6px;
  margin: 32px 0;
}

.post-content figure {
  margin: 32px 0;
}

.post-content figure,
.page-content figure {
  margin: 32px 0;
}

.post-content figcaption,
.page-content figcaption {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 12px;
  text-align: center;
}

/* Ghost Editor Card Widths
   ========================================================================== */

.kg-width-wide {
  position: relative;
  width: 85vw;
  min-width: 100%;
  max-width: 1040px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  transform: translateX(calc(50vw - 50%));
}

.kg-width-full {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.kg-width-full img {
  width: 100%;
}

/* Ghost Cards
   ========================================================================== */

.kg-card {
  margin: 32px 0;
}

.kg-image-card img {
  border-radius: 6px;
}

.kg-width-full .kg-image-card img {
  border-radius: 0;
}

.kg-gallery-card {
  display: flex;
  flex-direction: column;
}

.kg-gallery-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.kg-gallery-row {
  display: flex;
  gap: 8px;
  width: 100%;
}

.kg-gallery-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.kg-bookmark-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.kg-bookmark-container {
  display: flex;
  text-decoration: none;
  color: inherit;
}

.kg-bookmark-content {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.kg-bookmark-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.kg-bookmark-description {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.kg-bookmark-metadata {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-tertiary);
}

.kg-bookmark-icon {
  width: 16px;
  height: 16px;
}

.kg-bookmark-author::before {
  content: "•";
  margin-right: 8px;
}

.kg-bookmark-thumbnail {
  width: 180px;
  flex-shrink: 0;
}

.kg-bookmark-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kg-callout-card {
  padding: 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  gap: 12px;
}

.kg-callout-emoji {
  font-size: 20px;
}

.kg-callout-text {
  flex: 1;
}

.kg-toggle-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 20px;
}

.kg-toggle-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.kg-toggle-heading svg {
  width: 14px;
  height: 14px;
  color: var(--text-tertiary);
  transition: transform 0.2s ease;
}

.kg-toggle-card[data-kg-toggle-state="open"] .kg-toggle-heading svg {
  transform: rotate(90deg);
}

.kg-toggle-content {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.kg-button-card {
  display: flex;
  justify-content: center;
}

.kg-button-card a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  padding: 12px 24px;
  background: var(--text-primary);
  color: var(--bg-primary);
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.15s ease;
}

.kg-button-card a:hover {
  background: #cccccc;
}

/* Post Footer */
.post-footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--text-tertiary);
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 3px;
  transition: all 0.15s ease;
}

.tag-link:hover {
  color: var(--text-primary);
  border-color: var(--text-tertiary);
}

/* Post Share */
.post-share {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.share-link-btn {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--text-tertiary);
  background: transparent;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.share-link-btn:hover {
  color: var(--text-primary);
  border-color: var(--text-tertiary);
}

.share-link-btn:active {
  transform: scale(0.98);
}

.share-copied {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--text-secondary);
}

/* Post Navigation */
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.post-nav:not(:has(a)) {
  display: none;
}

.post-nav-link {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.post-nav-next {
  text-align: right;
}

.post-nav-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.post-nav-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.15s ease;
}

.post-nav-link:hover .post-nav-title {
  color: var(--text-primary);
}

/* ==========================================================================
   Page
   ========================================================================== */

.page-header {
  margin-bottom: 40px;
}

.page-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text-primary);
}

.page-feature-image {
  margin-bottom: 40px;
  border-radius: 8px;
  overflow: hidden;
}

.page-feature-image figcaption {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  font-family: 'IBM Plex Mono', monospace;
}

.page-content {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-primary);
}

/* Inherit post content styles */
.page-content h2,
.page-content h3,
.page-content p,
.page-content a,
.page-content blockquote,
.page-content code,
.page-content pre,
.page-content ul,
.page-content ol,
.page-content li,
.page-content img,
.page-content figure,
.page-content figcaption {
  /* Same as post-content */
}

.page-content h2 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 20px;
  font-weight: 500;
  margin-top: 48px;
  margin-bottom: 20px;
}

.page-content h3 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 16px;
  font-weight: 500;
  margin-top: 36px;
  margin-bottom: 16px;
}

.page-content p {
  margin-bottom: 24px;
}

.page-content a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ==========================================================================
   Archive (Tag, Author)
   ========================================================================== */

.archive-header {
  margin-bottom: 40px;
}

.archive-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 24px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.archive-description {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* ==========================================================================
   Error Page
   ========================================================================== */

.error-page {
  text-align: center;
  padding: 80px 0;
}

.error-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 24px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.error-desc {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.error-link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: var(--text-secondary);
  transition: color 0.15s ease;
}

.error-link:hover {
  color: var(--text-primary);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 600px) {
  html {
    font-size: 16px;
  }

  .site-header {
    padding: 24px 20px;
  }

  .site-nav {
    padding: 14px 20px;
    gap: 16px;
    overflow-x: auto;
  }

  .site-main {
    padding: 32px 20px 60px;
  }

  .entry-card {
    flex-direction: column;
    padding: 20px 0;
  }

  .entry-thumb {
    width: 100%;
    height: 160px;
    border-radius: 8px;
  }

  .post-title {
    font-size: 24px;
  }

  .subscribe-form {
    flex-direction: column;
  }

  .footer-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .post-nav {
    grid-template-columns: 1fr;
  }

  .post-nav-next {
    text-align: left;
  }
}
