.blog-nav {
  justify-content: flex-end;
}

.blog-hero,
.blog-list-section,
.article-page {
  width: min(1020px, calc(100% - 32px));
  margin: 0 auto;
}

.blog-hero {
  padding: 86px 0 42px;
}

.blog-hero h1,
.article-page h1 {
  max-width: 820px;
  font-size: clamp(34px, 4.4vw, 58px);
}

.blog-hero p {
  max-width: 680px;
  margin-top: 20px;
  font-size: 17px;
}

.blog-list-section {
  padding: 20px 0 96px;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.blog-card {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.blog-card img,
.article-cover {
  width: 100%;
  object-fit: cover;
  background: var(--mist);
}

.blog-card img {
  aspect-ratio: 16 / 10;
}

.blog-card-body {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.blog-date,
.article-date {
  color: var(--olive);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-card h2 {
  font-size: 24px;
}

.blog-card p {
  font-size: 15px;
}

.read-more,
.back-link {
  color: var(--olive-dark);
  font-weight: 800;
}

.article-page {
  padding: 58px 0 96px;
}

.article-page header {
  display: grid;
  gap: 16px;
  margin-bottom: 30px;
}

.article-cover {
  max-height: 520px;
  border-radius: var(--radius);
  margin-bottom: 34px;
  box-shadow: var(--shadow);
}

.article-body {
  max-width: 780px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.8;
  white-space: pre-line;
}

.article-body p {
  color: var(--ink);
}

.blog-state {
  grid-column: 1 / -1;
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

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

  .blog-hero {
    padding-top: 58px;
  }

  .article-body {
    font-size: 16px;
  }
}
