/* Blog liste + detay */
.blog-banner { padding-bottom: 2.5rem; }

.blog-page { padding: 2.5rem 0 4rem; }

.blog-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted);
}

.blog-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .blog-list-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (min-width: 1024px) {
  .blog-list-grid { grid-template-columns: repeat(3, 1fr); }
}

.blog-list-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.blog-list-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,.1);
  border-color: rgba(227,38,38,.18);
}

.blog-list-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f4f4f5;
}
.blog-list-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s var(--ease);
}
.blog-list-card:hover .blog-list-img img { transform: scale(1.04); }

.blog-list-body {
  padding: 1rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  flex: 1;
}
.blog-list-body time {
  font-size: .6875rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.blog-list-body h2 {
  font-family: var(--display);
  font-size: .9375rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-list-body p {
  font-size: .8125rem;
  line-height: 1.55;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}
.blog-list-more {
  margin-top: auto;
  font-size: .75rem;
  font-weight: 800;
  color: var(--red);
  padding-top: .35rem;
}

/* Detay */
.blog-article {
  max-width: 760px;
  padding: 2rem 0 4rem;
}
.blog-article-head {
  margin-bottom: 1.5rem;
}
.blog-article-head time {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: .65rem;
}
.blog-article-head h1 {
  font-family: var(--display);
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  font-weight: 900;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: .75rem;
}
.blog-article-lead {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}
.blog-article-lead.rich-content ul,
.blog-article-lead.rich-content ol {
  margin: 0.75rem 0 0;
  padding-left: 1.35rem;
}
.blog-article-lead.rich-content strong,
.blog-article-lead.rich-content b {
  font-weight: 800;
  color: var(--ink);
}
.blog-article-lead.rich-content h2,
.blog-article-lead.rich-content h3 {
  font-family: var(--display);
  font-weight: 900;
  color: var(--ink);
  margin: 0.75rem 0 0.35rem;
  line-height: 1.3;
}
.blog-article-lead.rich-content h2 { font-size: 1.15rem; }
.blog-article-lead.rich-content h3 { font-size: 1.05rem; }
.blog-article-lead.rich-content h2:first-child,
.blog-article-lead.rich-content h3:first-child { margin-top: 0; }
.blog-article-lead.rich-content a {
  color: var(--red);
  text-decoration: underline;
}
.blog-article-cover {
  margin: 0 0 2rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.blog-article-cover img {
  display: block;
  width: 100%;
  height: auto;
}
.blog-article-foot {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
