/* =========================================================================
   CRIAR CV WP THEME — main.css (blog edition)
   Blog B2C com hero gradient dark, blue-700 primary + violet accent.
   ========================================================================= */

:root {
  --color-primary: #1d4ed8;
  --color-primary-hover: #1e40af;
  --color-primary-foreground: #eff6ff;
  --color-primary-soft: rgba(29, 78, 216, 0.08);
  --color-primary-border: rgba(29, 78, 216, 0.2);

  --color-accent-violet: #7c3aed;
  --color-accent-violet-hover: #6d28d9;
  --color-accent-violet-soft: rgba(124, 58, 237, 0.08);

  --color-background: #ffffff;
  --color-foreground: #1a1a1a;
  --color-card: #ffffff;
  --color-muted: #f5f5f6;
  --color-muted-foreground: #6b7280;
  --color-border: #e5e7eb;
  --color-destructive: #dc2626;
  --color-success: #16a34a;
  --color-warning: #eab308;

  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Sora', 'Inter', sans-serif;

  --radius: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --container-max: 1280px;
  --header-height: 64px;

  --transition: 180ms ease;

  --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #6d28d9 100%);
  --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #1e293b 100%);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); color: var(--color-foreground); background: var(--color-background); line-height: 1.55; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-primary); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; }
p { line-height: 1.65; }

.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem; padding: 0.7rem 1.2rem; font-weight: 700; font-size: 0.9rem; border-radius: var(--radius); transition: var(--transition); white-space: nowrap; cursor: pointer; line-height: 1; }
.btn-primary { background: var(--gradient-primary); color: #fff; box-shadow: 0 6px 18px -8px rgba(29, 78, 216, 0.45); }
.btn-primary:hover { color: #fff; box-shadow: 0 10px 22px -8px rgba(29, 78, 216, 0.55); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--color-foreground); box-shadow: inset 0 0 0 1px var(--color-border); }
.btn-outline:hover { background: var(--color-muted); }
.btn-sm { padding: 0.5rem 0.9rem; font-size: 0.85rem; }

.badge { display: inline-flex; align-items: center; gap: 0.3rem; padding: 0.3rem 0.85rem; font-size: 0.75rem; font-weight: 600; border-radius: 999px; background: var(--color-primary-soft); color: var(--color-primary); }
.badge-outline { background: transparent; box-shadow: inset 0 0 0 1px var(--color-border); color: var(--color-muted-foreground); }

.text-muted { color: var(--color-muted-foreground); }
.text-primary { color: var(--color-primary); }
.text-gradient { background: var(--gradient-primary); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }

/* HEADER */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.9); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--color-border); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: var(--header-height); gap: 1rem; }
.site-brand { display: flex; align-items: center; gap: 0.55rem; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--color-primary); flex-shrink: 0; }
.site-brand-mark { width: 2rem; height: 2rem; border-radius: calc(var(--radius) - 2px); background: var(--gradient-primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; }

.site-nav { display: none; flex: 1; }
.site-nav ul { list-style: none; padding: 0; display: flex; gap: 1.5rem; font-size: 0.9rem; }
.site-nav a { color: var(--color-muted-foreground); font-weight: 500; }
.site-nav a:hover { color: var(--color-foreground); }

.site-header-actions { display: none; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.search-toggle { width: 2.25rem; height: 2.25rem; border-radius: var(--radius); color: var(--color-muted-foreground); display: flex; align-items: center; justify-content: center; }
.search-toggle:hover { background: var(--color-muted); color: var(--color-foreground); }

@media (min-width: 768px) {
  .site-nav { display: block; }
  .site-header-actions { display: inline-flex; }
}

.nav-toggle { display: flex; padding: 0.5rem; border-radius: var(--radius); }
.nav-toggle:hover { background: var(--color-muted); }
@media (min-width: 768px) { .nav-toggle { display: none; } }

.mobile-nav { display: none; padding: 1rem; border-top: 1px solid var(--color-border); background: var(--color-background); }
.mobile-nav.is-open { display: block; }
.mobile-nav ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav a { display: block; padding: 0.6rem 0.5rem; border-radius: var(--radius); color: var(--color-foreground); font-weight: 500; }
.mobile-nav a:hover { background: var(--color-muted); }

.site-search { border-top: 1px solid var(--color-border); background: var(--color-muted); padding: 1rem 0; }
.site-search form { display: flex; gap: 0.5rem; max-width: 640px; margin: 0 auto; }
.site-search input[type="search"] { flex: 1; padding: 0.75rem 1rem; border: 1px solid var(--color-border); border-radius: var(--radius); background: var(--color-background); font-size: 1rem; color: var(--color-foreground); }
.site-search input[type="search"]:focus { outline: 2px solid var(--color-primary); outline-offset: 1px; border-color: var(--color-primary); }

/* BLOG HERO — dark gradient igual site principal */
.blog-hero { padding: 4.5rem 0 3rem; text-align: center; background: var(--gradient-hero); color: #fff; position: relative; }
.blog-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at top, rgba(124, 58, 237, 0.18) 0%, transparent 60%); pointer-events: none; }
.blog-hero .container { position: relative; z-index: 1; }
.blog-hero .badge { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(10px); margin-bottom: 1rem; }
.blog-hero .badge-outline { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2); }
.blog-hero h1 { font-size: clamp(2rem, 4vw, 3.25rem); margin: 0.75rem 0 0.5rem; color: #fff; font-weight: 800; }
.blog-hero p.lead { color: rgba(255,255,255,0.75); max-width: 640px; margin: 0 auto; font-size: 1.05rem; }
.blog-hero form { max-width: 480px; margin: 1.5rem auto 0; display: flex; gap: 0.5rem; }
.blog-hero input[type="search"] { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.25); }
.blog-hero input[type="search"]::placeholder { color: rgba(255,255,255,0.5); }
.blog-hero input[type="search"]:focus { outline: 2px solid #fff; outline-offset: 1px; background: rgba(255,255,255,0.18); }
.blog-hero button[type="submit"] { background: #fff; color: var(--color-primary); }
.blog-hero button[type="submit"]:hover { background: rgba(255,255,255,0.92); }

/* BLOG LAYOUT */
.blog-body { padding: 2.5rem 0 4rem; }
.blog-layout { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .blog-layout { grid-template-columns: 1fr 300px; } }
.blog-main { min-width: 0; }

/* POST CARD */
.posts-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(1, 1fr); }
@media (min-width: 640px) { .posts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-layout .posts-grid { grid-template-columns: repeat(2, 1fr); } }

.post-card { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-xl); overflow: hidden; transition: var(--transition); }
.post-card:hover { border-color: var(--color-primary-border); transform: translateY(-3px); box-shadow: 0 12px 28px -15px rgba(29, 78, 216, 0.2); }
.post-card-link { display: flex; flex-direction: column; height: 100%; color: inherit; }
.post-card-link:hover { color: inherit; }
.post-card-media { aspect-ratio: 16/9; background: var(--color-muted); overflow: hidden; }
.post-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 300ms ease; }
.post-card:hover .post-card-media img { transform: scale(1.04); }
.post-card-media-fallback { display: flex; align-items: center; justify-content: center; background: var(--gradient-primary); color: rgba(255,255,255,0.3); }
.post-card-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.post-card-category { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-primary); }
.post-card-title { font-size: 1.1rem; font-weight: 700; line-height: 1.3; margin: 0; transition: color var(--transition); }
.post-card:hover .post-card-title { color: var(--color-primary); }
.post-card-excerpt { font-size: 0.88rem; color: var(--color-muted-foreground); line-height: 1.55; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.post-card-meta { font-size: 0.78rem; color: var(--color-muted-foreground); display: flex; gap: 0.4rem; margin-top: auto; }

/* SIDEBAR */
.blog-sidebar { display: flex; flex-direction: column; gap: 1.75rem; }
@media (min-width: 1024px) { .blog-sidebar { position: sticky; top: calc(var(--header-height) + 1.5rem); align-self: start; max-height: calc(100vh - var(--header-height) - 2rem); overflow-y: auto; overflow-x: hidden; scrollbar-width: thin; padding-right: 0.25rem; } }

.widget { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-xl); padding: 1.25rem; min-width: 0; overflow: hidden; }
.widget-title { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-muted-foreground); margin-bottom: 0.85rem; font-family: var(--font-body); }

