/*
Theme Name: 買取のキクチ
Theme URI: https://kikuchi-kaitori.jp/
Author: ビーシステムデザイン
Description: 買取のキクチ コラム用WordPressテーマ
Version: 1.0.0
License: Private
Text Domain: kikuchi-kaitori
*/

/* ===== CSS変数 ===== */
:root {
  --gold:        #F38D1B;
  --gold-dark:   #D07518;
  --dark:        #1a1a1a;
  --black:       #111111;
  --white:       #ffffff;
  --bg:          #f8f8f6;
  --border:      #e5e5e5;
  --text:        #333333;
  --text-light:  #666666;
  --radius:      8px;
  --shadow:      0 4px 20px rgba(0,0,0,0.08);
  --max-width:   1100px;
}

/* ===== リセット ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', Meiryo, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  padding-top: 64px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
h1,h2,h3,h4,h5,h6 { text-wrap: balance; overflow-wrap: break-word; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 64px;
  gap: 16px;
}
.header-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.header-logo-img { height: 36px; width: auto; display: block; }
.header-nav { display: flex; gap: 24px; align-items: center; font-size: 0.88rem; }
.header-nav a { color: #1a1a1a; font-weight: 500; white-space: nowrap; transition: color 0.2s; }
.header-nav a:hover { color: var(--gold); }
.header-cta {
  background: var(--gold);
  color: #111;
  font-weight: 800;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 0.9rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}
.header-cta:hover { background: var(--gold-dark); }
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 8px;
  border-radius: 6px;
  transition: background 0.2s;
}
.hamburger:hover { background: #f5f5f5; }
.hamburger span { display: block; width: 22px; height: 2px; background: #1a1a1a; border-radius: 2px; transition: all 0.3s; }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE NAV ===== */
.mobile-nav-overlay {
  display: none;
  position: fixed; inset: 0;
  z-index: 1999;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-nav-overlay.is-open { display: block; opacity: 1; }
.mobile-nav-drawer {
  position: fixed; top: 0; right: 0;
  width: min(300px, 85vw); height: 100%;
  background: #fff; z-index: 2000;
  display: flex; flex-direction: column;
  box-shadow: -4px 0 24px rgba(0,0,0,0.18);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.mobile-nav-overlay.is-open .mobile-nav-drawer { transform: translateX(0); }
.mobile-nav-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid #eee;
}
.mobile-nav-close {
  background: none; border: none; font-size: 1.5rem;
  cursor: pointer; color: #888; padding: 4px 8px; border-radius: 4px; transition: background 0.2s;
}
.mobile-nav-close:hover { background: #eee; color: #333; }
.mobile-nav-links { flex: 1; padding: 8px 0; }
.mobile-nav-links a {
  display: flex; align-items: center; gap: 14px;
  padding: 15px 20px; font-size: 0.93rem; font-weight: 600; color: #1a1a1a;
  border-bottom: 1px solid #f5f5f5; transition: background 0.15s, color 0.15s;
}
.mobile-nav-links a:hover { background: #fff3f0; color: var(--gold); }
.mobile-nav-links a i { width: 20px; text-align: center; color: var(--gold); font-size: 1rem; }
.mobile-nav-cta-wrap { padding: 16px; border-top: 1px solid #eee; background: #fafafa; }
.mobile-nav-cta {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--gold); color: #1a1a1a; font-weight: 900;
  padding: 15px 20px; border-radius: 8px; font-size: 0.95rem; transition: background 0.2s;
}
.mobile-nav-cta:hover { background: var(--gold-dark); color: #fff; }

/* ===== BREADCRUMB ===== */
.breadcrumb-bar { background: #fff; border-bottom: 1px solid var(--border); }
.breadcrumb-inner {
  max-width: var(--max-width); margin: 0 auto;
  padding: 10px 32px; font-size: 12px; color: var(--text-light);
  display: flex; align-items: center; gap: 4px; flex-wrap: wrap;
}
.breadcrumb-inner a { color: var(--text-light); transition: color 0.2s; }
.breadcrumb-inner a:hover { color: var(--gold); }
.breadcrumb-sep { color: #bbb; margin: 0 2px; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--dark);
  padding: 48px 32px 40px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.3rem, 3vw, 1.8rem); font-weight: 800; color: #fff; }
.page-hero .subtitle { margin-top: 8px; font-size: 0.82rem; color: #999; }

/* ===== LAYOUT ===== */
.site-main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 32px 80px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}

/* ===== ARTICLE LIST ===== */
.post-list { display: flex; flex-direction: column; gap: 32px; }
.post-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-columns: 240px 1fr;
  transition: box-shadow 0.2s, transform 0.2s;
}
.post-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.13); transform: translateY(-2px); }
.post-card-thumb { overflow: hidden; aspect-ratio: 4/3; }
.post-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.post-card:hover .post-card-thumb img { transform: scale(1.05); }
.post-card-thumb .no-thumb {
  width: 100%; height: 100%; min-height: 180px;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  display: flex; align-items: center; justify-content: center;
}
.post-card-thumb .no-thumb i { font-size: 2rem; color: var(--gold); opacity: 0.6; }
.post-card-body { padding: 24px 28px; display: flex; flex-direction: column; justify-content: space-between; gap: 12px; }
.post-card-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.post-card-cat {
  background: var(--gold); color: #111;
  font-size: 0.72rem; font-weight: 700;
  padding: 3px 10px; border-radius: 20px;
}
.post-card-date { font-size: 0.78rem; color: var(--text-light); }
.post-card-title { font-size: 1.05rem; font-weight: 700; color: #1a1a1a; line-height: 1.5; }
.post-card-title a { transition: color 0.2s; }
.post-card-title a:hover { color: var(--gold); }
.post-card-excerpt { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; }
.post-card-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 700; color: var(--gold);
  transition: gap 0.2s;
}
.post-card-more:hover { gap: 10px; }

/* ===== PAGINATION ===== */
.pagination {
  display: flex; justify-content: center; align-items: center; gap: 8px;
  margin-top: 48px; flex-wrap: wrap;
}
.pagination a, .pagination span {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 6px;
  font-size: 0.9rem; font-weight: 600;
  border: 2px solid var(--border);
  background: #fff; color: var(--text);
  transition: all 0.2s;
}
.pagination a:hover { border-color: var(--gold); color: var(--gold); }
.pagination .current { background: var(--gold); border-color: var(--gold); color: #fff; }

/* ===== SIDEBAR ===== */
.sidebar { display: flex; flex-direction: column; gap: 28px; }
.widget {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.widget-title {
  background: var(--dark); color: #fff;
  font-size: 0.85rem; font-weight: 700;
  padding: 12px 20px;
  display: flex; align-items: center; gap: 8px;
  letter-spacing: 0.05em;
}
.widget-title i { color: var(--gold); }
.widget-body { padding: 16px 20px; }
.widget-cat-list, .widget-tag-list, .widget-recent-list { list-style: none; }
.widget-cat-list li, .widget-recent-list li {
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.widget-cat-list li:last-child, .widget-recent-list li:last-child { border-bottom: none; }
.widget-cat-list a, .widget-recent-list a {
  font-size: 0.88rem; color: var(--text);
  display: flex; justify-content: space-between; align-items: center;
  transition: color 0.2s;
}
.widget-cat-list a:hover, .widget-recent-list a:hover { color: var(--gold); }
.widget-cat-count {
  font-size: 0.75rem; background: var(--bg);
  padding: 2px 8px; border-radius: 20px; color: var(--text-light);
}
.widget-tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.widget-tag-list a {
  font-size: 0.78rem; padding: 4px 12px;
  border: 1px solid var(--border); border-radius: 20px;
  color: var(--text-light); transition: all 0.2s;
}
.widget-tag-list a:hover { border-color: var(--gold); color: var(--gold); background: #fff8f0; }
.widget-recent-thumb {
  width: 48px; height: 48px; border-radius: 4px;
  object-fit: cover; flex-shrink: 0;
}
.widget-recent-list li a { gap: 10px; align-items: flex-start; }
.widget-recent-title { font-size: 0.82rem; line-height: 1.5; flex: 1; }
.widget-recent-date { font-size: 0.72rem; color: var(--text-light); margin-top: 3px; }
.widget-apply {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}
.widget-apply p { color: rgba(255,255,255,0.7); font-size: 0.82rem; margin-bottom: 16px; line-height: 1.7; }
.widget-apply a {
  display: block;
  background: var(--gold); color: #111;
  font-weight: 900; font-size: 0.9rem;
  padding: 14px; border-radius: 8px;
  transition: background 0.2s;
}
.widget-apply a:hover { background: var(--gold-dark); color: #fff; }

/* ===== SINGLE ARTICLE ===== */
.article-wrap {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.article-hero-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.article-body { padding: 40px 48px; }
.article-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.article-cat {
  background: var(--gold); color: #111;
  font-size: 0.75rem; font-weight: 700;
  padding: 4px 12px; border-radius: 20px;
}
.article-date { font-size: 0.8rem; color: var(--text-light); }
.article-title { font-size: clamp(1.3rem, 2.5vw, 1.7rem); font-weight: 800; color: #1a1a1a; line-height: 1.4; margin-bottom: 32px; }
.article-content { font-size: 0.95rem; line-height: 1.9; color: var(--text); }
.article-content h2 {
  font-size: 1.2rem; font-weight: 700; color: #1a1a1a;
  border-left: 4px solid var(--gold);
  padding: 8px 0 8px 16px;
  margin: 40px 0 16px;
  background: #fff8f0;
}
.article-content h3 {
  font-size: 1.05rem; font-weight: 700; color: #1a1a1a;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--border);
  margin: 32px 0 14px;
}
.article-content p { margin-bottom: 20px; }
.article-content ul, .article-content ol { margin: 0 0 20px 24px; }
.article-content li { margin-bottom: 6px; }
.article-content img { border-radius: var(--radius); margin: 24px 0; }
.article-content a { color: var(--gold); text-decoration: underline; }
.article-content blockquote {
  border-left: 4px solid var(--gold); padding: 16px 24px;
  background: #fff8f0; margin: 24px 0; border-radius: 0 8px 8px 0;
  color: var(--text-light); font-style: italic;
}
.article-content table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.article-content th, .article-content td { border: 1px solid var(--border); padding: 10px 14px; font-size: 0.9rem; }
.article-content th { background: #f7f7f7; font-weight: 700; }

/* タグ */
.article-tags { display: flex; flex-wrap: wrap; gap: 8px; padding: 24px 48px; border-top: 1px solid var(--border); }
.article-tags a {
  font-size: 0.78rem; padding: 4px 12px;
  border: 1px solid var(--border); border-radius: 20px;
  color: var(--text-light); transition: all 0.2s;
}
.article-tags a:hover { border-color: var(--gold); color: var(--gold); }

/* 前後記事ナビ */
.post-nav {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 32px;
}
.post-nav a {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 20px;
  display: flex; flex-direction: column; gap: 6px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.post-nav a:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.12); transform: translateY(-2px); }
.post-nav-label { font-size: 0.72rem; color: var(--gold); font-weight: 700; }
.post-nav-title { font-size: 0.88rem; color: #1a1a1a; font-weight: 600; line-height: 1.5; }
.post-nav-next { text-align: right; }

/* ===== PAGE (CF7等) ===== */
.page-wrap {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 48px;
}
.page-wrap h1 { font-size: 1.5rem; font-weight: 800; margin-bottom: 32px; color: #1a1a1a; }
.page-content { font-size: 0.95rem; line-height: 1.9; }
/* CF7スタイル */
.wpcf7-form p { margin-bottom: 20px; }
.wpcf7-form label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 6px; color: #1a1a1a; }
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--border); border-radius: 6px;
  font-size: 0.95rem; font-family: inherit;
  transition: border-color 0.2s;
}
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus { outline: none; border-color: var(--gold); }
.wpcf7-form textarea { min-height: 160px; resize: vertical; }
.wpcf7-form input[type="submit"] {
  background: var(--gold); color: #111;
  font-weight: 900; font-size: 1rem;
  padding: 16px 48px; border: none;
  border-radius: 8px; cursor: pointer;
  transition: background 0.2s;
}
.wpcf7-form input[type="submit"]:hover { background: var(--gold-dark); color: #fff; }

/* ===== ARCHIVE HEADER ===== */
.archive-header {
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border);
}
.archive-header h1 { font-size: 1.3rem; font-weight: 800; color: #1a1a1a; }
.archive-header .archive-count { font-size: 0.82rem; color: var(--text-light); margin-top: 6px; }

/* ===== FOOTER ===== */
.footer { background: #0d0d0d; padding: 56px 32px 24px; }
.footer-inner { max-width: var(--max-width); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand-logo { height: 32px; width: auto; margin-bottom: 12px; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 0.82rem; line-height: 1.7; }
.footer-col h4 { color: #fff; font-weight: 700; font-size: 0.9rem; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.45); font-size: 0.82rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { color: rgba(255,255,255,0.3); font-size: 0.78rem; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: rgba(255,255,255,0.3); font-size: 0.78rem; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1080px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 900px) {
  .site-main { grid-template-columns: 1fr; }
  .sidebar { order: 2; }
  .post-card { grid-template-columns: 180px 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .header-cta { display: none; }
  .header { padding: 0 16px; }
  .site-main { padding: 32px 16px 64px; }
  .post-card { grid-template-columns: 1fr; }
  .post-card-thumb { aspect-ratio: 16/9; }
  .article-body { padding: 24px 20px; }
  .article-tags { padding: 16px 20px; }
  .post-nav { grid-template-columns: 1fr; }
  .page-wrap { padding: 28px 20px; }
  .page-hero { padding: 32px 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer { padding: 40px 16px 20px; }
}

/* ===== Column listing page styles ===== */
.page-hero { background:#1a1a1a; color:#fff; padding:48px 24px; text-align:center; }
.page-hero-inner { max-width:800px; margin:0 auto; }
.page-hero-icon { font-size:36px; display:block; margin-bottom:12px; }
.page-hero-title { font-size:32px; font-weight:700; margin:0 0 12px; }
.page-hero-sub { font-size:15px; color:rgba(255,255,255,0.7); margin:0; }

.category-bar { background:#fff; border-bottom:1px solid #e8e8e8; padding:14px 24px; display:flex; gap:10px; flex-wrap:wrap; }
.cat-btn { display:inline-block; padding:7px 18px; border-radius:20px; font-size:14px; font-weight:500; color:#555; text-decoration:none; background:#f4f4f4; border:1.5px solid transparent; transition:all .2s; }
.cat-btn:hover { background:#e87722; color:#fff; border-color:#e87722; }
.cat-btn.active { background:#e87722; color:#fff; border-color:#e87722; }

.featured-label { font-size:14px; font-weight:700; color:#e87722; margin-bottom:14px; display:flex; align-items:center; gap:6px; }
.star-icon { color:#e87722; }

.featured-card { display:flex; gap:24px; background:#fff; border-radius:12px; overflow:hidden; text-decoration:none; margin-bottom:32px; box-shadow:0 2px 12px rgba(0,0,0,0.08); transition:transform .2s, box-shadow .2s; }
.featured-card:hover { transform:translateY(-3px); box-shadow:0 6px 20px rgba(0,0,0,0.12); }
.featured-img { width:280px; min-height:200px; background-size:cover; background-position:center; flex-shrink:0; background-color:#f0f0f0; }
.featured-body { padding:24px 24px 24px 0; display:flex; flex-direction:column; justify-content:center; }
.featured-title { font-size:20px; font-weight:700; color:#111; margin:8px 0; line-height:1.4; }
.featured-card:hover .featured-title { color:#e87722; }
.featured-excerpt { font-size:14px; color:#666; line-height:1.6; margin:0 0 12px; }

.cat-tag { display:inline-block; padding:4px 10px; border-radius:4px; font-size:12px; font-weight:600; background:#f0f0f0; color:#555; }
.cat-smartphone { background:#e8f4fd; color:#2196f3; }
.cat-mac { background:#e8f5e9; color:#4caf50; }
.cat-game { background:#fce4ec; color:#e91e63; }
.cat-tips { background:#fff8e1; color:#ff9800; }
.cat-other { background:#f3e5f5; color:#9c27b0; }

.article-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; margin-bottom:40px; }
.article-card { display:block; background:#fff; border-radius:12px; overflow:hidden; text-decoration:none; box-shadow:0 2px 10px rgba(0,0,0,0.07); transition:transform .2s, box-shadow .2s; }
.article-card:hover { transform:translateY(-3px); box-shadow:0 6px 18px rgba(0,0,0,0.12); }
.article-img { width:100%; height:180px; background-size:cover; background-position:center; background-color:#f0f0f0; }
.article-body { padding:16px; }
.article-title { font-size:15px; font-weight:700; color:#222; margin:8px 0 10px; line-height:1.4; }
.article-card:hover .article-title { color:#e87722; }
.article-meta { display:flex; gap:14px; font-size:13px; color:#888; }
.featured-meta { display:flex; gap:14px; font-size:13px; color:#888; }
.meta-date { display:flex; align-items:center; gap:4px; }
.meta-time { display:flex; align-items:center; gap:4px; }

.wp-archive-pager { display:flex; justify-content:center; gap:8px; margin:40px 0 0; flex-wrap:wrap; }
.wp-archive-pager a, .wp-archive-pager span { display:inline-flex; align-items:center; justify-content:center; width:40px; height:40px; border-radius:8px; font-size:15px; font-weight:600; text-decoration:none; transition:all .2s; }
.wp-archive-pager a { background:#fff; border:1.5px solid #e0e0e0; color:#333; }
.wp-archive-pager a:hover { background:#f5f5f5; border-color:#bbb; }
.wp-archive-pager span.current { background:#e87722; color:#fff; border:1.5px solid #e87722; }

/* ===== Sidebar 2-column layout ===== */
.content-wrapper { display:flex; gap:40px; max-width:1200px; margin:0 auto; padding:40px 24px 60px; align-items:flex-start; }
.main-content { flex:1; min-width:0; }
.sidebar { width:300px; flex-shrink:0; }
.sidebar-widget { background:#fff; border-radius:10px; padding:22px 20px; margin-bottom:24px; box-shadow:0 2px 10px rgba(0,0,0,0.07); }
.sidebar-heading { font-size:15px; font-weight:700; margin:0 0 14px; padding-bottom:10px; border-bottom:2px solid #e87722; color:#222; }
.sidebar-cat-list { list-style:none; padding:0; margin:0; }
.sidebar-cat-list li { border-bottom:1px solid #f0f0f0; }
.sidebar-cat-list li:last-child { border-bottom:none; }
.sidebar-cat-list a { display:flex; justify-content:space-between; align-items:center; padding:9px 4px; color:#444; text-decoration:none; font-size:14px; transition:color .2s; }
.sidebar-cat-list a:hover { color:#e87722; }
.cat-count { font-size:12px; color:#999; }
.sidebar-recent-list { list-style:none; padding:0; margin:0; }
.sidebar-recent-item { display:flex; gap:10px; align-items:flex-start; padding:10px 0; border-bottom:1px solid #f0f0f0; }
.sidebar-recent-item:last-child { border-bottom:none; }
.sidebar-recent-thumb { width:60px; height:60px; object-fit:cover; border-radius:6px; flex-shrink:0; }
.sidebar-recent-title { font-size:13px; line-height:1.5; color:#333; text-decoration:none; display:block; transition:color .2s; }
.sidebar-recent-title:hover { color:#e87722; }
.sidebar-archive-list { list-style:none; padding:0; margin:0; }
.sidebar-archive-list li { border-bottom:1px solid #f0f0f0; }
.sidebar-archive-list li:last-child { border-bottom:none; }
.sidebar-archive-list a { display:block; padding:8px 4px; color:#444; text-decoration:none; font-size:14px; transition:color .2s; }
.sidebar-archive-list a:hover { color:#e87722; }