/* Readability and Journal prominence improvements. */
:root { --reading-size: 18px; }

body { font-size: var(--reading-size); }
.site-header nav a, .site-header .button, .footer-links a { font-size: 14px !important; }
.eyebrow, .post-meta, .article-hero > a { font-size: 13px !important; letter-spacing: .11em; }
.article-hero > p:last-child, .page-hero > p:last-child { font-size: clamp(18px, 2vw, 22px) !important; line-height: 1.6; }
.article-body p { font-size: var(--reading-size) !important; line-height: 1.8; }
.article-body h2 { font-size: clamp(30px, 3.4vw, 42px); line-height: 1.2; }
.article-note p, footer p, .footer-links { font-size: 15px !important; line-height: 1.65; }
.featured-post > div > p:not(.post-meta), .post-card > p:not(.post-meta) { font-size: 16px !important; line-height: 1.65; }
.post-card > a, .text-link { font-size: 15px !important; }

/* Preserve the entire image instead of cutting it to a fixed frame. */
.article-cover { height: auto; background: #e9eee9; }
.article-cover img { display: block; width: 100%; height: auto; object-fit: contain; object-position: center; }
.editorial-photo, .post-image { height: auto; aspect-ratio: 3 / 2; display: grid; place-items: center; background: #e9eee9; }
.editorial-photo img, .post-image img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: center; }
.related-grid img { display: block; width: 100%; height: auto; aspect-ratio: 3 / 2; margin: 0 0 18px; object-fit: contain; object-position: center; background: #e9eee9; }

/* Homepage Journal gateway. */
.home-journal { background: #102925; color: #fff; padding: 96px max(32px, calc((100vw - 1236px) / 2)); }
.home-journal__intro { max-width: 740px; margin-bottom: 46px; }
.home-journal .eyebrow { color: #f2c89e; }
.home-journal .eyebrow span { background: #f2c89e; }
.home-journal h2 { max-width: 720px; margin: 16px 0; font-family: var(--font-display); font-size: clamp(42px, 5vw, 70px); line-height: 1.02; }
.home-journal__intro > p:last-of-type { max-width: 620px; color: #d9e4e0; font-size: 19px; line-height: 1.65; }
.home-journal__all { display: inline-flex; align-items: center; margin-top: 9px; border-bottom: 1px solid #f2c89e; padding-bottom: 6px; color: #fff; font-size: 15px; font-weight: 700; }
.home-journal__grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 16px; }
.home-journal__card { display: flex; min-height: 100%; flex-direction: column; background: #f8f4ec; color: #102925; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.home-journal__card:hover { transform: translateY(-5px); box-shadow: 0 14px 30px #0004; }
.home-journal__card img { display: block; width: 100%; aspect-ratio: 3 / 2; object-fit: contain; background: #dfe7e2; }
.home-journal__card-content { display: flex; flex: 1; flex-direction: column; padding: 24px; }
.home-journal__card small { color: #b65d2e; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.home-journal__card strong { margin: 14px 0; font-family: var(--font-display); font-size: clamp(26px, 2.4vw, 36px); line-height: 1.06; }
.home-journal__card span { margin-top: auto; font-size: 15px; font-weight: 700; }

@media (max-width: 900px) {
  .home-journal { padding: 74px 22px; }
  .home-journal__grid { grid-template-columns: 1fr; }
  .home-journal__card { display: grid; grid-template-columns: minmax(150px, .7fr) 1fr; }
  .home-journal__card img { height: 100%; }
}

@media (max-width: 560px) {
  :root { --reading-size: 17px; }
  .site-header .brand { font-size: 15px; }
  .home-journal { padding: 58px 20px; }
  .home-journal h2 { font-size: 40px; }
  .home-journal__card { display: block; }
  .article-cover { margin-inline: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .home-journal__card { transition: none; }
}
