/* =========================================================
   mopponpon — blog.css (v5.0.0 / Blue Gradient World)
   ========================================================= */

/* ===== Archive Grid ===== */

.blog-grid-archive {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--moppo-space-8) var(--moppo-space-6);
}

/* ===== Blog Card ===== */

.blog-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  overflow: visible;
  transition: none;
}

/* --- Thumb --- */

.blog-card-thumb {
  position: relative;
  display: block;
  aspect-ratio: 300/158;
  background: var(--moppo-blue-50);
  border-radius: var(--moppo-radius-md);
  overflow: hidden;
  margin-bottom: 14px;
}

.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--moppo-ease);
}

.blog-card-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--moppo-grad-eyecatch);
}

.blog-card-thumb-placeholder span {
  font-size: 64px;
  font-weight: 400;
  color: var(--moppo-blue-400);
  letter-spacing: -0.04em;
}

/* Hover overlay */

.blog-card-thumb-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 44, 83, 0.45);
  color: var(--moppo-white);
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transition: opacity var(--moppo-duration) var(--moppo-ease);
  pointer-events: none;
}

.blog-card-thumb:hover .blog-card-thumb-hover { opacity: 1; }
.blog-card-thumb:hover img { transform: scale(1.04); }

/* --- Body --- */

.blog-card-body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: flex-start;
}

.blog-card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

/* Category */

.blog-card-category {
  margin: 0;
  padding: 0;
  line-height: 1;
}

.blog-card-category-link {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: var(--moppo-blue-500);
  text-decoration: none;
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}

.blog-card-category-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--moppo-blue-500);
}

.blog-card-category-link:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* Title */

.blog-card-title {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: var(--moppo-text);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-title a {
  color: var(--moppo-text);
  text-decoration: none;
  transition: color var(--moppo-duration) var(--moppo-ease);
}

.blog-card-title a:hover {
  color: var(--moppo-blue-500);
}

/* Writer */

.blog-card-writer {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  color: var(--moppo-text-sub);
}

/* Tag list */

.blog-card-taglist {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
}

.blog-card-taglist-item { margin: 0; padding: 0; list-style: none; }

.blog-card-tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 500;
  color: var(--moppo-text-sub);
  background: var(--moppo-blue-50);
  border: 0.5px solid var(--moppo-blue-200);
  border-radius: var(--moppo-radius-sm);
  text-decoration: none;
  transition: border-color var(--moppo-duration) var(--moppo-ease), color var(--moppo-duration) var(--moppo-ease);
}

.blog-card-tag:hover {
  border-color: var(--moppo-blue-500);
  color: var(--moppo-blue-500);
}

/* Publish date (right side) */

.blog-card-publish {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}

.blog-card-publish-time {
  font-family: var(--moppo-font-en);
  font-size: 12px;
  color: var(--moppo-text-sub);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
  font-feature-settings: "tnum", "lnum";
}

.blog-card-publish-day {
  display: block;
  font-size: 24px;
  font-weight: 400;
  color: var(--moppo-text);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-top: 4px;
  font-family: var(--moppo-font-en);
}

.blog-card-new {
  margin: 0;
  font-family: var(--moppo-font-en);
  font-size: 11px;
  font-weight: 500;
  color: var(--moppo-blue-500);
  background: var(--moppo-blue-100);
  padding: 2px 8px;
  border-radius: var(--moppo-radius-sm);
}

@media (max-width: 767px) {
  .blog-card-title { font-size: 15px; }
  .blog-card-publish-day { font-size: 20px; }
}

/* ===== Single Article ===== */

.single-article { padding-top: var(--moppo-space-2); }

.single-header { margin-bottom: var(--moppo-space-6); }

.single-header .pill {
  margin-bottom: var(--moppo-space-3);
  display: inline-block;
}

