.blog-hero {
  background: linear-gradient(135deg, var(--bg), var(--bg-2));
  color: #fff;
  align-items: center;
  display: flex;
  min-height: 180px;
  padding: 24px 28px;
  height: 40vh;
  max-height: 260px;
}

.blog-hero .section-inner {
  max-width: 1180px;
}

.blog-hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  margin: 0 0 10px;
  max-width: 920px;
}

.blog-hero p {
  font-size: 17px;
  margin: 0;
  max-width: 720px;
}

.blog-list {
  display: grid;
  gap: 42px;
}

.blog-list article {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1fr);
  padding: 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.blog-list article:hover {
  border-color: rgba(255, 107, 61, 0.42);
  box-shadow: 0 18px 42px var(--shadow);
  transform: translateY(-2px);
}

.blog-list .cover {
  aspect-ratio: 16 / 9;
  background: var(--panel);
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.blog-list .cover img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.blog-list .cover-fallback {
  align-items: center;
  color: var(--accent);
  display: flex;
  font-size: 13px;
  font-weight: 800;
  height: 100%;
  justify-content: center;
  letter-spacing: 0.08em;
  padding: 24px;
  text-align: center;
  text-transform: uppercase;
}

.blog-list h2 {
  font-size: clamp(30px, 4vw, 52px);
  margin-bottom: 14px;
  text-wrap: balance;
}

.article {
  margin: 0 auto;
  max-width: 920px;
  padding: 70px 28px;
}

.article-header {
  margin-bottom: 34px;
}

.article h1 {
  font-size: clamp(40px, 7vw, 78px);
  line-height: 0.98;
  margin: 0 0 18px;
  text-wrap: balance;
}

.article .deck {
  color: #ded6ce;
  font-size: 21px;
}

.article-cover {
  margin: 0 0 44px;
}

.article-cover img {
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px var(--shadow);
  object-fit: cover;
  width: 100%;
}

.article-body {
  color: var(--ink);
  font-size: 18px;
}

.article-body p,
.article-body figure,
.article-body h2 {
  margin: 0 0 24px;
}

.article-body h2 {
  font-size: clamp(30px, 4vw, 48px);
  margin-top: 46px;
}

.article-body img {
  height: auto;
  margin: 0 auto;
}

.article-body figcaption {
  color: var(--muted);
  font-size: 14px;
  margin-top: 10px;
  text-align: center;
}

.article-body a {
  color: var(--accent-hover);
}

.back-link {
  color: var(--accent-hover);
  display: inline-block;
  font-weight: 700;
  margin-top: 32px;
  text-decoration: none;
}

.pagination {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 48px;
}

@media (max-width: 760px) {
  .blog-list article {
    grid-template-columns: 1fr;
  }
}
