/* CSS Variables */
:root {
    --color-bg: #ffffff;
    --color-bg-secondary: #f8f9fa;
    --color-text: #1a1a1a;
    --color-text-secondary: #6b7280;
    --color-accent: #22c55e;
    --color-accent-hover: #16a34a;
    --color-border: #e5e7eb;
    --color-card-bg: #ffffff;
    --color-hero-bg: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    --color-hero-text: #ffffff;
    --color-hero-text-secondary: #a3a3a3;
    --color-footer-bg: #f8f9fa;
    --color-footer-text: #1a1a1a;
    --color-footer-text-secondary: #6b7280;
    --color-footer-border: #e5e7eb;
    --color-code-bg: #1a1a1a;
    --color-code-text: #f8f8f2;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-mono: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', monospace;
    --max-width: 1200px;
    --header-height: 64px;
}

/* Dark Mode */
[data-theme="dark"] {
    --color-bg: #0f0f0f;
    --color-bg-secondary: #1a1a1a;
    --color-text: #f5f5f5;
    --color-text-secondary: #a3a3a3;
    --color-border: #2d2d2d;
    --color-card-bg: #1a1a1a;
    --color-hero-bg: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    --color-hero-text: #ffffff;
    --color-hero-text-secondary: #737373;
    --color-footer-bg: #0a0a0a;
    --color-footer-text: #f5f5f5;
    --color-footer-text-secondary: #737373;
    --color-footer-border: #2d2d2d;
    --color-code-bg: #0a0a0a;
    --color-code-text: #f8f8f2;
}

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

/* Base */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

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

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    height: var(--header-height);
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
    flex: 1;
}


.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
}

.logo-icon {
    color: var(--color-accent);
    font-size: 1.25rem;
}

.logo-version {
    font-size: 0.625rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    background: var(--color-bg-secondary);
    padding: 0.125rem 0.375rem;
    border-radius: 4px;
    margin-left: 0.25rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: auto;
}

.nav-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    border-radius: 6px;
    transition: all 0.15s;
}

.nav-link:hover {
    color: var(--color-text);
    background: var(--color-bg-secondary);
}

.nav-link.active {
    color: var(--color-accent);
    background: rgba(34, 197, 94, 0.1);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-action-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--color-text-secondary);
    border-radius: 8px;
    transition: all 0.15s;
}

.header-action-link:hover {
    color: var(--color-accent);
    background: var(--color-bg-secondary);
}

/* Search */
.search-container {
    position: relative;
}

.search-input {
    width: 180px;
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 0.875rem;
    background: var(--color-bg-secondary);
    color: var(--color-text);
    transition: all 0.2s;
}

.search-input:focus {
    outline: none;
    border-color: var(--color-accent);
    background: var(--color-bg);
    width: 240px;
}

.search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: none;
    overflow: hidden;
}

.search-results.visible {
    display: block;
}

.search-result-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--color-border);
    transition: background 0.15s;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: var(--color-bg-secondary);
}

.search-result-title {
    font-size: 0.875rem;
    font-weight: 500;
}

.search-result-category {
    font-size: 0.75rem;
    color: var(--color-accent);
    background: rgba(34, 197, 94, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.search-no-results {
    padding: 1rem;
    text-align: center;
    color: var(--color-text-secondary);
    font-size: 0.875rem;
}

/* Social Links */
.social-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-link {
    color: var(--color-text-secondary);
    transition: color 0.15s;
}

.social-link:hover {
    color: var(--color-accent);
}

/* Theme Toggle */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    cursor: pointer;
    color: var(--color-text-secondary);
    transition: all 0.15s;
}

.theme-toggle:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
}

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

/* Hero */
.hero {
    background: var(--color-hero-bg);
    color: var(--color-hero-text);
    padding: 3rem 1.5rem;
}

.hero-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--color-hero-text-secondary);
    max-width: 600px;
}

.hero-image {
    flex-shrink: 0;
    width: 400px;
    max-width: 100%;
}

.hero-image svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(34, 197, 94, 0.15));
}

/* Main Content */
.main {
    flex: 1;
}

