/*
Theme Name: 衣岳派
Theme URI: https://yiyuepai.com
Description: 简洁优雅的博客主题，支持封面图展示、响应式布局
Version: 1.0.0
Author: 衣岳派
Author URI: https://yiyuepai.com
*/

/* ============ Reset & Base ============ */
:root {
  --bg: #f8f9fb;
  --card-bg: #ffffff;
  --text: #2c3e50;
  --text-light: #6b7c93;
  --text-muted: #95a5b8;
  --accent: #5b6af0;
  --accent-hover: #4a56d4;
  --accent-light: #eef0ff;
  --border: #e8ecf1;
  --shadow: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --radius: 14px;
  --radius-sm: 10px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font-mono: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  --banner-height: 320px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC',
    'Microsoft YaHei', 'Helvetica Neue', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
}

a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; height: auto; }

.container {
  max-width: 2100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============ Header / Banner ============ */
.site-banner {
  position: relative;
  height: var(--banner-height);
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.site-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(91, 106, 240, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 40%, rgba(91, 106, 240, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(255,255,255,0.03) 0%, transparent 40%);
}

.banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 20px;
}

.banner-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -1px;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.banner-content h1 .dot { color: var(--accent); }

.banner-content .banner-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
  max-width: 500px;
  margin: 0 auto;
}

/* Particles */
.banner-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(91, 106, 240, 0.4);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 25%; left: 30%; animation-delay: 1.5s; width: 3px; height: 3px; }
.particle:nth-child(3) { top: 60%; left: 20%; animation-delay: 3s; }
.particle:nth-child(4) { top: 70%; left: 70%; animation-delay: 0.8s; width: 5px; height: 5px; }
.particle:nth-child(5) { top: 40%; left: 85%; animation-delay: 2.2s; width: 3px; height: 3px; }
.particle:nth-child(6) { top: 10%; left: 55%; animation-delay: 4s; }
.particle:nth-child(7) { top: 80%; left: 45%; animation-delay: 1.2s; width: 2px; height: 2px; }
.particle:nth-child(8) { top: 35%; left: 65%; animation-delay: 3.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
  50% { transform: translateY(-20px) scale(1.2); opacity: 0.8; }
}

/* ============ Navigation ============ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 249, 251, 0.88);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.nav-inner {
  max-width: 2100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-brand {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
  cursor: pointer;
}

.nav-brand .dot { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
  background: var(--accent-light);
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

/* ============ Main Layout ============ */
.main-layout {
  display: flex;
  gap: 32px;
  padding: 40px 0 60px;
}

/* 侧边栏在左侧 */
.layout-sidebar-left {
  flex-direction: row-reverse;
}

/* 无侧边栏 */
.layout-sidebar-none .content-area {
  max-width: 1650px;
  margin: 0 auto;
}

.content-area {
  flex: 1;
  min-width: 0;
}

.sidebar {
  width: 300px;
  flex-shrink: 0;
}

/* ============ Post Cards ============ */
.section-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-title .count {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 400;
}

.post-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
}

.post-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: transparent;
}

.post-card .post-cover {
  width: 240px;
  min-height: 180px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background: #e8ecf1;
}

.post-card .post-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.post-card:hover .post-cover img {
  transform: scale(1.05);
}

.post-card .post-cover .no-cover {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(0,0,0,0.15);
  background: linear-gradient(135deg, var(--accent-light), transparent);
}

.post-card .post-body {
  flex: 1;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.post-card .post-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.post-card .post-meta .category {
  background: var(--accent-light);
  color: var(--accent);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.73rem;
  font-weight: 600;
}

.post-card .post-meta .date {
  font-family: var(--font-mono);
}

.post-card .post-meta .comments-count {
  display: flex;
  align-items: center;
  gap: 3px;
}

.post-card h2 {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
}

.post-card h2 a {
  color: var(--text);
}

.post-card h2 a:hover {
  color: var(--accent);
}

.post-card .post-excerpt {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============ Pagination ============ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.pagination a,
.pagination .current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
}

.pagination a {
  color: var(--text-light);
  background: var(--card-bg);
  border: 1px solid var(--border);
}

.pagination a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}

.pagination .current {
  background: var(--accent);
  color: #fff;
  border: none;
}

.pagination .prev,
.pagination .next {
  font-size: 0.82rem;
}

.pagination .gap {
  color: var(--text-muted);
  min-width: 20px;
}

/* ============ Page Bottom Text ============ */
.page-bottom-text {
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  text-align: center;
}

