body.blog-index-page,
body.blog-post-page {
  background:
    radial-gradient(circle at top left, rgba(255, 186, 94, 0.18), transparent 24%),
    linear-gradient(180deg, #fffaf3 0%, #fff6ea 100%);
  color: #43230d;
}

.blog-shell,
.blog-post-shell {
  padding: 56px 0;
}

.blog-shell .section-head,
.blog-post-shell .section-head {
  margin-bottom: 26px;
}

.blog-shell .eyebrow,
.blog-post-shell .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 197, 120, 0.16);
  color: #b0640b;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-shell h1,
.blog-shell h2,
.blog-shell h3,
.blog-post-shell h1,
.blog-post-shell h2,
.blog-post-shell h3 {
  color: #401f08;
  font-family: "Georgia", "Times New Roman", serif;
}

.blog-shell p,
.blog-post-shell p {
  color: #745540;
}

.blog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.95fr);
  gap: 22px;
}

.blog-featured-card,
.blog-side-card,
.blog-archive-card,
.blog-related-card,
.blog-article-card,
.blog-article-body,
.blog-article-aside,
.blog-empty-state {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(225, 187, 136, 0.28);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 44px rgba(112, 68, 17, 0.08);
}

.blog-featured-card,
.blog-side-card,
.blog-card-link {
  text-decoration: none;
  color: inherit;
}

.blog-featured-card::before,
.blog-archive-card::before,
.blog-related-card::before,
.blog-article-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 190, 93, 0.16), transparent 72%);
  pointer-events: none;
}

.blog-featured-content,
.blog-side-card .copy,
.blog-archive-card .copy,
.blog-related-card .copy,
.blog-article-card,
.blog-article-body,
.blog-article-aside {
  padding: 30px;
}

.blog-featured-content {
  display: grid;
  gap: 16px;
}

.blog-category,
.blog-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 210, 152, 0.16);
  color: #a15d10;
  font-size: 0.82rem;
  font-weight: 700;
}

.blog-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #8a684f;
  font-size: 0.92rem;
}

.blog-side-stack {
  display: grid;
  gap: 18px;
}

.blog-side-card .copy,
.blog-archive-card .copy,
.blog-related-card .copy {
  display: grid;
  gap: 10px;
}

.blog-category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.blog-category-strip span {
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(232, 205, 167, 0.8);
  color: #875822;
  font-size: 0.88rem;
  font-weight: 600;
}

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

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b76a12;
  font-weight: 700;
}

.blog-empty-state {
  padding: 42px;
  text-align: center;
}

.blog-article-head {
  display: block;
}

.blog-article-card h1 {
  margin: 12px 0 18px;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 0.98;
}

.blog-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.8fr);
  gap: 24px;
  margin-top: 24px;
}

.blog-article-body .content {
  font-size: 1.03rem;
  line-height: 1.95;
  color: #583821;
}

.blog-article-body .content p {
  margin-bottom: 1.35rem;
}

.blog-article-body .content strong {
  color: #421f09;
}

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

.blog-aside-item {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(235, 216, 186, 0.72);
}

.blog-aside-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.blog-pagination .pagination {
  justify-content: center;
  margin-top: 28px;
}

@media (max-width: 1199px) {
  .blog-archive-grid,
  .blog-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .blog-shell,
  .blog-post-shell {
    padding: 38px 0 52px;
  }

  .blog-hero-grid,
  .blog-article-layout,
  .blog-archive-grid,
  .blog-related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .blog-featured-content,
  .blog-side-card .copy,
  .blog-archive-card .copy,
  .blog-related-card .copy,
  .blog-article-card,
  .blog-article-body,
  .blog-article-aside,
  .blog-empty-state {
    padding: 22px;
  }

  .blog-archive-grid,
  .blog-related-grid {
    grid-template-columns: 1fr;
  }
}