/* Posts Section */
.posts-section {
    padding: 2rem 1.5rem;
}

.posts-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

/* Post Card */
.post-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s;
}

.post-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.1);
}

.post-card-link {
    display: block;
}

.post-card-image {
    aspect-ratio: 16/10;
    background: var(--color-bg-secondary);
    overflow: hidden;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.post-card:hover .post-card-image img {
    transform: scale(1.05);
}

.post-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
    opacity: 0.5;
}

.post-card-content {
    padding: 1.25rem;
}

.post-card-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.post-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.post-card-description {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.post-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--color-text-secondary);
}

/* Single Post */
.post {
    padding: 2rem 1.5rem 4rem;
}

.post-container {
    max-width: 720px;
    margin: 0 auto;
}

.post-header {
    margin-bottom: 2rem;
}

.post-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-accent);
    margin-bottom: 0.75rem;
}

.post-category:hover {
    text-decoration: underline;
}

.post-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
}

.post-meta .separator {
    opacity: 0.5;
}

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

.tag {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    background: var(--color-bg-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    transition: all 0.15s;
}

.tag:hover {
    color: var(--color-accent);
    background: rgba(34, 197, 94, 0.1);
}

/* Post Share */
.post-share {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.share-label {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.share-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: var(--color-text-secondary);
    background: transparent;
    cursor: pointer;
    transition: all 0.15s;
}

.share-button:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.share-twitter:hover {
    border-color: #1da1f2;
    color: #1da1f2;
}

.share-linkedin:hover {
    border-color: #0077b5;
    color: #0077b5;
}

.share-email:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.share-copy.copied {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(34, 197, 94, 0.1);
}

.post-image {
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
}

/* Prose Content */
.prose {
    font-size: 1.0625rem;
    line-height: 1.75;
}

.prose h2, .prose h3, .prose h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.prose h2 {
    font-size: 1.5rem;
}

.prose h3 {
    font-size: 1.25rem;
}

.prose p {
    margin-bottom: 1.25rem;
}

.prose a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

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

.prose ul, .prose ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.prose li {
    margin-bottom: 0.5rem;
}

.prose blockquote {
    border-left: 3px solid var(--color-accent);
    padding-left: 1rem;
    margin: 1.5rem 0;
    color: var(--color-text-secondary);
    font-style: italic;
}

.prose code {
    font-family: var(--font-mono);
    font-size: 0.875em;
    background: var(--color-bg-secondary);
    padding: 0.2em 0.4em;
    border-radius: 4px;
}

.prose pre {
    background: var(--color-code-bg);
    color: var(--color-code-text);
    padding: 1.25rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.prose pre code {
    background: none;
    padding: 0;
    font-size: 0.875rem;
}

.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.prose th, .prose td {
    padding: 0.75rem;
    border: 1px solid var(--color-border);
    text-align: left;
}

.prose th {
    background: var(--color-bg-secondary);
    font-weight: 600;
}

.prose strong {
    font-weight: 600;
}

/* Post Navigation */
.post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.prev-post, .next-post {
    padding: 1rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    transition: all 0.15s;
}

.prev-post:hover, .next-post:hover {
    border-color: var(--color-accent);
}

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

.nav-label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    margin-bottom: 0.25rem;
}

.nav-title {
    font-size: 0.875rem;
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--color-footer-bg);
    color: var(--color-footer-text);
    padding: 3rem 1.5rem 1.5rem;
}

.footer-main {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--color-footer-text-secondary);
    line-height: 1.5;
}

.footer-columns {
    display: flex;
    gap: 4rem;
}

.footer-column {
    min-width: 120px;
}

.footer-column-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-footer-text);
    margin-bottom: 1rem;
}

.footer-column-links {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-column-links a {
    font-size: 0.875rem;
    color: var(--color-footer-text-secondary);
    transition: color 0.15s;
}

.footer-column-links a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-footer-border);
    text-align: left;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--color-footer-text-secondary);
}

/* Category Cards */
.categories-section {
    padding: 2rem 1.5rem;
    background: var(--color-bg-secondary);
}

