.blog-hero {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background: var(--ink-strong);
}

.blog-hero__media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 440px;
}

.blog-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.03);
}

.blog-section {
  padding: 96px 0;
  background: var(--white);
}

.blog-layout {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}

.blog-content .article__meta {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(166, 143, 114, 0.34);
  background: rgba(242, 241, 233, 0.72);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-content h1 {
  margin-bottom: 28px;
  color: var(--ink-strong);
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: 0;
}

.blog-content p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
  white-space: pre-line;
}

.side-card {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.side-card h3 {
  margin-bottom: 14px;
  color: var(--ink-strong);
  font-size: 20px;
  line-height: 1.3;
}

.side-card p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.side-card .btn {
  width: 100%;
}

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

  .side-card {
    position: static;
  }
}

@media (max-width: 560px) {
  .blog-hero {
    min-height: 320px;
  }

  .blog-hero__media,
  .blog-hero__media img {
    min-height: 320px;
  }

  .blog-section {
    padding: 64px 0;
  }
}
