.section-blog-page {
  padding: 56px 50px;
  background: var(--bg, #f7f9fc);
}

.blog-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 36px;
}
.blog-hero .hero-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius, 18px);
  border: 1px solid var(--line, #e6ecf3);
  box-shadow: var(--shadow, 0 10px 30px rgba(27, 39, 53, 0.08));
  background: #dfe6ef;
}
.eyebrow {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--muted2, #7d8896);
  margin: 0 0 6px;
}
.blog-hero h1 {
  margin: 0 0 8px;
  line-height: 1.2;
  font-size: clamp(1.6rem, 1.1rem + 1.6vw, 2.2rem);
}
.hero-sub {
  color: var(--muted, #444);
  margin: 0 0 12px;
}
.hero-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted2, #7d8896);
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.list-head {
  display: flex;
  gap: 16px;
  align-items: end;
  justify-content: space-between;
  margin: 28px 0 16px;
}
.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.filters .input,
.filters .select {
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line, #e6ecf3);
  border-radius: var(--radius, 14px);
  background: var(--surface, #fff);
}
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.post-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--surface, #fff);
  border: 1px solid var(--line, #e6ecf3);
  border-radius: var(--radius, 18px);
  overflow: hidden;
  box-shadow: var(--shadow, 0 10px 30px rgba(27, 39, 53, 0.06));
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 34px rgba(27, 39, 53, 0.1);
}
.post-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #dfe6ef;
}
.post-body {
  margin: 20px 0;
  padding: 14px 14px 8px;
}
.post-title {
  margin: 0 0 6px;
  font-size: 1.02rem;
  line-height: 1.3;
}
.post-excerpt {
  margin: 0 0 10px;
  color: var(--muted, #444);
}
.post-meta-row {
  display: flex;
  gap: 10px;
  color: var(--muted2, #7d8896);
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tag {
  font-size: 0.78rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--brand3, #ffcf0d28);
  border: 1px solid var(--line, #e6ecf3);
}

.blog-pagination {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.page-indicator {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  border: 1px solid var(--line, #e6ecf3);
  background: var(--surface, #fff);
  font-weight: 600;
}

.post-view {
  background: var(--surface, #fff);
  border: 1px solid var(--line, #e6ecf3);
  border-radius: var(--radius, 18px);
  padding: 20px;
  box-shadow: var(--shadow, 0 10px 30px rgba(27, 39, 53, 0.06));
}
.post-head h1 {
  margin: 0 0 6px;
}
.post-sub {
  margin: 0 0 10px;
  color: var(--muted, #444);
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted2, #7d8896);
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.post-cover img {
   width: 100%;
  object-fit: fill;
  border-radius: var(--radius, 16px);
  border: 1px solid var(--line, #e6ecf3);
  background: #dfe6ef;
  margin: 8px 0 16px;
}
.post-content {
  color: #1b2735;
  line-height: 1.7;
}
.post-content h2,
.post-content h3 {
  line-height: 1.25;
  margin: 18px 0 8px;
}
.post-content p {
  margin: 10px 0;
}
.post-content ul {
  padding-left: 18px;
}
.post-nav {
  margin-top: 16px;
  display: flex;
  justify-content: flex-start;
}

.post-card.skeleton,
.post-card.skeleton * {
  background: linear-gradient(90deg, #eef2f7 25%, #f6f9fc 37%, #eef2f7 63%);
  background-size: 400% 100%;
  animation: pulse 1.2s ease-in-out infinite;
}
@keyframes pulse {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}

@media (max-width: 980px) {
  .blog-hero {
    grid-template-columns: 1fr;
  }
  .posts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .posts-grid {
    grid-template-columns: 1fr;
  }
  .list-head {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .filters .input,
  .filters .select {
    width: 100%;
  }
}

.btn2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--brand);
  color: var(--bg);
  font-weight: 700;
}

.blog-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 14px 14px;
  text-align: center;
}
