/* Blog — shares tokens from main.css (:root) */

.blog-page__band {
  padding: 5.75rem 4vw 1.75rem;
  border-bottom: 1px solid rgba(44, 31, 22, 0.12);
  background: linear-gradient(
    165deg,
    rgba(255, 249, 240, 0.95) 0%,
    rgba(247, 240, 228, 0.88) 45%,
    rgba(232, 220, 200, 0.92) 100%
  );
}

.blog-page__band h1 {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  font-weight: 700;
  color: var(--wood);
  letter-spacing: -0.02em;
}

.blog-page__band p {
  margin: 0.75rem 0 0;
  max-width: 40rem;
  color: var(--sage);
  font-size: 1rem;
  line-height: 1.55;
}

.blog-page__kicker {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8a5a2f;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 15rem) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 2.75rem);
  max-width: 72rem;
  margin: 0 auto;
  padding: 2.25rem 4vw 4rem;
  align-items: start;
}

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

  .blog-sidebar {
    position: static !important;
    border-top: 1px solid rgba(44, 31, 22, 0.1);
    padding-top: 1.5rem;
    order: 2;
  }

  .blog-article {
    order: 1;
  }
}

.blog-sidebar {
  position: sticky;
  top: 5.25rem;
}

.blog-sidebar__label {
  margin: 0 0 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
}

.blog-sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0.75rem 0 0;
  border-top: 1px solid rgba(44, 31, 22, 0.12);
}

.blog-sidebar li + li {
  margin-top: 0.65rem;
}

.blog-sidebar a {
  display: block;
  padding: 0.65rem 0.85rem;
  border-radius: 0.75rem;
  border: 1px solid transparent;
  text-decoration: none;
  color: var(--wood);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.blog-sidebar a:hover {
  border-color: rgba(184, 134, 11, 0.45);
  background: rgba(255, 249, 240, 0.65);
}

.blog-sidebar a[aria-current="page"] {
  font-weight: 600;
  border-color: rgba(44, 31, 22, 0.35);
  background: var(--cream);
  box-shadow: 0 12px 28px -14px var(--shadow);
}

.blog-sidebar__title {
  display: block;
  font-family: var(--font-display);
  font-size: 0.98rem;
  line-height: 1.35;
}

.blog-sidebar time {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a6a4d;
}

.blog-article {
  background: var(--cream);
  border: 1px solid rgba(44, 31, 22, 0.14);
  border-radius: 1.75rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  box-shadow: 0 24px 50px -28px var(--shadow);
}

.blog-article__kicker {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8f6137;
}

.blog-article h2 {
  margin: 0.4rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--wood);
  line-height: 1.2;
}

.blog-article__date {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #6b482a;
}

.blog-article__body {
  margin-top: 1.75rem;
}

.blog-article__body p {
  margin: 0 0 1.1rem;
  font-size: 1.02rem;
  line-height: 1.7;
  color: #4a3425;
}

.blog-article__body p:last-child {
  margin-bottom: 0;
}

.blog-amazon-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 2rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff7ea;
  background: #5c3a1f;
  border: 1px solid #4d311a;
  box-shadow: 0 8px 22px -10px var(--shadow);
  transition: background 0.2s ease, transform 0.15s ease;
}

.blog-amazon-btn:hover {
  color: #fff7ea;
  background: #4d311a;
  transform: translateY(-1px);
}

.blog-amazon-btn em {
  font-family: var(--font-display);
  font-style: italic;
  margin: 0 0.2em;
}