.widget-search form { display: flex; gap: 0.5rem; }
.widget-search input[type="search"] { flex: 1; min-width: 0; padding: 0.55rem 0.75rem; font-size: 0.88rem; border: 1px solid var(--color-border); border-radius: var(--radius); background: var(--color-background); }
.widget-search button { padding: 0.55rem 0.85rem; flex-shrink: 0; font-size: 0.82rem; white-space: nowrap; }

.widget-recent-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.widget-recent-list a { display: flex; gap: 0.75rem; align-items: center; color: var(--color-foreground); min-width: 0; }
.widget-recent-list .thumb { width: 3.5rem; height: 3.5rem; flex-shrink: 0; border-radius: calc(var(--radius) - 2px); overflow: hidden; background: var(--color-muted); }
.widget-recent-list .thumb img { width: 100%; height: 100%; object-fit: cover; }
.widget-recent-list .meta { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; flex: 1; }
.widget-recent-list strong { font-size: 0.85rem; font-weight: 600; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.widget-recent-list small { font-size: 0.72rem; color: var(--color-muted-foreground); }
.widget-recent-list a:hover strong { color: var(--color-primary); }

.widget-cats-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.35rem; }
.widget-cats-list a { display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; padding: 0.45rem 0.65rem; border-radius: var(--radius); font-size: 0.88rem; color: var(--color-foreground); transition: var(--transition); min-width: 0; }
.widget-cats-list a > span:first-child, .widget-cats-list a:not(:has(span)) { min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex: 1; }
.widget-cats-list a:hover { background: var(--color-primary-soft); color: var(--color-primary); }
.widget-cats-list .count { font-size: 0.72rem; color: var(--color-muted-foreground); background: var(--color-muted); padding: 0.1rem 0.5rem; border-radius: 999px; }