.single-header h1 {
  margin-bottom: var(--moppo-space-3);
  font-size: 28px;
  line-height: 1.45;
  letter-spacing: -0.015em;
  font-weight: 500;
  color: var(--moppo-blue-900);
}

.single-meta {
  font-size: 14px;
  color: var(--moppo-text-sub);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.single-meta .meta-author a {
  color: var(--moppo-blue-500);
  font-weight: 500;
}

.single-meta .meta-sep { color: var(--moppo-blue-200); }

.single-thumb {
  margin-bottom: var(--moppo-space-8);
  border-radius: var(--moppo-radius-md);
  overflow: hidden;
}

.single-thumb img { width: 100%; display: block; }

/* ===== Breadcrumb ===== */

.breadcrumb {
  font-size: 12px;
  color: var(--moppo-text-sub);
  margin-bottom: var(--moppo-space-4);
  padding: var(--moppo-space-3) 0;
}

.breadcrumb a {
  color: var(--moppo-blue-600);
  text-decoration: none;
  transition: color var(--moppo-duration) var(--moppo-ease);
}

.breadcrumb a:hover { color: var(--moppo-blue-500); }

.breadcrumb span {
  margin: 0 var(--moppo-space-2);
  color: var(--moppo-blue-200);
}

/* ===== Table of Contents ===== */

.toc-box,
.single-toc {
  background: var(--moppo-off);
  border: 0.5px solid var(--moppo-blue-200);
  border-radius: var(--moppo-radius-md);
  padding: var(--moppo-space-4) var(--moppo-space-6);
  margin-bottom: var(--moppo-space-8);
}

.toc-box .toc-title,
.single-toc .toc-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--moppo-blue-900);
  margin-bottom: var(--moppo-space-3);
  padding-bottom: var(--moppo-space-3);
  border-bottom: 0.5px solid var(--moppo-blue-200);
}

.toc-box ol,
.single-toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc;
}

.toc-box li,
.single-toc li {
  counter-increment: toc;
  font-size: 14px;
  line-height: 1.7;
  padding: 4px 0;
}

.toc-box li::before,
.single-toc li::before {
  content: counter(toc) '. ';
  color: var(--moppo-blue-500);
  font-weight: 500;
  font-family: var(--moppo-font-en);
}

.single-toc li.toc-l3 { padding-left: 18px; font-size: 14px; }
.single-toc li.toc-l3::before { content: '- '; color: var(--moppo-text-sub); }

.toc-box a,
.single-toc a {
  color: var(--moppo-text-sub);
  text-decoration: none;
  transition: color var(--moppo-duration) var(--moppo-ease);
}

.toc-box a:hover,
.single-toc a:hover { color: var(--moppo-blue-500); }

.single-toc-wrap { margin: var(--moppo-space-6) 0 var(--moppo-space-8); }

/* ===== Entry Content (moppo-article) ===== */

.moppo-article,
.entry-content {
  font-size: 16px;
  line-height: 1.9;
  color: var(--moppo-text);
  counter-reset: h2;
}

.moppo-article > * + *,
.entry-content > * + * { margin-top: 1.6em; }

.moppo-article > h2 + *,
.moppo-article > h3 + *,
.moppo-article > h4 + *,
.entry-content > h2 + *,
.entry-content > h3 + *,
.entry-content > h4 + * { margin-top: 1em; }

/* --- Headings --- */

.moppo-article h2,
.entry-content h2 {
  font-size: 24px;
  font-weight: 500;
  color: var(--moppo-blue-900);
  letter-spacing: -0.02em;
  line-height: 1.45;
  margin: var(--moppo-space-12) 0 var(--moppo-space-6);
  padding-left: var(--moppo-space-4);
  border-left: 3px solid transparent;
  border-image: var(--moppo-grad-primary) 1;
}

.moppo-article h3,
.entry-content h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--moppo-blue-900);
  margin: var(--moppo-space-8) 0 var(--moppo-space-4);
  letter-spacing: -0.02em;
  line-height: 1.45;
}