/* ============ Sidebar ============ */
.sidebar-widget {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.sidebar-widget h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent-light);
  color: var(--text);
}

.sidebar-widget ul {
  list-style: none;
}

.sidebar-widget ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.sidebar-widget ul li:last-child {
  border-bottom: none;
}

.sidebar-widget ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text);
  font-size: 0.9rem;
  transition: var(--transition);
}

.sidebar-widget ul li a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.sidebar-widget ul li .count {
  font-size: 0.78rem;
  background: var(--bg);
  color: var(--text-light);
  padding: 1px 8px;
  border-radius: 12px;
  font-weight: 500;
}

/* Recent posts */
.widget-recent .recent-item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.widget-recent .recent-item:last-child {
  border-bottom: none;
}

.widget-recent .recent-thumb {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--bg);
}

.widget-recent .recent-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.widget-recent .recent-info {
  flex: 1;
  min-width: 0;
}

.widget-recent .recent-info a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}

.widget-recent .recent-info a:hover {
  color: var(--accent);
}

.widget-recent .recent-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Search */
.widget-search form {
  display: flex;
  gap: 8px;
}

.widget-search input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  background: var(--bg);
  outline: none;
  transition: var(--transition);
}

.widget-search input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(91,106,240,0.1);
}

.widget-search button {
  padding: 10px 16px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
}

.widget-search button:hover {
  background: var(--accent-hover);
}

/* ============ Footer ============ */
.site-footer {
  background: #1a1a2e;
  color: rgba(255,255,255,0.6);
  padding: 40px 0 30px;
  margin-top: 40px;
}

.footer-inner {
  max-width: 2100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-info {
  font-size: 0.88rem;
}

.footer-info a {
  color: rgba(255,255,255,0.8);
}

.footer-info a:hover {
  color: var(--accent);
}

.footer-powered {
  font-size: 0.82rem;
}

/* ============ Post Detail ============ */
.post-detail-header {
  text-align: center;
  padding: 40px 0 24px;
}

.post-detail-header h1 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.3;
  margin-bottom: 16px;
}

.post-detail-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text-light);
  font-size: 0.88rem;
  flex-wrap: wrap;
}

.post-detail-meta .category {
  background: var(--accent-light);
  color: var(--accent);
  padding: 3px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.post-detail-meta .date {
  font-family: var(--font-mono);
}

.post-content {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 32px 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  line-height: 1.9;
  font-size: 1.02rem;
  word-wrap: break-word;
  overflow: visible;
}

.post-content h2 {
  font-size: 1.5rem;
  margin: 32px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent-light);
}

.post-content h3 {
  font-size: 1.2rem;
  margin: 24px 0 12px;
}

.post-content p {
  margin-bottom: 16px;
}

.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  margin: 16px 0;
}

.post-content blockquote {
  border-left: 4px solid var(--accent);
  padding: 12px 20px;
  margin: 20px 0;
  background: var(--accent-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text);
}

.post-content pre {
  background: #1e1e2e;
  color: #cdd6f4;
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  overflow-x: auto;
  margin: 20px 0;
  font-size: 0.9rem;
}

.post-content code {
  font-family: var(--font-mono);
  font-size: 0.88em;
  background: var(--bg);
  padding: 2px 6px;
  border-radius: 4px;
}

.post-content pre code {
  background: none;
  padding: 0;
}

.post-content ul,
.post-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.post-content li {
  margin-bottom: 6px;
}

.post-content table {
  border-collapse: collapse;
  width: 100%;
  margin: 16px 0;
}

.post-content th,
.post-content td {
  border: 1px solid var(--border);
  padding: 10px 14px;
  text-align: left;
}

.post-content th {
  background: var(--bg);
  font-weight: 600;
}

.post-content a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Post tags */
.post-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.post-tags span {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 600;
}

