/* ─── JOURNAL DETAIL LAYOUT ──────────────────────────── */
.journal-detail {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  padding: 60px 0 80px;
  max-width: calc(var(--container-max) + 2 * var(--padding-desktop));
  margin: 0 auto;
}

/* ─── MAIN ARTICLE CONTENT ───────────────────────────── */
.article-content {
  flex: 1;
  min-width: 0;
}

/* Featured image */
.article-image {
  width: 100%;
  /* aspect-ratio: 16 / 7; */
  /* background: linear-gradient(135deg, #5C3A22 0%, #3a2a1a 40%, #8B5E3C 70%, #C4A882 100%); */
  border-radius: 4px;
  margin-bottom: 40px;
  overflow: hidden;
  position: relative;
}

.article-image__pattern img {
  width: 100%;
  object-fit: cover;
  max-height: 430px;
}

/* Article body */
.article-body {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(26, 26, 26, 0.78);
}

.article-body p {
  margin-bottom: 20px;
}

.article-body h2 {
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
  margin-top: 44px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--grey-light);
  letter-spacing: 0.01em;
}

.article-body ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.article-body ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(26, 26, 26, 0.78);
}

.article-body ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--warm-sand);
  font-size: 16px;
}

/* Pull quote / CTA box */
.article-pullquote {
  background-color: var(--cream);
  border-left: 3px solid var(--warm-sand);
  padding: 36px 40px;
  margin: 48px 0;
  border-radius: 0 4px 4px 0;
}

.article-pullquote__heading {
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.article-pullquote p {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(26, 26, 26, 0.7);
  margin-bottom: 12px;
}

.article-pullquote p:last-of-type {
  margin-bottom: 24px;
}

.pullquote-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(100, 55, 25, 0.55) 0%, rgba(40, 15, 5, 0.78) 100%);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(196, 168, 130, 0.2);
  font-family: var(--font-main);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--white);
  text-decoration: none;
  transition: background 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(60, 20, 5, 0.25);
}

.pullquote-btn:hover {
  background: linear-gradient(135deg, rgba(130, 70, 30, 0.65) 0%, rgba(55, 20, 8, 0.85) 100%);
  box-shadow: 0 8px 32px rgba(60, 20, 5, 0.4);
}



/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  :root {
    --padding-desktop: 40px;
  }

  .journal-detail {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  :root {
    --padding-desktop: var(--padding-mobile);
  }

  .journal-detail {
    flex-direction: column;
    gap: 40px;
    padding: 40px 0 60px;
  }

  .article-pullquote {
    padding: 28px 24px;
  }
}