.moppo-article h4,
.entry-content h4 {
  font-size: 16px;
  font-weight: 500;
  color: var(--moppo-blue-900);
  margin: var(--moppo-space-6) 0 var(--moppo-space-3);
  letter-spacing: -0.02em;
}

/* --- Text --- */

.moppo-article p,
.entry-content p {
  font-size: 16px;
  color: var(--moppo-text);
  line-height: 1.9;
  margin: 0 0 1.6em;
}

.entry-content ul,
.entry-content ol,
.moppo-article ul,
.moppo-article ol {
  margin: 1.6em 0;
  padding-left: 24px;
}

.entry-content li,
.moppo-article li {
  margin-bottom: 0.6em;
  line-height: 1.9;
  list-style: disc;
}

.entry-content ol li,
.moppo-article ol li { list-style: decimal; }

.entry-content blockquote,
.moppo-article blockquote {
  border-left: 3px solid var(--moppo-blue-200);
  padding: var(--moppo-space-2) var(--moppo-space-6);
  margin: var(--moppo-space-6) 0;
  background: none;
  color: var(--moppo-text-sub);
  font-style: italic;
}

.entry-content img,
.moppo-article img {
  border-radius: var(--moppo-radius-md);
  margin: var(--moppo-space-6) 0;
}

.entry-content a,
.moppo-article a {
  color: var(--moppo-blue-500);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.entry-content a:hover,
.moppo-article a:hover { color: var(--moppo-blue-600); }

/* --- Tables --- */

.entry-content table,
.moppo-article table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: var(--moppo-space-6) 0;
  border: 0.5px solid var(--moppo-blue-200);
  border-radius: var(--moppo-radius-md);
  overflow: hidden;
}

.entry-content th,
.moppo-article th {
  padding: var(--moppo-space-3) var(--moppo-space-4);
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  color: var(--moppo-blue-900);
  background: var(--moppo-blue-50);
  border-bottom: 0.5px solid var(--moppo-blue-200);
}

.entry-content td,
.moppo-article td {
  padding: var(--moppo-space-3) var(--moppo-space-4);
  font-size: 14px;
  border-bottom: 0.5px solid var(--moppo-border);
}

.entry-content tr:last-child td,
.moppo-article tr:last-child td { border-bottom: none; }

/* --- Text Utilities --- */

.marker {
  background: linear-gradient(transparent 65%, var(--moppo-blue-100) 65%);
  padding: 0 2px;
  font-weight: 500;
}

.marker-yellow {
  background: linear-gradient(transparent 65%, #fef0a8 65%);
  padding: 0 2px;
}

.marker-pink {
  background: linear-gradient(transparent 65%, var(--moppo-blue-100) 65%);
  padding: 0 2px;
}

.text-red { color: var(--moppo-danger); font-weight: 500; }
.text-blue { color: var(--moppo-blue-500); font-weight: 500; }
.text-large { font-size: 1.15em; font-weight: 500; }
.text-small { font-size: 14px; color: var(--moppo-text-sub); }

/* --- Info / Warning / Point Boxes (blue theme) --- */

.box-point, .box-warning, .box-info, .box-merit, .box-demerit {
  border-left: 3px solid var(--moppo-blue-500);
  background: var(--moppo-blue-50);
  border-radius: 0 var(--moppo-radius-md) var(--moppo-radius-md) 0;
  padding: var(--moppo-space-4) var(--moppo-space-6);
  margin: var(--moppo-space-6) 0;
  font-size: 15px;
  line-height: 1.9;
  color: var(--moppo-text);
}

.box-point::before {
  content: 'point';
  display: block;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--moppo-blue-500);
  margin-bottom: var(--moppo-space-2);
  font-family: var(--moppo-font-en);
}

.box-warning {
  border-left-color: var(--moppo-danger);
}