.post-tags a {
  display: inline-block;
  padding: 4px 12px;
  background: var(--bg);
  border-radius: 20px;
  font-size: 0.82rem;
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

.post-tags a:hover {
  background: var(--accent-light);
  color: var(--accent);
  text-decoration: none;
}

/* Post copyright */
.post-copyright {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 28px;
  padding: 18px 20px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.post-copyright-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.post-copyright-text {
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Post nav */
.post-nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.post-nav-item {
  flex: 1;
  min-width: 200px;
  padding: 16px 20px;
  background: var(--card-bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  color: var(--text);
  transition: var(--transition);
  text-decoration: none;
  display: block;
}

.post-nav-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--accent);
}

.post-nav-next {
  text-align: right;
}

.post-nav .nav-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 4px;
  display: block;
}

.post-nav .nav-title {
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.5;
  display: block;
}

/* Comments */
.comments-area {
  margin-top: 40px;
}

.comments-area .section-title {
  font-size: 1.1rem;
  font-weight: 700;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--accent-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.comment-list {
  margin-bottom: 24px;
}

.comment-list .comment-body {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.respond {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 28px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

/* ============ Raw HTML Block（插件样式隔离） ============ */
.raw-block, .raw-block * {
  all: revert;
}
.raw-block {
  display: block;
  margin: 20px 0;
  overflow-x: auto;
  word-wrap: break-word;
}
.raw-block img {
  max-width: 100%;
  height: auto;
}

/* ============ Page Template ============ */
.page-content {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 32px 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  line-height: 1.9;
  font-size: 1.02rem;
  overflow: visible;
}

.page-content h2 {
  font-size: 1.5rem;
  margin: 28px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent-light);
}

.page-content h3 {
  font-size: 1.2rem;
  margin: 20px 0 10px;
}

/* ============ 404 ============ */
.not-found {
  text-align: center;
  padding: 80px 20px;
}

.not-found h2 {
  font-size: 5rem;
  color: var(--accent);
  margin-bottom: 12px;
  line-height: 1;
}

.not-found p {
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: 1.1rem;
}

/* ============ Archive ============ */
.archive-list {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
}

.archive-year {
  font-size: 1.3rem;
  font-weight: 700;
  padding: 16px 28px;
  background: var(--accent-light);
  color: var(--accent);
}

.archive-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 28px;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.archive-item:last-child {
  border-bottom: none;
}

.archive-item:hover {
  background: var(--bg);
}

.archive-item .archive-date {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-muted);
  white-space: nowrap;
  padding-top: 2px;
}

.archive-item a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}

.archive-item a:hover {
  color: var(--accent);
}

/* ============ Category Archive ============ */
.category-header {
  text-align: center;
  padding: 24px 0 32px;
}

.category-header h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.category-header .cat-count {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 400;
}

/* ============ RawHtml iframe 移动端适配 ============ */
/* 宽高由插件 globalCss 通过负 margin 撑满卡片 */
.raw-html-outer {
  width: 100%;
}
.raw-html-frame {
  width: 100% !important;
}

/* ============ Responsive ============ */
@media (max-width: 900px) {
  :root {
    --banner-height: 240px;
  }

  .main-layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    order: 1;
  }

  .post-card {
    flex-direction: column;
  }

  .post-card .post-cover {
    width: 100%;
    height: 200px;
    min-height: auto;
  }

  .banner-content h1 {
    font-size: 2rem;
  }

  .banner-content .banner-desc {
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  :root {
    --banner-height: 200px;
  }

  .banner-content h1 {
    font-size: 1.6rem;
  }

  .banner-content .banner-desc {
    font-size: 0.9rem;
  }

  .site-nav {
    position: relative;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--card-bg);
    flex-direction: column;
    padding: 12px;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--border);
    gap: 4px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .post-card .post-cover {
    height: 180px;
  }

  .post-card .post-body {
    padding: 16px 20px;
  }

  .post-content,
  .page-content {
    padding: 20px 16px;
  }

  .post-detail-header h1 {
    font-size: 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  /* 移动端网格布局 */
  .post-grid {
    grid-template-columns: 1fr;
  }

  .post-card-grid {
    flex-direction: column;
  }

  .post-card-grid .post-cover-full {
    height: 180px;
  }
}

/* ============ Grid Layout 网格布局 ============ */
.post-grid {
  display: grid;
  gap: 20px;
}

.post-grid-grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.post-grid-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* 网格模式下的文章卡片 */
.post-card-grid {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

.post-card-grid .post-cover-full {
  width: 100%;
  height: 200px;
  min-height: auto;
  flex-shrink: 0;
}

.post-card-grid .post-body {
  flex: 1;
  padding: 18px 22px;
}

/* 卡片流模式 - 瀑布流风格 */
.post-grid-card .post-card-grid {
  border-radius: var(--radius);
  overflow: hidden;
}

.post-grid-card .post-card-grid .post-cover-full {
  height: 240px;
}

/* 作者链接样式 */
.author-link {
  color: var(--text-light);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 3px;
}

.author-link:hover {
  color: var(--accent);
}

/* ============ Sidebar Left Responsive ============ */
@media (max-width: 900px) {
  .layout-sidebar-left {
    flex-direction: column;
  }

  .layout-sidebar-none .content-area {
    max-width: 100%;
  }
}
