.blog-list-main {
  background: #f8fafc;
  min-height: 60vh;
  padding: 64px 0 96px;
}
.blog-list-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.blog-list-header {
  text-align: center;
  margin-bottom: 56px;
}
.blog-list-eyebrow {
  display: inline-block;
  color: #1c4ed8;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 12px;
}
.blog-list-title {
  font-size: 44px;
  line-height: 1.1;
  color: #0a0f1e;
  margin: 0 0 12px;
  font-weight: 800;
}
.blog-list-subtitle {
  color: #475569;
  font-size: 16px;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}
.blog-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #f1f5f9;
  background-size: cover;
  background-position: center;
}
.blog-card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-meta {
  font-size: 12px;
  color: #64748b;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.blog-card-title {
  font-size: 19px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  margin: 0 0 10px;
}
.blog-card-excerpt {
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 16px;
  flex: 1;
}
.blog-card-cta {
  color: #1c4ed8;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.3px;
}
.blog-empty {
  text-align: center;
  padding: 60px 20px;
  color: #64748b;
  background: #fff;
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
}

.blog-article-main {
  background: #fff;
  padding: 56px 0 96px;
}
.blog-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}
.blog-back-link {
  display: inline-block;
  color: #1c4ed8;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}
.blog-back-link:hover { text-decoration: underline; }
.blog-article-title {
  font-size: 40px;
  line-height: 1.15;
  color: #0a0f1e;
  margin: 0 0 16px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.blog-article-meta {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 32px;
}
.blog-article-author { color: #0f172a; font-weight: 600; }
.blog-article-dot { margin: 0 8px; color: #cbd5e1; }
.blog-article-hero {
  margin: 0 0 36px;
  border-radius: 12px;
  overflow: hidden;
  background: #f1f5f9;
}
.blog-article-hero img {
  width: 100%;
  height: auto;
  display: block;
}
.blog-article-body p {
  color: #1f2937;
  font-size: 17px;
  line-height: 1.75;
  margin: 0 0 20px;
}
.blog-preview-banner {
  max-width: 760px;
  margin: 0 auto 24px;
  padding: 12px 20px;
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 640px) {
  .blog-list-title { font-size: 32px; }
  .blog-article-title { font-size: 30px; }
  .blog-article-body p { font-size: 16px; }
}
