.blog-page {
  background: var(--cream);
  color: var(--ink);
}

.blog-page .text-link {
  color: var(--ink);
  border-bottom-color: rgba(26, 25, 25, 0.45);
}

.blog-page .header-side {
  color: inherit;
}

html:has(.blog-page) {
  background: var(--cream);
}

.blog-hero {
  padding: 72px 24px 40px;
  text-align: center;
}

.blog-hero h1 { margin: 8px 0 16px; }

.blog-hero p {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.blog-card {
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease-out;
}

.blog-card:hover .blog-card-img img { transform: scale(1.05); }

.blog-card-date {
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 5px 12px;
  background: var(--ink);
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-card-body { padding: 24px 4px 8px; }

.blog-card-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.blog-card-body h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--ink);
}

.blog-card-body p {
  font-size: 0.95rem;
  color: #5c5a57;
  margin-bottom: 18px;
}

.article-hero {
  padding: 64px 24px 28px;
  text-align: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.article-meta-line {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
  margin: 16px 0 28px;
  flex-wrap: wrap;
}

.article-cover {
  max-width: 980px;
  margin: 0 auto;
  overflow: hidden;
}

.article-cover img {
  width: 100%;
  display: block;
  max-height: 480px;
  object-fit: cover;
}

.article-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 56px 24px 80px;
  color: #3d3c3a;
  font-size: 1.05rem;
  line-height: 1.8;
}

.article-body h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.7rem;
  color: var(--ink);
  margin: 42px 0 16px;
}

.article-body p { margin-bottom: 18px; }

.article-body ul {
  margin: 0 0 24px;
  padding-left: 1.1em;
}

.article-body ul li { margin-bottom: 10px; list-style: disc; }

.article-cta {
  margin: 48px 0;
  padding: 36px;
  text-align: center;
  background: var(--ink);
  color: var(--cream);
}

.article-cta h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.article-cta p { color: rgba(245, 244, 240, 0.7); margin-bottom: 22px; }

.article-cta .btn-primary {
  background: var(--cream);
  color: var(--ink);
}

.article-back {
  max-width: 680px;
  margin: 0 auto 64px;
  padding: 0 24px;
}

@media (max-width: 640px) {
  .blog-hero, .article-hero { padding-top: 40px; }
}
