.blog-section { padding: 88px 0; background: var(--cream); }
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: flex-start;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: 16px;
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px var(--shadow-lg); }
.blog-card-link { display: block; color: inherit; }
.blog-card-thumb { aspect-ratio: 16 / 10; overflow: hidden; background: var(--cream-mid); }
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-thumb img { transform: scale(1.04); }
.blog-card-thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--cream-mid), var(--orange-vlight));
  color: var(--orange-dark);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: 0.2em;
  font-size: 1.2rem;
}
.blog-card-body { padding: 24px 24px 28px; }
.blog-card-meta { display: flex; align-items: center; gap: 12px; font-size: 0.78rem; color: var(--text-light); margin-bottom: 12px; }
.blog-card-title { font-size: 1.08rem; font-weight: 700; line-height: 1.5; margin-bottom: 12px; color: var(--text-dark); }
.blog-card-excerpt { font-size: 0.86rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 14px; }
.blog-card-more { font-size: 0.85rem; font-weight: 700; color: var(--orange); }

.blog-pagination { margin-top: 56px; text-align: center; }
.blog-pagination ul.page-numbers { display: inline-flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.blog-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 14px;
  border-radius: 50px;
  background: var(--white); border: 1.5px solid var(--border);
  color: var(--text-mid); font-weight: 600; font-size: 0.88rem;
  transition: 0.2s;
}
.blog-pagination a.page-numbers:hover { border-color: var(--orange); color: var(--orange); }
.blog-pagination .page-numbers.current { background: var(--orange); border-color: var(--orange); color: var(--white); }

.blog-empty {
  background: var(--white); border: 1.5px dashed var(--border);
  border-radius: 16px; padding: 64px; text-align: center;
  color: var(--text-light);
}

@media (max-width: 960px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}


/* ===== Page Header ===== */
.page-header {
  position: relative;
  background: #1A1A1A;
  color: #fff;
  padding: 80px 0 60px;
  overflow: hidden;
  text-align: center;
}
.page-header-deco {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  background: #F07030;
}
.page-header-deco-1 {
  width: 400px; height: 400px;
  top: -150px; right: -100px;
}
.page-header-deco-2 {
  width: 300px; height: 300px;
  bottom: -120px; left: -80px;
}
.page-header-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.page-header-label {
  display: inline-block;
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #F07030;
  margin-bottom: 12px;
  border: 1px solid rgba(240,112,48,0.4);
  padding: 4px 16px;
  border-radius: 20px;
}
.page-header-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}
.page-header-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== Blog Section ===== */
.blog-section {
  padding: 80px 0 100px;
  background: #FFFFFF;
}
.blog-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

/* ===== Blog Grid ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(45,27,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45,27,0,0.1);
}
.blog-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* ===== Thumbnail ===== */
.blog-card-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #FFFFFF;
}
.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-card-thumb-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  color: #F07030;
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  opacity: 0.5;
}

/* ===== Card Body ===== */
.blog-card-body {
  padding: 24px;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 0.8rem;
  color: #999;
}
.blog-card-meta time {
  color: #999;
}
.blog-card-cat {
  display: inline-block;
  background: rgba(240,112,48,0.1);
  color: #F07030;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 12px;
}
.blog-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.6;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-excerpt {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.7;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-more {
  font-size: 0.82rem;
  font-weight: 600;
  color: #F07030;
  transition: color 0.2s;
}
.blog-card:hover .blog-card-more {
  color: #d45a1a;
}

/* ===== Pagination ===== */
.blog-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 6px;
}
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1A1A1A;
  background: #fff;
  border: 1px solid rgba(45,27,0,0.1);
  text-decoration: none;
  transition: all 0.2s;
}
.blog-pagination .page-numbers:hover {
  background: #F07030;
  color: #fff;
  border-color: #F07030;
}
.blog-pagination .page-numbers.current {
  background: #F07030;
  color: #fff;
  border-color: #F07030;
}
.blog-pagination .page-numbers.dots {
  border: none;
  background: transparent;
  pointer-events: none;
}

/* ===== Empty State ===== */
.blog-empty {
  text-align: center;
  padding: 80px 20px;
  color: #999;
  font-size: 1rem;
}

/* ===== Fade-in Animation ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}
.blog-grid .fade-in:nth-child(2) { animation-delay: 0.1s; }
.blog-grid .fade-in:nth-child(3) { animation-delay: 0.2s; }
.blog-grid .fade-in:nth-child(4) { animation-delay: 0.3s; }
.blog-grid .fade-in:nth-child(5) { animation-delay: 0.4s; }
.blog-grid .fade-in:nth-child(6) { animation-delay: 0.5s; }
@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .page-header { padding: 60px 0 40px; }
  .page-header-inner { padding: 0 24px; }
  .page-header-title { font-size: 1.8rem; }
  .blog-section { padding: 48px 0 64px; }
  .blog-section .container { padding: 0 20px; }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .blog-card-body { padding: 20px; }
}