.box-warning::before {
  content: 'note';
  display: block;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--moppo-danger);
  margin-bottom: var(--moppo-space-2);
  font-family: var(--moppo-font-en);
}

.box-info::before {
  content: 'memo';
  display: block;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--moppo-blue-500);
  margin-bottom: var(--moppo-space-2);
  font-family: var(--moppo-font-en);
}

.box-merit {
  border-left-color: var(--moppo-success);
}

.box-merit::before {
  content: 'merit';
  display: block;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--moppo-success);
  margin-bottom: var(--moppo-space-2);
  font-family: var(--moppo-font-en);
}

.box-demerit {
  border-left-color: var(--moppo-danger);
}

.box-demerit::before {
  content: 'demerit';
  display: block;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--moppo-danger);
  margin-bottom: var(--moppo-space-2);
  font-family: var(--moppo-font-en);
}

/* --- Comparison box --- */

.compare-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--moppo-radius-md);
  overflow: hidden;
  margin: var(--moppo-space-6) 0;
  border: 0.5px solid var(--moppo-blue-200);
}

.compare-box .compare-col { padding: var(--moppo-space-6); }

.compare-box .compare-col:first-child {
  background: var(--moppo-blue-50);
  border-right: 0.5px solid var(--moppo-blue-200);
}

.compare-box .compare-col:last-child { background: var(--moppo-white); }

.compare-box .compare-col h4 {
  display: block;
  background: none;
  border: none;
  padding: 0;
  margin: 0 0 var(--moppo-space-3);
  font-size: 14px;
  color: var(--moppo-blue-900);
}

.compare-box .compare-col ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.compare-box .compare-col li {
  list-style: none !important;
  padding-left: 18px;
  position: relative;
  margin-bottom: var(--moppo-space-2);
  font-size: 14px;
  line-height: 1.9;
}

.compare-box .compare-col li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--moppo-blue-500);
}

@media (max-width: 767px) {
  .compare-box { grid-template-columns: 1fr; }
  .compare-box .compare-col:first-child {
    border-right: none;
    border-bottom: 0.5px solid var(--moppo-blue-200);
  }
}

/* --- Step flow --- */

.step-flow { margin: var(--moppo-space-6) 0; counter-reset: step; }

.step-item {
  display: flex;
  gap: var(--moppo-space-4);
  align-items: flex-start;
  padding: var(--moppo-space-4) 0;
  position: relative;
}

.step-item:not(:last-child) { border-bottom: 0.5px solid var(--moppo-blue-200); }

.step-item::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--moppo-blue-500);
  background: var(--moppo-blue-50);
  padding: 6px 12px;
  border-radius: var(--moppo-radius-sm);
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
  font-family: var(--moppo-font-en);
  font-feature-settings: "tnum";
}

.step-item p { margin: 0; font-size: 15px; line-height: 1.9; }

/* --- Disclaimer block --- */

.article-disclaimer {
  background: var(--moppo-blue-50) !important;
  border-left: 3px solid var(--moppo-blue-200) !important;
  border-radius: 0 var(--moppo-radius-md) var(--moppo-radius-md) 0 !important;
  padding: var(--moppo-space-4) var(--moppo-space-6) !important;
  font-size: 14px !important;
  color: var(--moppo-text-sub) !important;
  line-height: 1.9 !important;
  margin: var(--moppo-space-6) 0 !important;
}

/* --- Conclusion box --- */

.conclusion-box {
  background: var(--moppo-blue-50);
  border-left: 3px solid var(--moppo-blue-500);
  border-radius: 0 var(--moppo-radius-md) var(--moppo-radius-md) 0;
  padding: var(--moppo-space-6);
  margin: var(--moppo-space-6) 0;
}

.conclusion-label {
  display: inline-block;
  background: var(--moppo-grad-primary);
  color: var(--moppo-white);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--moppo-radius-sm);
  margin-bottom: var(--moppo-space-3);
  font-family: var(--moppo-font-en);
}