.widget-tags-cloud { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.tag-pill { display: inline-block; padding: 0.25rem 0.7rem; font-size: 0.78rem; background: var(--color-muted); color: var(--color-muted-foreground); border-radius: 999px; transition: var(--transition); }
.tag-pill:hover { background: var(--gradient-primary); color: #fff; }

/* SINGLE */
.post-single-wrap { padding-bottom: 3rem; }
.breadcrumb { padding: 1.25rem 0 0; font-size: 0.82rem; color: var(--color-muted-foreground); }
.breadcrumb a { color: var(--color-muted-foreground); }
.breadcrumb a:hover { color: var(--color-primary); }
.breadcrumb .sep { margin: 0 0.35rem; opacity: 0.6; }
.breadcrumb .current { color: var(--color-foreground); }
.post-single-header { padding: 2rem 0 1.5rem; text-align: center; }
.post-category { display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-primary); margin-bottom: 0.75rem; }
.post-title { font-size: clamp(1.75rem, 3.5vw, 3rem); font-weight: 800; margin-bottom: 1rem; max-width: 820px; margin-left: auto; margin-right: auto; }
.post-meta-row { display: inline-flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--color-muted-foreground); }
.post-meta-row .dot { opacity: 0.5; }
.post-author-mini { display: inline-flex; align-items: center; gap: 0.5rem; }
.post-author-mini .avatar { width: 28px; height: 28px; border-radius: 999px; }
.post-feat-image { margin: 1.5rem 0 2.5rem; }
.post-feat-image img { width: 100%; border-radius: var(--radius-xl); aspect-ratio: 2/1; object-fit: cover; }