.categories-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.category-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.category-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(34, 197, 94, 0.15);
}

.category-card:hover .category-card-icon {
    transform: scale(1.1);
}

.category-card:hover .category-card-title {
    color: var(--color-accent);
}

.category-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #ffffff;
    transition: transform 0.25s ease;
}

.category-card--tech .category-card-icon {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.category-card--retro .category-card-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.category-card--running .category-card-icon {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.category-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    transition: color 0.25s ease;
}

.category-card-description {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    flex: 1;
    margin-bottom: 1rem;
}

.category-card-count {
    font-size: 0.75rem;
    color: var(--color-accent);
    font-weight: 500;
}

/* Post Cards Grid */
.posts-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

/* Small Post Card */
.post-card-small {
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
}

.post-card-small:hover {
    border-color: var(--color-accent);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.1);
}

.post-card-small-link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.post-card-small-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: var(--color-bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.post-card-small-image img,
.post-card-small-image svg.post-card-mock-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.post-card-small:hover .post-card-small-image img,
.post-card-small:hover .post-card-small-image svg.post-card-mock-image {
    transform: scale(1.05);
}

.post-card-small-content {
    flex: 1;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
}

.post-card-small-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    margin-bottom: 0.5rem;
}

.post-card-small-category {
    color: var(--color-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-card-small-reading-time {
    color: var(--color-text-secondary);
}

.post-card-small-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.375rem;
    line-height: 1.4;
}

.post-card-small-description {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.post-card-small-footer {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.post-card-small-date {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
}

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

.post-card-small-tag {
    font-size: 0.6875rem;
    color: var(--color-text-secondary);
    opacity: 0.8;
    transition: color 0.15s, opacity 0.15s;
}

.post-card-small-tag:hover {
    color: var(--color-accent);
    opacity: 1;
}

/* View All Link */
.view-all {
    margin-top: 2rem;
    text-align: center;
}

.view-all-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
    transition: all 0.15s;
}

.view-all-link:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

/* About Page */
.about-page {
    padding: 2rem 1.5rem 4rem;
}

.about-container {
    max-width: 720px;
    margin: 0 auto;
}

.about-header {
    margin-bottom: 2rem;
}

.about-title {
    font-size: 2.25rem;
    font-weight: 700;
}

.about-content {
    /* Content inherits container width */
}

/* Tags Section */
.tags-section {
    padding: 2rem 1.5rem;
}

.tags-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.tags-header {
    margin-bottom: 2rem;
}

.tags-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tags-count {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.tags-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.tags-pills--all {
    border-bottom: none;
    padding-bottom: 0;
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.625rem;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-family: inherit;
    color: var(--color-text);
    transition: all 0.15s;
    cursor: pointer;
}

.tag-pill:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.tag-pill.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #ffffff;
}

.tag-pill.active .tag-pill-count {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.tag-pill-count {
    font-size: 0.625rem;
    background: var(--color-border);
    padding: 0.0625rem 0.375rem;
    border-radius: 9999px;
    color: var(--color-text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 2;
        width: 100%;
        max-width: 320px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 1rem;
        max-width: none;
    }

    .category-cards {
        grid-template-columns: 1fr;
    }

    .posts-grid {
        grid-template-columns: 1fr;
    }

    .posts-cards-grid {
        grid-template-columns: 1fr;
    }

    .header-left {
        gap: 1rem;
    }

    .main-nav {
        display: none;
    }

    .logo-version {
        display: none;
    }

    .search-input {
        width: 120px;
    }

    .search-input:focus {
        width: 160px;
    }

    .post-title {
        font-size: 1.75rem;
    }

    .footer-main {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-brand {
        max-width: none;
    }

    .footer-columns {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .footer-column {
        min-width: 100px;
    }

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

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

    .about-title {
        font-size: 1.75rem;
    }
}

/* Tablet breakpoint - show nav but more compact */
@media (min-width: 769px) and (max-width: 1024px) {
    .posts-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-link {
        padding: 0.5rem 0.5rem;
        font-size: 0.8125rem;
    }

    .search-input {
        width: 140px;
    }
}