.conclusion-box p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
  margin-bottom: var(--moppo-space-2);
}

.conclusion-box p:last-child { margin-bottom: 0; }

/* ===== Related Posts ===== */

.related-posts {
  margin-top: var(--moppo-space-16);
  padding-top: var(--moppo-space-10);
  border-top: 0.5px solid var(--moppo-blue-200);
}

.related-posts h2 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: var(--moppo-space-6);
  padding-left: var(--moppo-space-4);
  border-left: 3px solid transparent;
  border-image: var(--moppo-grad-primary) 1;
}

.related-posts .blog-grid-archive { gap: var(--moppo-space-6); }

/* ===== Single Nav (prev/next) ===== */

.single-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--moppo-space-4);
  margin-top: var(--moppo-space-10);
}

.single-nav-link {
  display: block;
  padding: var(--moppo-space-4) var(--moppo-space-5);
  border: 0.5px solid var(--moppo-blue-200);
  border-radius: var(--moppo-radius-md);
  text-decoration: none;
  transition: border-color var(--moppo-duration) var(--moppo-ease);
}

.single-nav-link:hover { border-color: var(--moppo-blue-500); }
.single-nav-link.next { text-align: right; }

.nav-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--moppo-text-sub);
  display: block;
  margin-bottom: 4px;
  font-family: var(--moppo-font-en);
}

.nav-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--moppo-text);
  display: block;
  line-height: 1.5;
}

/* ===== Author Box (single) ===== */

.author-box {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--moppo-space-5);
  background: var(--moppo-grad-author);
  border: 0.5px solid var(--moppo-blue-200);
  border-radius: var(--moppo-radius-lg);
  padding: var(--moppo-space-6);
  margin: var(--moppo-space-12) 0 var(--moppo-space-6);
}

@media (max-width: 767px) {
  .author-box {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.author-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--moppo-white);
  margin: 0 auto;
  border: 2px solid var(--moppo-white);
  box-shadow: var(--moppo-shadow-sm);
}

.author-photo img { width: 100%; height: 100%; object-fit: cover; }

.author-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--moppo-text-sub);
}

.author-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--moppo-blue-900);
  margin-bottom: 6px;
}

.author-handle {
  font-size: 12px;
  color: var(--moppo-text-sub);
  font-weight: 400;
  margin-left: 4px;
}

.author-bio {
  font-size: 14px;
  color: var(--moppo-text-sub);
  line-height: 1.9;
  margin-bottom: var(--moppo-space-3);
}

.author-sns { display: flex; gap: var(--moppo-space-3); flex-wrap: wrap; }

.author-sns a {
  font-size: 12px;
  font-weight: 500;
  color: var(--moppo-blue-500);
  text-decoration: none;
}

.author-sns a:hover { text-decoration: underline; }

/* ===== Affiliate CTA Box ===== */

.affiliate-cta-box {
  background: linear-gradient(135deg, var(--moppo-blue-50) 0%, var(--moppo-white) 100%);
  border: 0.5px solid var(--moppo-blue-400);
  border-radius: var(--moppo-radius-md);
  padding: var(--moppo-space-6) var(--moppo-space-8);
  margin: var(--moppo-space-8) 0;
  position: relative;
}

.affiliate-cta-box .affiliate-badge {
  position: absolute;
  top: -10px;
  left: 24px;
  background: var(--moppo-white);
  padding: 2px 10px;
  border: 0.5px solid var(--moppo-blue-200);
  border-radius: var(--moppo-radius-sm);
  font-size: 11px;
  font-weight: 500;
  color: var(--moppo-text-sub);
  font-family: var(--moppo-font-en);
}

.aff-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--moppo-space-6);
  align-items: center;
}

@media (max-width: 767px) {
  .aff-cta-inner { grid-template-columns: 1fr; text-align: center; }
}

.aff-cta-text h3 {
  font-size: 18px;
  margin: 6px 0;
  color: var(--moppo-blue-900);
}