.entry-content { font-size: 1.05rem; line-height: 1.75; color: var(--color-foreground); }
.entry-content > * + * { margin-top: 1.2em; }
.entry-content h2 { margin-top: 2em; font-size: 1.75rem; }
.entry-content h3 { margin-top: 1.75em; font-size: 1.35rem; }
.entry-content h4 { margin-top: 1.5em; font-size: 1.1rem; }
.entry-content p { margin-top: 1em; }
.entry-content a { color: var(--color-primary); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.entry-content a:hover { text-decoration-thickness: 2px; }
.entry-content ul, .entry-content ol { padding-left: 1.5em; }
.entry-content li { margin-top: 0.4em; }
.entry-content img, .entry-content figure img { border-radius: var(--radius); }
.entry-content figure { margin: 1.5em 0; }
.entry-content figcaption { font-size: 0.82rem; color: var(--color-muted-foreground); text-align: center; margin-top: 0.5em; }
.entry-content blockquote { border-left: 4px solid var(--color-primary); background: var(--color-primary-soft); padding: 1rem 1.25rem; border-radius: 0 var(--radius) var(--radius) 0; color: var(--color-foreground); font-style: italic; }
.entry-content blockquote p { margin: 0; }
.entry-content code { background: var(--color-muted); padding: 0.15em 0.4em; border-radius: 4px; font-size: 0.9em; font-family: 'JetBrains Mono', 'Menlo', monospace; }
.entry-content pre { background: #0f172a; color: #e2e8f0; padding: 1.25rem 1.5rem; border-radius: var(--radius); overflow-x: auto; font-size: 0.88rem; line-height: 1.6; }
.entry-content pre code { background: transparent; padding: 0; color: inherit; }
.entry-content hr { border: 0; border-top: 1px solid var(--color-border); margin: 2.5em 0; }
.entry-content table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.entry-content th, .entry-content td { padding: 0.6rem 0.85rem; border: 1px solid var(--color-border); text-align: left; }
.entry-content th { background: var(--color-muted); font-weight: 600; }

.post-tags { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center; }
.post-tags-label { font-size: 0.82rem; color: var(--color-muted-foreground); font-weight: 600; margin-right: 0.35rem; }

.post-share { margin-top: 2rem; padding: 1.25rem 0; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.post-share-label { font-size: 0.82rem; color: var(--color-muted-foreground); font-weight: 600; margin-right: 0.35rem; }
.share-btn { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.45rem 0.85rem; font-size: 0.82rem; font-weight: 500; border-radius: var(--radius); border: 1px solid var(--color-border); background: var(--color-card); color: var(--color-foreground); cursor: pointer; transition: var(--transition); }
.share-btn:hover { background: var(--color-muted); color: var(--color-foreground); border-color: var(--color-primary-border); }
.share-wa:hover { background: #25d366; color: #fff; border-color: #25d366; }
.share-x:hover { background: #000; color: #fff; border-color: #000; }
.share-ln:hover { background: #0a66c2; color: #fff; border-color: #0a66c2; }
.share-fb:hover { background: #1877f2; color: #fff; border-color: #1877f2; }
.share-copy.is-copied { background: var(--color-success); color: #fff; border-color: var(--color-success); }

.author-card { margin-top: 2.5rem; display: flex; gap: 1.25rem; padding: 1.5rem; background: var(--color-muted); border-radius: var(--radius-xl); }
.author-card .avatar { width: 72px; height: 72px; border-radius: 999px; flex-shrink: 0; }
.author-card-label { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-muted-foreground); font-weight: 600; margin-bottom: 0.25rem; }
.author-card h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.author-card p { font-size: 0.9rem; color: var(--color-muted-foreground); margin-bottom: 0.85rem; }

.post-nav { margin-top: 2.5rem; display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .post-nav { grid-template-columns: 1fr 1fr; } }
.post-nav-item { padding: 1rem 1.25rem; border: 1px solid var(--color-border); border-radius: var(--radius-xl); display: flex; flex-direction: column; gap: 0.25rem; transition: var(--transition); background: var(--color-card); color: var(--color-foreground); min-width: 0; }
.post-nav-item:hover { border-color: var(--color-primary-border); transform: translateY(-1px); color: var(--color-foreground); box-shadow: 0 6px 16px -10px rgba(29, 78, 216, 0.2); }
.post-nav-item small { font-size: 0.72rem; color: var(--color-muted-foreground); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.post-nav-item span { font-weight: 600; font-size: 0.92rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.post-nav-next { text-align: right; }

.related-posts { margin-top: 3rem; }
.related-posts h3 { font-size: 1.25rem; margin-bottom: 1rem; }
.related-posts .posts-grid { grid-template-columns: repeat(1, 1fr); }
@media (min-width: 640px) { .related-posts .posts-grid { grid-template-columns: repeat(3, 1fr); } }

.post-comments { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--color-border); }
.post-comments h3 { font-size: 1.25rem; margin-bottom: 1.25rem; }
.comment-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 1.25rem; }
.comment-list li { background: var(--color-muted); padding: 1rem; border-radius: var(--radius); }
.comment-list .comment-author { font-weight: 600; font-size: 0.92rem; margin-bottom: 0.25rem; }
.comment-list .comment-meta { font-size: 0.78rem; color: var(--color-muted-foreground); margin-bottom: 0.5rem; }
.comment-form p { margin-top: 1rem; }
.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .comment-form textarea { width: 100%; padding: 0.65rem 0.85rem; border: 1px solid var(--color-border); border-radius: var(--radius); background: var(--color-background); font: inherit; color: var(--color-foreground); }
.comment-form label { font-size: 0.85rem; font-weight: 500; display: block; margin-bottom: 0.25rem; }
.comment-form .form-submit input { padding: 0.7rem 1.2rem; background: var(--gradient-primary); color: #fff; border-radius: var(--radius); font-weight: 700; border: 0; cursor: pointer; }

.pagination { display: flex; flex-wrap: wrap; gap: 0.4rem; justify-content: center; margin-top: 2.5rem; }
.pagination a, .pagination span { padding: 0.5rem 0.9rem; border-radius: var(--radius); font-size: 0.88rem; font-weight: 500; border: 1px solid var(--color-border); color: var(--color-foreground); background: var(--color-card); transition: var(--transition); }
.pagination a:hover { background: var(--color-muted); border-color: var(--color-primary-border); }
.pagination .current { background: var(--gradient-primary); color: #fff; border-color: transparent; }
.pagination .dots { border: 0; background: transparent; }

.empty-state { text-align: center; padding: 3rem 1.5rem; background: var(--color-muted); border-radius: var(--radius-xl); }
.empty-state h2 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.empty-state p { color: var(--color-muted-foreground); margin-bottom: 1rem; }

/* FOOTER — mantem 4 cols do CriarCV original */
.site-footer { background: var(--color-background); padding: 3rem 0 1.5rem; border-top: 1px solid var(--color-border); }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: repeat(1, 1fr); margin-bottom: 2rem; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand .brand { display: inline-flex; align-items: center; gap: 0.55rem; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--color-primary); margin-bottom: 0.75rem; }
.footer-brand .brand-mark { width: 1.75rem; height: 1.75rem; border-radius: calc(var(--radius) - 2px); background: var(--gradient-primary); color: #fff; display: flex; align-items: center; justify-content: center; }
.footer-brand p { font-size: 0.85rem; color: var(--color-muted-foreground); line-height: 1.55; max-width: 320px; }
.footer-col h4 { font-weight: 600; font-size: 0.88rem; margin-bottom: 0.75rem; }
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.45rem; font-size: 0.85rem; }
.footer-col a { color: var(--color-muted-foreground); }
.footer-col a:hover { color: var(--color-foreground); }
.footer-bottom { border-top: 1px solid var(--color-border); padding-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; align-items: center; text-align: center; font-size: 0.82rem; color: var(--color-muted-foreground); }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.site-footer nav ul { list-style: none; padding: 0; display: flex; gap: 1.5rem; font-size: 0.85rem; }
.site-footer nav a { color: var(--color-muted-foreground); }
.site-footer nav a:hover { color: var(--color-foreground); }

.post-single { max-width: 820px; margin: 0 auto; padding: 3rem 1rem; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
