/* Journal-specific styles for unruephoto.com
   Editorial, image-forward, designed to feel like a photography publication.
   v20260622b */

.journal-main { padding: 3rem 0 5rem; }
.journal-main .container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

/* -------------------- Listing page header -------------------- */

.journal-hero {
  text-align: center;
  padding: 2rem 0 3rem;
  border-bottom: 1px solid #e7e2d9;
  margin-bottom: 3.5rem;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.journal-hero .eyebrow {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .22em;
  color: #b08c5a; margin: 0 0 1rem; font-weight: 500;
}
.journal-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 300; line-height: 1.15;
  margin: 0 0 1rem; color: #111; letter-spacing: -0.01em;
}
.journal-hero .lead {
  font-size: 1rem; line-height: 1.58; color: #666;
  max-width: 580px; margin: 0 auto;
}

/* -------------------- Editorial entry list -------------------- */

.journal-entries {
  max-width: 860px;
  margin: 0 auto;
}

/* article.journal-entry = specificity 0,1,1 — beats any plain class or element rule */
article.journal-entry {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 2.75rem;
  padding: 3rem 0;
  align-items: start;
}

.journal-entry-media {
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #ece8e2;
}
.journal-entry-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .65s ease;
}
article.journal-entry:hover .journal-entry-media img { transform: scale(1.03); }

.journal-entry-body {
  padding-top: .35rem;
}

.journal-entry-num {
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: #b08c5a; margin: 0 0 .85rem; font-weight: 500;
}

/* h2.journal-entry-title = specificity 0,1,1 — beats global h2 (0,0,1) */
h2.journal-entry-title {
  font-size: clamp(1.3rem, 2.3vw, 1.7rem);
  font-weight: 300;
  line-height: 1.22;
  letter-spacing: 0;
  margin: 0 0 .9rem;
  color: #111;
  transition: color .2s ease;
}
h2.journal-entry-title a {
  color: inherit; text-decoration: none;
}
article.journal-entry:hover h2.journal-entry-title { color: #b08c5a; }

.journal-entry-excerpt {
  font-size: .97rem; line-height: 1.65; color: #555; margin: 0 0 1.5rem;
}

.journal-entry-cta {
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  text-decoration: none; color: #333;
  border-bottom: 1px solid #bbb; padding-bottom: 2px;
  display: inline-block;
  transition: color .2s ease, border-color .2s ease;
}
.journal-entry-cta:hover { color: #b08c5a; border-color: #b08c5a; }

.journal-rule {
  border: none; border-top: 1px solid #e2ddd6; margin: 0;
}

.journal-empty {
  padding: 2.5rem 0; text-align: center; color: #555;
  border: 1px solid #e7e2d9; border-radius: 4px;
  max-width: 860px; margin: 0 auto;
}

@media (max-width: 680px) {
  article.journal-entry {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 2rem 0;
  }
  .journal-entry-media { aspect-ratio: 16 / 9; }
}

/* -------------------- Section divider before CTA -------------------- */

.journal-divider {
  height: 1px; background: #e7e2d9; margin: 4rem 0 0;
}

/* -------------------- CTA on listing page -------------------- */

.journal-cta {
  margin-top: 3.5rem; padding: 3rem 2rem 3.5rem;
  background: #f6f3ee; text-align: center; border-radius: 4px;
}
/* .journal-cta h2 = specificity 0,1,1 — beats global h2 */
.journal-cta h2 {
  font-size: 1.75rem; font-weight: 300; line-height: 1.2;
  letter-spacing: 0; margin: 0 0 .75rem; color: #111;
}
.journal-cta p { color: #555; margin: 0 0 1.5rem; font-size: 1rem; }
.journal-cta .button { display: inline-block; }

/* -------------------- Single post page -------------------- */

.journal-post .container { max-width: 820px; }

.journal-breadcrumbs {
  font-size: .85rem; color: #888; margin-bottom: 1.5rem;
}
.journal-breadcrumbs a { color: #888; text-decoration: none; }
.journal-breadcrumbs a:hover { color: #b08c5a; }
.journal-breadcrumbs span { margin: 0 .35rem; }

.journal-post-header { text-align: center; margin-bottom: 2.5rem; }
.journal-post-header .eyebrow {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .22em;
  color: #b08c5a; margin: 0 0 1rem; font-weight: 500;
}
.journal-post-header h1 {
  font-size: clamp(1.65rem, 3.2vw, 2.4rem); font-weight: 300; line-height: 1.2;
  margin: 0 0 1.1rem; color: #111; letter-spacing: -0.01em;
}
.journal-post-header .lead {
  font-size: 1.1rem; line-height: 1.55; color: #555;
  max-width: 640px; margin: 0 auto 1.25rem;
}
.journal-post-meta {
  font-size: .82rem; color: #888;
  text-transform: uppercase; letter-spacing: .12em; margin: 0;
}

.journal-post-hero {
  margin: 0 0 3rem;
  width: 100%;
}
.journal-post-hero img {
  width: 100%; display: block; border-radius: 2px;
  aspect-ratio: 16 / 9; object-fit: cover;
}

.journal-post-body {
  font-size: 1.05rem; line-height: 1.78; color: #2a2a2a;
  max-width: 680px; margin: 0 auto;
}
.journal-post-body p { margin: 0 0 1.35rem; }
/* .journal-post-body h2 = specificity 0,1,1 — beats global h2 */
.journal-post-body h2 {
  font-size: 1.5rem; font-weight: 400; line-height: 1.25;
  letter-spacing: 0; margin: 3rem 0 1rem; color: #111;
}
.journal-post-body h3 {
  font-size: 1.2rem; font-weight: 500; margin: 2rem 0 .75rem; color: #111;
}
.journal-post-body ul, .journal-post-body ol { margin: 0 0 1.5rem 1.25rem; padding: 0; }
.journal-post-body li { margin: 0 0 .55rem; }
.journal-post-body blockquote {
  border-left: 3px solid #b08c5a;
  padding: .35rem 0 .35rem 1.5rem;
  font-style: italic; color: #444;
  margin: 2.25rem 0;
  font-size: 1.12rem; line-height: 1.6;
}
.journal-post-body a { color: #b08c5a; text-decoration: none; border-bottom: 1px solid #e7d4b6; }
.journal-post-body a:hover { color: #8a6a3f; border-bottom-color: #b08c5a; }
.journal-post-body strong { color: #111; font-weight: 600; }

.journal-post-cta {
  margin: 4rem auto 0; max-width: 720px; padding: 2.75rem 2rem;
  background: #f6f3ee; text-align: center; border-radius: 4px;
}
/* .journal-post-cta h2 = specificity 0,1,1 — beats global h2 */
.journal-post-cta h2 {
  font-size: 1.55rem; font-weight: 300; line-height: 1.2;
  letter-spacing: 0; margin: 0 0 .75rem; color: #111;
}
.journal-post-cta p { color: #555; margin: 0 0 1.5rem; }
.journal-post-cta .button { margin: .25rem; }