.aff-cta-tagline { font-size: 14px; color: var(--moppo-text-sub); margin-bottom: 6px; }
.aff-cta-pros { font-size: 14px; color: var(--moppo-text-sub); }

.aff-cta-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

@media (max-width: 767px) { .aff-cta-action { align-items: center; } }

.aff-cta-action .btn { white-space: nowrap; }
.aff-cta-disclaimer { font-size: 11px; color: var(--moppo-text-sub); line-height: 1.6; text-align: right; }
@media (max-width: 767px) { .aff-cta-disclaimer { text-align: center; } }

.affiliate-badge-line {
  display: block;
  text-align: center;
  font-size: 11px;
  color: var(--moppo-text-sub);
  margin: 0 0 var(--moppo-space-6);
  padding: var(--moppo-space-2);
  background: var(--moppo-blue-50);
  border-radius: var(--moppo-radius-sm);
}

/* ===== Sidebar widgets ===== */

.widget-author-inner { text-align: center; }

.widget-author-inner img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto var(--moppo-space-3);
  object-fit: cover;
  border: 2px solid var(--moppo-blue-200);
}

.widget-author-name {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}

.widget-author-bio {
  font-size: 14px;
  color: var(--moppo-text-sub);
  line-height: 1.9;
  margin-bottom: var(--moppo-space-4);
}

.widget-silo-list,
.widget-popular-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget-silo-list li { margin-bottom: 4px; }

.widget-silo-list a {
  display: block;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: var(--moppo-radius-sm);
  color: var(--moppo-text-sub);
  text-decoration: none;
  transition: background var(--moppo-duration) var(--moppo-ease), color var(--moppo-duration) var(--moppo-ease);
}

.widget-silo-list a:hover {
  background: var(--moppo-blue-50);
  color: var(--moppo-blue-500);
}

.widget-popular-list li {
  margin-bottom: var(--moppo-space-4);
  padding-bottom: var(--moppo-space-4);
  border-bottom: 0.5px solid var(--moppo-border);
}

.widget-popular-list li:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.widget-popular-list a {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  text-decoration: none;
  color: var(--moppo-text);
}

.widget-popular-list img {
  width: 64px;
  height: 64px;
  border-radius: var(--moppo-radius-sm);
  flex-shrink: 0;
  object-fit: cover;
}

.widget-popular-list span {
  font-size: 14px;
  line-height: 1.55;
  flex: 1;
}

.widget-popular-list a:hover span { color: var(--moppo-blue-500); }

.widget-cta p {
  font-size: 14px;
  color: var(--moppo-text-sub);
  margin-bottom: var(--moppo-space-3);
  line-height: 1.9;
}

.widget-sns-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.widget-sns-grid a {
  display: block;
  padding: 10px;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  background: var(--moppo-blue-50);
  border: 0.5px solid var(--moppo-blue-200);
  border-radius: var(--moppo-radius-sm);
  color: var(--moppo-text-sub);
  text-decoration: none;
  transition: color var(--moppo-duration) var(--moppo-ease), border-color var(--moppo-duration) var(--moppo-ease);
}

.widget-sns-grid a:hover {
  color: var(--moppo-blue-500);
  border-color: var(--moppo-blue-500);
}

/* --- Sidebar: Silo Pickup --- */

.widget-silo-pick-list { list-style: none; padding: 0; margin: 0; }

.silo-pick-item { border-bottom: 0.5px solid var(--moppo-border); }
.silo-pick-item:last-child { border-bottom: none; }

.silo-pick-link {
  display: block;
  padding: var(--moppo-space-3) 0;
  text-decoration: none;
  color: var(--moppo-text);
  transition: color var(--moppo-duration) var(--moppo-ease);
}

.silo-pick-link:hover { color: var(--moppo-blue-500); }

.silo-pick-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--moppo-blue-500);
  margin-bottom: 4px;
  font-family: var(--moppo-font-en);
}

.silo-pick-title {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--moppo-text);
}

.widget-more {
  display: block;
  text-align: right;
  font-size: 12px;
  color: var(--moppo-blue-500);
  margin-top: var(--moppo-space-3);
  padding-top: var(--moppo-space-2);
  border-top: 0.5px solid var(--moppo-blue-200);
  text-decoration: none;
}

.widget-more:hover { color: var(--moppo-blue-600); }

/* --- Sidebar: Popular Rank --- */

.widget-popular-rank {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: rank;
}

.rank-item { border-bottom: 0.5px solid var(--moppo-border); }
.rank-item:last-child { border-bottom: none; }

.rank-link {
  display: flex;
  gap: var(--moppo-space-3);
  align-items: flex-start;
  padding: var(--moppo-space-3) 0;
  text-decoration: none;
  color: var(--moppo-text);
  transition: color var(--moppo-duration) var(--moppo-ease);
}

.rank-link:hover .rank-title { color: var(--moppo-blue-500); }

.rank-num {
  font-size: 18px;
  font-weight: 500;
  color: var(--moppo-blue-500);
  letter-spacing: -0.02em;
  font-feature-settings: "tnum";
  font-family: var(--moppo-font-en);
  flex-shrink: 0;
  line-height: 1.2;
  min-width: 28px;
}

.rank-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--moppo-text);
  transition: color var(--moppo-duration) var(--moppo-ease);
}

/* ===== Article Card (sidebar) ===== */

.article-card {
  display: flex;
  gap: var(--moppo-space-2);
  padding: var(--moppo-space-2) 0;
  border-bottom: 0.5px solid var(--moppo-border);
}

.article-card-thumb {
  width: 60px;
  height: 45px;
  border-radius: var(--moppo-radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

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

.article-card-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--moppo-text);
  line-height: 1.5;
  margin-bottom: 2px;
}

.article-card time {
  font-size: 12px;
  color: var(--moppo-text-sub);
}

/* ===== Layout adjustments ===== */

.archive-main,
.single-main { padding: 0 0 var(--moppo-space-16); }

.no-content {
  text-align: center;
  padding: var(--moppo-space-16) var(--moppo-space-6);
  color: var(--moppo-text-sub);
}

/* ===== Archive Hero ===== */

.archive-hero {
  padding: var(--moppo-space-10) 0 var(--moppo-space-6);
  border-bottom: 0.5px solid var(--moppo-blue-200);
  margin-bottom: var(--moppo-space-10);
}

.archive-hero h1 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.45;
  margin: 0;
  color: var(--moppo-blue-900);
}

/* --- Compact variant --- */

.archive-hero-compact {
  padding: var(--moppo-space-10) 0 var(--moppo-space-6);
  margin: var(--moppo-space-4) 0 var(--moppo-space-10);
  border-bottom: 0.5px solid var(--moppo-blue-200);
}

.archive-hero-compact h1 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.45;
  margin: 0;
  color: var(--moppo-blue-900);
}

.archive-hero-compact .archive-desc {
  font-size: 14px;
  color: var(--moppo-text-sub);
  line-height: 1.9;
  margin-top: var(--moppo-space-3);
  max-width: 640px;
}

.archive-2col { margin-top: 0; }

/* ===== YouTube embed in single ===== */

.single-youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin: 0 0 var(--moppo-space-6);
  border-radius: var(--moppo-radius-md);
  overflow: hidden;
  background: var(--moppo-blue-900);
}

.single-youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== Pills (single article) ===== */

.single-pills { margin-bottom: var(--moppo-space-3); }
.single-pills .pill { margin-right: 6px; }

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

@media (max-width: 767px) {
  .blog-grid-archive { grid-template-columns: 1fr; }
  .single-nav { grid-template-columns: 1fr; }

  .single-header h1 { font-size: 22px; }
}
