/* site.css — site chrome (header, nav, typography, layout, summary grids,
   article column, forms, image-blocks, footer). Hand-written. */



/* ============================================================
   Aileron — self-hosted, CC0 1.0 Universal (Public Domain Dedication).
   See /assets/fonts/LICENSE-Aileron-CC0.txt. Designer: dot colon (Sora Sagano).
   Used for the LOYAL NANA wordmark and major headings,*/
@font-face {
  font-family: "Aileron";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/Aileron-Regular.otf") format("opentype");
}
@font-face {
  font-family: "Aileron";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/Aileron-Italic.otf") format("opentype");
}
@font-face {
  font-family: "Aileron";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/Aileron-Bold.otf") format("opentype");
}
@font-face {
  font-family: "Aileron";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("/assets/fonts/Aileron-Heavy.otf") format("opentype");
}

/* Use Aileron Heavy for the brand wordmark + headings. The page-level
   typography defaults (body in Georgia) stay where they were below. */
.Header-branding,
.Mobile-bar-branding,
h1, h2, h3, h4, h5, h6, .display {
  font-family: "Aileron", "Helvetica Neue", "Arial Black", Helvetica, Arial, sans-serif;
}
/* ============================================================
   Base / reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font: 16px/1.6 Georgia, "Times New Roman", Times, serif;
  color: #1a1a1a;
  background: #fff;
}

img, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
a:hover { opacity: .7; }

button { font: inherit; cursor: pointer; }

ul, ol { padding-left: 1.4em; }

hr { border: 0; border-top: 1px solid #d8d8d8; margin: 2.5em 0; }

/* page-load spinner from
   so just hide it permanently */
.Loader { display: none !important; }

/* Honor the `hidden` utility class the original markup uses on elements
   that the now-removed JS would have toggled (scroll indicators, etc.). */
.hidden { display: none !important; }

/* The scroll-indicator depends on JS (which we removed). Hide it; if it
   does render anyway, constrain the arrow SVG so it doesn't blow up. */
.Index-page-scroll-indicator { display: none !important; }
.Index-page-scroll-indicator-arrow,
.Icon--caretLarge--down,
.Icon--caretLarge--up {
  width: 24px;
  height: auto;
}


/* ============================================================
   Page chrome layout — body wraps, container widths
   ============================================================ */
body { display: flex; flex-direction: column; min-height: 100vh; }

main { flex: 1; }

.Content-outer,
main {
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  max-width: 1070px;
}

@media (max-width: 600px) {
  .Content-outer, main { padding: 0 16px; }
}


/* ============================================================
   Headings + display fonts
   ============================================================ */
h1, h2, h3, h4, h5, h6, .display {
  font-family: "Helvetica Neue", "Arial Black", Helvetica, Arial, sans-serif;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 .5em;
  color: #0a0a0a;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }


/* ============================================================
   Mobile bar (top of every page <768px) vs desktop Header (>=768px)
   ============================================================ */
.Mobile, .Mobile-overlay { display: none; }

@media (max-width: 767px) {
  .Mobile { display: block; }
  .Header { display: none; }
}

.Mobile-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid #ececec;
}
.Mobile-bar > div:nth-child(2) { flex: 1; text-align: center; }
.Mobile-bar-branding-logo { display: inline-block; max-height: 40px; width: auto; }
.Mobile-bar-menu, .Mobile-bar-search {
  background: none;
  border: 0;
  padding: 8px;
  display: inline-flex;
  align-items: center;
}
.Mobile-bar-menu .Icon, .Mobile-bar-search .Icon { width: 24px; height: 24px; }

/* show only the hamburger by default; the others are state-icons (open/close)
   that the removed JS would have toggled */
.Mobile-bar-menu .Icon--hotdog,
.Mobile-bar-menu .Icon--plus,
.Mobile-bar-menu .Icon--dots-horizontal,
.Mobile-bar-menu .Icon--dots-vertical,
.Mobile-bar-menu .Icon--squares-horizontal,
.Mobile-bar-menu .Icon--squares-vertical { display: none; }

.Icon { stroke: currentColor; fill: none; }
.Icon line, .Icon circle, .Icon path, .Icon rect { stroke: currentColor; }

/* The mobile overlay menu was opened by JS we removed; hide it. */
.Mobile-overlay { display: none !important; }


/* ============================================================
   Desktop Header — two stacked rows: utility (top) + brand+nav (bottom)
   ============================================================ */
.Header {
  padding: 12px 0 24px;
}
.Header-inner {
  width: 100%;
  max-width: 1070px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

/* Top utility row */
.Header--top { padding: 8px 0; border-bottom: 0; }
.Header--top .Header-inner { font-size: 13px; }
.Header--top .Header-inner > :nth-child(1) { justify-self: start;  }
.Header--top .Header-inner > :nth-child(2) { justify-self: center; }
.Header--top .Header-inner > :nth-child(3) { justify-self: end;    }
.Header-tagline { font-style: italic; }

.Header-search-form {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.Header-search-form-input {
  border: 0;
  border-bottom: 1px solid #aaa;
  background: transparent;
  padding: 4px 0;
  font: inherit;
  width: 14ch;
}
.Header-search-form-submit { background: none; border: 0; padding: 0; }
.Header-search-form-submit .Icon { width: 16px; height: 16px; }

/* Bottom brand + nav row */
.Header--bottom { padding: 16px 0 8px; }
.Header-branding {
  text-decoration: none;
  display: inline-block;
}
.Header-branding-logo {
  max-height: 60px;
  width: auto;
}

/* Primary nav. The HTML wraps anchor items in <div class="Header-nav-inner">,
   so the flex must live on the inner div (or be unwrapped). */
.Header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}
.Header-nav-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0 28px;
}
.Header-nav-item {
  text-decoration: none;
  font-size: 14px;
  letter-spacing: .03em;
  padding: 8px 0;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.Header-nav-item:hover { opacity: 1; border-bottom-color: #1a1a1a; }
.Header-nav-item--active { border-bottom-color: #4baede; }

/* Secondary nav (small links in top-right: subscribe, contact) */
.Header--top .Header-nav-inner { gap: 0 14px; }
.Header--top .Header-nav-item  { font-size: 13px; padding: 0; border: 0; }


/* ============================================================
   Index pages — homepage uses sections of background images +
   summary-block grids of teaser cards
   ============================================================ */
.Index {
  display: block;
}
.Index-page {
  padding: 40px 0;
}

.Index-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 32px 0 0;
}
.Index-nav-indicator { width: 24px; height: 1px; background: #d4d4d4; }
.Index-nav-indicator.active { background: #1a1a1a; }


/* ============================================================
   Summary blocks — featured-story 3-column grid (cards with
   image + headline + dek + read-more)
   ============================================================ */
.summary-block-header {
  text-align: center;
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin: 0 0 24px;
  color: #6e6e6e;
}
.summary-block-header-text {
  border-bottom: 1px solid #d4d4d4;
  padding-bottom: 6px;
  display: inline-block;
}

.ln-block-summary-v2 .summary-item-list,
.ln-gallery-block-grid .slides {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .ln-block-summary-v2 .summary-item-list,
  .ln-gallery-block-grid .slides { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ln-block-summary-v2 .summary-item-list,
  .ln-gallery-block-grid .slides { grid-template-columns: 1fr; }
}

.summary-item, .summary-block-collection-type-blog .summary-item {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.summary-thumbnail-container {
  margin: 0 0 16px;
}
.summary-thumbnail img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.summary-title {
  font: 900 14px/1.2 "Helvetica Neue", "Arial Black", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 6px 0 6px;
}
.summary-title a { text-decoration: none; }
.summary-metadata {
  font-size: 11px;
  color: #888;
  margin: 0 0 8px;
  letter-spacing: .04em;
}
.summary-metadata-item { display: inline; }
.summary-excerpt p { font-size: 13px; line-height: 1.55; margin: 0 0 12px; }
.summary-read-more-link {
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid #1a1a1a;
  display: inline-block;
  padding-bottom: 2px;
}


/* ============================================================
   Single-article pages
   ============================================================ */
.Main--blog,
.BlogItem,
article.entry,
article.BlogItem-content,
.Index-page-content {
  max-width: 720px;
  margin: 0 auto;
}

.entry-title, .BlogItem-title, .blog-item-title {
  text-align: center;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  text-transform: uppercase;
  margin: 24px 0 12px;
}
.blog-meta-item, .BlogItem-meta {
  text-align: center;
  font-size: 13px;
  color: #555;
  font-style: italic;
  margin: 0 0 24px;
}

.blog-item-content, .entry-content, .BlogItem-content,
.ln-html-content, .ln-block-content {
  font-size: 17px;
  line-height: 1.7;
}
.ln-html-content p,
.entry-content p,
.BlogItem-content p { margin: 0 0 1.2em; }

.ln-html-content blockquote,
.entry-content blockquote {
  border-left: 3px solid #1a1a1a;
  margin: 1.6em 0;
  padding: 0 0 0 24px;
  font-style: italic;
  color: #444;
}

.ln-html-content em + p:first-of-type,
.entry-content > p:first-of-type:has(em) { font-style: italic; }


/* Image blocks. Rather than reproduce
   that, render images at their natural aspect: the photo's own proportions
   define the shape; the wrapper just constrains width to the column. */
.ln-block-image .image-block-outer-wrapper { margin: 1.2em 0; }
.ln-block-image figure { margin: 0; }
.ln-block-image .image-block-wrapper,
.ln-block-image .ln-image-shape-container-element {
  position: static !important;
  padding-bottom: 0 !important;
  height: auto !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
  overflow: visible !important;
}
.ln-block-image .ln-image-shape-container-element img,
.ln-block-image figure img {
  position: static !important;
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  display: block !important;
  object-fit: initial !important;
}
.image-caption-wrapper { font-size: 13px; color: #666; margin-top: 8px; text-align: center; }
.image-block-outer-wrapper.layout-caption-below { display: block; }


/* ============================================================
   Newsletter section ("YOU CAN SIT WITH US" panel on home)
   ============================================================ */
.newsletter-form-wrapper,
.ln-block-newsletter,
.Newsletter {
  background: #f3f3f3;
  padding: 36px 24px;
  margin: 32px 0;
}
.newsletter-form-header {
  text-align: center;
  margin: 0 0 20px;
}
.newsletter-form-header-title {
  font-family: "Helvetica Neue", "Arial Black", Helvetica, Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 18px;
  margin: 0 0 8px;
}
.newsletter-form-header-description { font-size: 14px; color: #444; max-width: 440px; margin: 0 auto; }

.newsletter-form-field-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 480px;
  margin: 16px auto;
}
.newsletter-form-field-wrapper > input,
.newsletter-form-field-wrapper > .newsletter-form-field-element { grid-column: span 2; }
.newsletter-form-field-wrapper > .newsletter-form-name-wrapper {
  display: contents;
}
/* Kill the browser default border/padding on any fieldset the form uses,
   and hide the "First Name"/"Last Name"/"Email Address" labels the way
   the original CMS did (fields carry placeholder text instead). */
.newsletter-form-wrapper fieldset,
.newsletter-form-wrapper .newsletter-form-name-wrapper,
.newsletter-form-wrapper .newsletter-form-name-sub-wrapper {
  all: unset;
  display: contents;
}
.newsletter-form-wrapper label,
.newsletter-form-wrapper .newsletter-form-field-title,
.newsletter-form-wrapper .newsletter-form-body > .newsletter-form-field-title,
.newsletter-form-wrapper legend { display: none; }

.newsletter-form-field-element,
.newsletter-form-wrapper input[type="text"],
.newsletter-form-wrapper input[type="email"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  background: #fff;
  font: inherit;
  border-radius: 2px;
}
.newsletter-form-button-wrapper { text-align: center; }
.newsletter-form-button {
  padding: 10px 28px;
  background: #1a1a1a;
  color: #fff;
  border: 0;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  border-radius: 2px;
}
.newsletter-form-button:hover { background: #333; }


/* ============================================================
   Footer
   ============================================================ */
.Footer {
  border-top: 1px solid #ececec;
  margin-top: 64px;
  padding: 48px 24px;
  text-align: center;
}
.Footer-inner { max-width: 1100px; margin: 0 auto; }
.Footer-blocks { margin: 0 0 16px; }
.Footer-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 0 0 18px;
  flex-wrap: wrap;
}
.Footer-nav-item {
  text-decoration: none;
  letter-spacing: .14em;
  font-size: 13px;
  text-transform: uppercase;
}
.Footer-business { font-size: 12px; color: #777; margin: 18px 0 0; }


/* ============================================================
   Block components — port of the per-component visual rules.
   The granular block-level rules live in /assets/loyalnana.css.
   These are bridge utilities used across blocks generally.
   ============================================================ */
.ln-block { margin: 0 0 1.2em; }
.ln-block-content { width: 100%; }
.ln-block-html .ln-block-content > *:first-child { margin-top: 0; }


/* ============================================================
   Search page (search.html) — uses a simple results list
   ============================================================ */
.Search-results { max-width: 720px; margin: 0 auto; }
.Search-results-item { padding: 16px 0; border-bottom: 1px solid #ececec; }
.Search-results-item-title { margin: 0 0 4px; font-size: 18px; }
.Search-results-item-snippet { font-size: 14px; color: #444; }


/* ============================================================
   Print
   ============================================================ */
@media print {
  .Header, .Mobile, .Footer, .Index-nav,
  .newsletter-form-wrapper, .Newsletter { display: none !important; }
  body { font-size: 12pt; }
  a { color: inherit; text-decoration: none; }
}


/* ============================================================
   Header — restack: logo CENTERED with tagline above; primary nav
   CENTERED below logo; secondary nav (Subscribe/Contact) RIGHT.
   The HTML order is [primary-nav, branding, secondary-nav]; we use
   grid-template-areas to repaint that into the desired layout.
   ============================================================ */
.Header { padding: 0; }
.Header--bottom { padding: 20px 0; }
.Header--bottom .Header-inner {
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    ".    brand  sec"
    "nav  nav    nav";
  align-items: end;
  row-gap: 8px;
}
.Header--bottom .Header-inner > :nth-child(1) { grid-area: nav;   justify-self: center; }
.Header--bottom .Header-inner > :nth-child(2) { grid-area: brand; justify-self: center; }
.Header--bottom .Header-inner > :nth-child(3) { grid-area: sec;   justify-self: end; align-self: start; }

/* Inside the brand cell: <a Header-branding> + <div Header-tagline>. Stack
   them vertically and reorder so the tagline sits ABOVE the logo. */
.Header--bottom .Header-inner > :nth-child(2) {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.Header--bottom .Header-tagline {
  order: -1;
}
.Header-branding-logo { max-height: 68px; }

/* Bigger gap between primary-nav links so they read as standalone items */
.Header--bottom .Header-nav-inner { gap: 0 24px; }
.Header-nav--secondary .Header-nav-inner { gap: 0 14px; }

/* Top utility row: OLD renders [empty] | [tagline + search icon] | [subscribe/contact].
   Our markup has search in slot 1 and social (hidden) in slot 2. We move
   search to slot 2 (center-right, next to injected tagline), keep slot 3 empty,
   and inject the tagline via ::before positioned absolute-center. */
.Header--top { display: block; padding: 17px 0; border-bottom: 0; position: relative; min-height: 53px; }
.Header--top .Header-inner { padding-block: 0; }
.Header--top .Header-social { display: none; }
.Header--top .Header-search-form-input { display: none; }
.Header--top .Header-search-form-submit .Icon--search--small { display: none; }
.Header--top .Header-search-form-submit .Icon--search { width: 16px; height: 16px; display: block; }
.Header--top .Header-search {
  position: absolute;
  left: calc(50% + 100px);   /* right next to the injected tagline */
  top: 50%;
  transform: translateY(-50%);
}
.Header--top::before {
  content: "food, fashion, and travel";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 15px;
  font-weight: 600;
  font-style: italic;
  color: #1a1a1a;
  white-space: nowrap;
}
/* Hide the tagline in Header--bottom since we've injected it into Header--top */
.Header--bottom .Header-tagline { display: none; }


/* ============================================================
   Article byline — markup classes are CAPITAL-B (Blog-meta /
   Blog-meta-item-*); the original rules used lowercase and never
   matched, leaving the date/author invisible.
   ============================================================ */
.Blog-meta, .BlogItem-meta {
  text-align: center;
  font-size: 13px;
  color: #555;
  font-style: italic;
  margin: 0 auto 24px;
  display: block;
}
.Blog-meta-item {
  display: inline;
  margin: 0 .4em;
}
.Blog-meta-item + .Blog-meta-item::before {
  content: "·";
  margin-right: .8em;
  color: #999;
}
.Blog-meta-item--comments { display: none; }  /* comments are inert in archive */
.Blog-meta-item a { text-decoration: none; color: inherit; }


/* ============================================================
   Article share buttons (.Share / .Share-buttons-item) — the source
   CMS originally constrained these to ~28px via JS-set styles; without
   that the SVGs render at their viewBox intrinsic, which on a wide
   article column blows up to ~1000px each.
   ============================================================ */
.BlogItem-share, .Share { margin: 32px 0 24px; }
.Share-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
  list-style: none;
  padding: 0;
}
.Share-buttons-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: inherit;
  font-size: 12px;
  letter-spacing: .04em;
  padding: 6px 10px;
  border: 1px solid #d4d4d4;
  border-radius: 3px;
}
.Share-buttons-item:hover { background: #f4f4f4; opacity: 1; }
.Share-buttons-item-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  display: block;
}
.Share-buttons-item-count { color: #888; }


/* ============================================================
   Summary blocks — restyle read-more as a small italic link
   (matches OLD: subtle "Read more ›" below the dek).
   ============================================================ */
.summary-read-more-link {
  display: inline-block;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 13px;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  border-bottom: 0;
  padding-bottom: 0;
  margin: 4px 0 0;
  color: #444;
}
/* NO ::after — the anchor's inner text already includes "Read More →". */
.summary-read-more-link:hover { opacity: .7; }


/* ============================================================
   Footer-nav — items are inside <div class="Footer-nav-group">
   without spacing, so the two anchors collapse into "HOMEARCHIVE".
   ============================================================ */
.Footer-nav-group {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 32px;
}


/* ============================================================
   Instagram / gallery blocks — ln-gallery contains <div class="slide">
   wrappers, NOT a <div class="slides"> wrapper. Make .ln-gallery itself
   the grid, and constrain thumbs to small, square, 4-up.
   ============================================================ */
.ln-gallery-block-grid .ln-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  max-width: 720px;
  margin: 24px auto;
}
@media (max-width: 720px) {
  .ln-gallery-block-grid .ln-gallery { grid-template-columns: repeat(3, 1fr); gap: 2px; }
}
.ln-gallery-block-grid .slide { margin: 0; }
.ln-gallery-block-grid .slide .margin-wrapper { margin: 0; }
.ln-gallery-block-grid .slide a {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.ln-gallery-block-grid .slide img,
.ln-gallery-block-grid .thumb-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ============================================================
   FONT CALIBRATION — tuned from a side-by-side rendered-sizes
   diff against www.loyalnana.com. The original used a licensed
   webfont serif ("minion-pro"), which we can't reload after the
   Phase-1 webfont drop; we standardize on Georgia at the OLD
   site's measured sizes/weights/casing.
   ============================================================ */

/* Body baseline */
body { font-size: 17px; line-height: 1.55; }

/* ---- Header nav: lowercase serif. Reduced from 23px because Georgia
   renders larger than the minion-pro OLD used at the same px. ---- */
.Header-nav-item {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 17px;
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: 0;
  line-height: 1.4;
  text-align: center;
}
.Header-nav--secondary .Header-nav-item {
  font-size: 15px;
  font-weight: 600;
  text-transform: lowercase;
  font-family: Georgia, "Times New Roman", Times, serif;
  text-align: right;
}

/* Tagline ("food, fashion, and travel") — needs the .Header--bottom prefix
   to win specificity against the earlier layout-restack rule. */
.Header--bottom .Header-tagline {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 15px;
  font-weight: 600;
  font-style: italic;
  text-transform: lowercase;
  letter-spacing: 0;
  color: #1a1a1a;
  line-height: 1.2;
}

/* ---- Section headers (e.g. "STORIES") ----
   OLD used minion-pro 14px/400 normal case (markup already caps). */
.summary-block-header,
.summary-block-header-text {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: #555;
  border-bottom: 0;
  padding-bottom: 0;
}

/* ---- Card titles ----
   OLD: 20px/400 serif normal-case (markup is uppercase).
   NEW had been Helvetica Neue 14px/900 — way off. */
.summary-title,
.summary-block-collection-type-blog .summary-title {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  line-height: 1.2;
  letter-spacing: 0;
  margin: 8px 0 6px;
}
.summary-title a { text-decoration: none; font-weight: inherit; }

/* ---- Card excerpts ---- */
.summary-excerpt,
.summary-excerpt p {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 14px;
  line-height: 1.4;
  color: #1a1a1a;
}

/* ---- Card author/metadata ---- */
.summary-metadata,
.summary-metadata-item,
.summary-metadata a {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 13px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  color: #666;
}
/* The original CMS setting was "metadata-position-below-content".
   The markup emits THREE metadata containers per card (above-title,
   below-title, below-content); only below-content should render. */
.summary-metadata-container--above-title,
.summary-metadata-container--below-title { display: none; }
/* Newsletter form: tighter vertical spacing so it doesn't add 100+ px */
.newsletter-form-wrapper { padding: 24px 24px; margin: 20px 0; }
.newsletter-form-field-wrapper > input,
.newsletter-form-wrapper input[type="text"],
.newsletter-form-wrapper input[type="email"] { padding: 8px 10px; }

/* ---- Card image aspect: OLD measured 234×351 = 2:3 portrait ---- */
.summary-thumbnail img { aspect-ratio: 2 / 3; }

/* ---- Home grid: OLD summary_item = 249 wide, thumb = 234 wide.
   OLD Index-page-content is 1070 outer × 169px side padding = 732 inner.
   3 * 249 = 747, so tiny overflow with negative-margin trick. We use
   inner width 732 and 3 columns with ~-8px total gap to land 249 each. ---- */
.Index-page-content { max-width: 747px; }
.ln-block-summary-v2 .summary-item-list {
  gap: 32px 0;
  grid-template-columns: repeat(3, 1fr);
}
/* 747 / 3 = 249 item width; 7.5px padding each side → 234 thumb (matches OLD) */
.summary-item { padding: 0 7.5px; }
/* Section padding — kept compact so home page doesn't stretch. */
.Index-page { padding: 24px 0; }
.ln-block-summary-v2 { margin: 8px 0 24px; }
.summary-block-header { margin: 0 0 16px; }

/* ---- ln-layout row: The original layout system lays multiple .ln-col-*
   siblings in a row as columns; without CSS they stack full-width. Make
   the row a flex row so the spotlight (image + adjacent text) sits
   side-by-side. ---- */
.ln-layout .row.ln-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
.ln-layout .row.ln-row > .col { min-width: 0; }
.ln-col-0  { display: none; }
.ln-col-1  { flex: 0 0 calc((100% / 12) * 1  - 22px); }
.ln-col-2  { flex: 0 0 calc((100% / 12) * 2  - 22px); }
.ln-col-3  { flex: 0 0 calc((100% / 12) * 3  - 22px); }
.ln-col-4  { flex: 0 0 calc((100% / 12) * 4  - 22px); }
.ln-col-5  { flex: 0 0 calc((100% / 12) * 5  - 22px); }
.ln-col-6  { flex: 0 0 calc((100% / 12) * 6  - 12px); }
.ln-col-7  { flex: 0 0 calc((100% / 12) * 7  - 22px); }
.ln-col-8  { flex: 0 0 calc((100% / 12) * 8  - 22px); }
.ln-col-9  { flex: 0 0 calc((100% / 12) * 9  - 22px); }
.ln-col-10 { flex: 0 0 calc((100% / 12) * 10 - 22px); }
.ln-col-11 { flex: 0 0 calc((100% / 12) * 11 - 22px); }
.ln-col-12 { flex: 0 0 100%; }
@media (max-width: 720px) {
  .ln-layout .row.ln-row > .col { flex: 0 0 100%; }
}

/* ---- Summary block header: OLD lays "STORIES" LEFT, ‹ › pager RIGHT.
   Show the pager as gray chevrons even though they won't cycle without
   JS — the layout match matters more than functionality here. ---- */
.summary-block-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 0;
  padding-bottom: 0;
}
.summary-block-header .summary-heading { text-align: left; }
.summary-carousel-pager {
  display: inline-flex;
  gap: 10px;
  color: #999;
  font-size: 20px;
  line-height: 1;
}
.summary-carousel-pager-prev,
.summary-carousel-pager-next {
  cursor: default;
  display: inline-block;
  padding: 2px 4px;
}
.summary-carousel-pager-prev::before { content: "‹"; }
.summary-carousel-pager-next::before { content: "›"; }

/* ---- Home-page carousel emulation: OLD shows only 3 items per summary
   section (behind ‹ › JS carousel). Without JS, hide items 4+. Users
   navigate to the full listing pages (/stories-1 etc.) to see all. ---- */
.Index-page .ln-block-summary-v2 .summary-item:nth-child(n+4) { display: none; }
.Index-page .ln-block-summary-v2 .summary-item-list {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: row;
}

/* ---- Newsletter ---- */
.newsletter-form-header-title {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.1;
  margin: 0 0 8px;
}
.newsletter-form-header-description {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 15px;
  line-height: 1.5;
  color: #1a1a1a;
}
.newsletter-form-field-element,
.newsletter-form-wrapper input[type="text"],
.newsletter-form-wrapper input[type="email"] {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 15px;
}
.newsletter-form-button {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 15px;
  font-weight: 400;
  text-transform: lowercase;
  letter-spacing: 0;
  background: #fff;
  color: #1a1a1a;
  border: 1px solid #1a1a1a;
  padding: 10px 28px;
}
.newsletter-form-button:hover { background: #1a1a1a; color: #fff; }
/* "sign me up!" inner span on the button — OLD renders UPPERCASE */
.newsletter-form-button > span,
.newsletter-form-button-label {
  font-family: Georgia, "Times New Roman", Times, serif !important;
  font-size: 15px !important;
  text-transform: uppercase !important;
  letter-spacing: .08em;
}
.newsletter-form-button { text-transform: uppercase; letter-spacing: .08em; }

/* ---- Block buttons ("READ FULL INTERVIEW") ---- */
.ln-block-button-element,
.ln-block-button-element--medium,
.ln-button-element--primary {
  font-family: Georgia, "Times New Roman", Times, serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .18em !important;
  text-decoration: none;
  padding: 12px 24px !important;
  border: 1px solid #1a1a1a;
  background: #fff;
  color: #1a1a1a;
  display: inline-block;
}
.ln-block-button-container { text-align: center; }
.ln-block-button-container--left { text-align: left; }

/* ---- Heading default for h1/h2/h3 in editorial body ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 700;
  letter-spacing: 0;
  color: #1a1a1a;
}
.entry-title, .BlogItem-title, .blog-item-title {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

/* ---- Featured h1 inside an editorial HTML block (homepage spotlight
   like "Amanda Saviñón and Sonia Sotomayor sit down...", plus the /about
   page h1). OLD measured 23px/400 across contexts. ---- */
.ln-html-content > h1 {
  font-family: "Aileron", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 23px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.3;
  text-align: center;
  margin: 16px auto;
  max-width: 720px;
}
.ln-html-content > h1 a { text-decoration: none; }
/* Home spotlight (inside 2-col .ln-col-6) uses heavy weight — matches OLD */
.ln-col-6 .ln-html-content > h1 { font-weight: 900; }

/* ---- The image-card layout (figure with .intrinsic + .figcaption.image-card-wrapper)
   was rendering as a full-width image on top of full-width caption because
   .design-layout-card had no CSS. Give it a 2-column grid with image position
   controlled by .image-position-left / .image-position-right. ---- */
.image-block-outer-wrapper.design-layout-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin: 32px auto;
}
.image-block-outer-wrapper.design-layout-card > .intrinsic {
  min-width: 0;
}
.image-block-outer-wrapper.design-layout-card > .figcaption {
  min-width: 0;
}
.image-block-outer-wrapper.design-layout-card.image-position-right > .intrinsic { order: 2; }
.image-block-outer-wrapper.design-layout-card.image-position-right > figcaption { order: 1; }
.image-block-outer-wrapper.design-layout-card.image-position-left  > .intrinsic { order: 1; }
.image-block-outer-wrapper.design-layout-card.image-position-left  > figcaption { order: 2; }
@media (max-width: 720px) {
  .image-block-outer-wrapper.design-layout-card { grid-template-columns: 1fr; }
}

/* ---- Image-card title (e.g. "Loyal Nana Eats" caption headline) ---- */
.image-title,
.image-title p {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 26px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  line-height: 1.2;
  letter-spacing: 0;
  margin: 0 0 6px;
  color: #1a1a1a;
}

/* ---- Image-card subtitle (e.g. "is the foodie arm of Loyal Nana...") ---- */
.image-subtitle,
.image-subtitle p {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 17px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  line-height: 1.5;
  letter-spacing: 0;
  color: #1a1a1a;
  margin: 0 0 12px;
}

/* ---- INSTAGRAM section heading (OLD: 31px italic uppercase) ---- */
.ln-html-content > h3,
.ln-block-content h3 {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 30px;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: .02em;
  text-align: center;
  margin: 24px 0 16px;
}

/* ---- Footer nav: bigger lowercase serif to match OLD ---- */
.Footer-nav-item {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 21px;
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: 0;
}
.Footer-nav-group { gap: 0 28px; }

/* ---- Footer copyright: OLD is small (16px) bold uppercase, not the
   massive 35px h2 we ship by default ---- */
.Footer .ln-html-content h2,
.Footer h2 {
  font-family: Georgia, "Times New Roman", Times, serif !important;
  font-size: 14px !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin: 16px 0 0;
}


/* ============================================================
   BlogList — listing pages (/stories-1, /amandaplusoonepodcast,
   /loyalnanaeats). Without CSS each <article class="BlogList-item">
   stacks full-width with an intrinsic-size image.
   ============================================================ */
.BlogList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 14px;
  max-width: 732px;
  margin: 24px auto;
  padding: 0;
}
@media (max-width: 900px) {
  .BlogList { grid-template-columns: repeat(2, 1fr); max-width: 640px; padding: 0 16px; }
}
@media (max-width: 600px) {
  .BlogList { grid-template-columns: 1fr; max-width: 360px; padding: 0 16px; }
}

.BlogList-item {
  display: flex;
  flex-direction: column;
  text-align: center;
}
/* Order per OLD: image, title, meta (date · author on one line), excerpt+read-more */
.BlogList-item-image   { order: 1; }
.BlogList-item-title   { order: 2; }
.BlogList-item-meta    { order: 3; }
.BlogList-item-excerpt { order: 4; }

.BlogList-item-image {
  margin: 0 0 12px;
}
.BlogList-item-image a { display: block; }
.BlogList-item-image img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
}

.BlogList-item-title {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 18px;
  letter-spacing: 0;
  color: #222;
  text-decoration: none;
  display: block;
  margin: 8px 0 6px;
}
.BlogList-item-title:hover { opacity: .7; }

.BlogList-item-excerpt {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 12px;
  line-height: 15.6px;
  color: #1d1d1d;
}
.BlogList-item-excerpt p { font-style: italic; margin: 0 0 8px; }

.BlogList-item-readmore {
  display: inline-block;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 10px;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 3.2px;
  color: #1d1d1d;
  text-decoration: none;
  margin: 4px 0 0;
}
.BlogList-item-readmore::after { content: none; }

.BlogList-item-meta {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 13px;
  color: #000;
  margin: 4px 0 8px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  font-weight: 500;
  font-style: normal;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 6px;
}
.BlogList-item-meta .Blog-meta-item { display: inline; }
.BlogList-item-meta .Blog-meta-item--date   { order: 1; }
.BlogList-item-meta .Blog-meta-item--author { order: 2; }
.BlogList-item-meta .Blog-meta-item--author::before { content: "· "; color: #999; margin-right: 2px; }
.BlogList-item-meta .Blog-meta-item--comments { display: none; }

.BlogList-pagination {
  max-width: 960px;
  margin: 24px auto 48px;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
}
.BlogList-pagination-link {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
  color: #1a1a1a;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.BlogList-pagination-link-label { text-transform: uppercase; }
.BlogList-pagination-link-icon { width: 8px; height: 14px; fill: currentColor; }


/* ============================================================
   Archive page (/archive) — grouped list of every post by month.
   OLD renders month-heading (title-case regular weight), then each
   post as: title UPPERCASE on line 1, gray italic date on line 2.
   ============================================================ */
.archive-block-wrapper { max-width: 732px; margin: 24px auto; padding: 0 24px; }
.archive-group { margin: 0 0 32px; }
.archive-group-name-link {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 20px;
  font-weight: 500;
  text-transform: none;
  color: #222;
  text-decoration: none;
  line-height: 1.2;
  display: block;
  margin: 0 0 16px;
}
.archive-item-list { list-style: none; padding: 0; margin: 0; }
.archive-item {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 13px;
  line-height: 1.4;
  color: #000;
  display: block;
  margin: 0 0 20px;
}
.archive-item-date-before { display: none; }
.archive-item-link {
  display: block;
  text-transform: uppercase;
  color: #222;
  text-decoration: none;
  letter-spacing: 0.03em;
  font-weight: 600;
  margin: 0 0 4px;
}
.archive-item-link:hover { opacity: .7; }
.archive-item-date-after {
  display: block;
  color: #999;
  font-style: italic;
  font-size: 13px;
}


/* ============================================================
   Contact — static form styling
   ============================================================ */
.contact-form-wrapper { max-width: 480px; margin: 24px auto; }
.ln-static-form label {
  display: block;
  font: 15px/1.4 Georgia, "Times New Roman", Times, serif;
  margin: 12px 0 4px;
}
.ln-static-form .req { color: #888; font-size: 12px; margin-left: 4px; }
.ln-static-form fieldset {
  border: 0; padding: 0; margin: 0 0 8px;
}
.ln-static-form fieldset legend {
  font: 15px Georgia, "Times New Roman", Times, serif;
  margin: 0 0 8px;
  padding: 0;
}
.ln-static-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ln-static-form input,
.ln-static-form textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #bbb;
  background: #fafafa;
  font: 15px/1.4 Georgia, "Times New Roman", Times, serif;
  border-radius: 2px;
  box-sizing: border-box;
}
.ln-static-form textarea { min-height: 120px; resize: vertical; }
.ln-static-form button {
  margin-top: 20px;
  padding: 10px 32px;
  background: #fff;
  color: #1a1a1a;
  border: 1px solid #1a1a1a;
  font: italic 15px Georgia, "Times New Roman", Times, serif;
  letter-spacing: .04em;
  cursor: pointer;
}
.ln-static-form button:hover { background: #1a1a1a; color: #fff; }


/* ============================================================
   Subscribe cover page — green full-bleed
   ============================================================ */
body.ln-subscribe-cover { background: #466f5f; color: #fff; margin: 0; }
.ln-cover {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
  color: #fff;
}
.ln-cover-logo { max-width: 320px; margin: 0 0 40px; filter: invert(1); }
.ln-cover h1 {
  color: #fff;
  font-family: "Aileron", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3.4vw, 37px);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin: 0 0 24px;
}
.ln-cover p {
  max-width: 640px;
  margin: 0 0 12px;
  font-size: 16px;
  font-family: Georgia, "Times New Roman", Times, serif;
}
.ln-cover-actions {
  display: flex;
  gap: 16px;
  margin: 32px 0;
  flex-wrap: wrap;
  justify-content: center;
}
.ln-cover-actions a {
  padding: 14px 28px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 13px;
  font-family: Georgia, "Times New Roman", Times, serif;
}
.ln-cover-actions a:hover { background: #fff; color: #466f5f; }
.ln-cover-social {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}
.ln-cover-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  color: #466f5f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.ln-cover-social svg { width: 18px; height: 18px; fill: currentColor; color: #466f5f; }


/* ============================================================
   Article body — .BlogItem-title / .BlogItem-content typography
   ============================================================ */
.BlogItem-title, .entry-title, .blog-item-title {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.15;
  text-align: center;
  margin: 32px auto 12px;
  max-width: 720px;
}
.BlogItem-content p,
.blog-item-content p,
.entry-content p {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 16px;
  line-height: 1.65;
  color: #1a1a1a;
}
/* Article prev/next pagination */
.BlogItem-pagination { display: flex; gap: 16px; margin: 48px 0 24px; }
.BlogItem-pagination-link {
  flex: 1 1 0;
  text-decoration: none;
  color: inherit;
  border: 1px solid #ececec;
  padding: 12px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.BlogItem-pagination-link--next { flex-direction: row-reverse; text-align: right; }
.BlogItem-pagination-link-content { flex: 1; min-width: 0; }
.BlogItem-pagination-link-label {
  font-family: Georgia, serif;
  font-size: 12px;
  text-transform: uppercase;
  color: #666;
  letter-spacing: .1em;
  display: block;
  margin-bottom: 4px;
}
.BlogItem-pagination-link-meta { font-family: Georgia, serif; font-size: 11px; color: #888; }


/* ============================================================
   /subscribe cover page — the original cover template that lost
   all its wrapper/social-icons/button CSS in the Phase-1 scrub.
   ============================================================ */
.ln-slide-wrapper {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  color: #1a1a1a;
}
.ln-slide-container {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.ln-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.ln-slide-layer.layer-back { display: none; } /* background image */
.ln-slide-layer-content { text-align: center; }
.ln-slice-group { margin: 16px 0; }
.responsive-wrapper.social {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.responsive-wrapper.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 24px 0;
}
.responsive-wrapper.actions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.responsive-wrapper.actions ul li a,
.open-form-button {
  display: inline-block;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .16em;
  text-decoration: none;
  padding: 12px 28px;
  border: 1px solid #1a1a1a;
  color: #1a1a1a;
  background: transparent;
  cursor: pointer;
}
.responsive-wrapper.actions ul li a:hover,
.open-form-button:hover { background: #1a1a1a; color: #fff; }

/* Cover-page social icons — .icon-wrapper is a small square wrapper
   around an inline <svg class="social">. Constrain both. */
.icon-wrapper {
  display: inline-block;
  width: 22px;
  height: 22px;
  overflow: hidden;
}
.icon-wrapper > div,
.icon-wrapper svg,
svg.social {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}


/* ============================================================
   ARTICLE PARITY — measured against live loyalnana.com
   across 5 article pages. Each rule below has a measurement
   in /tmp/lln-qa-articles-v2/audit.json backing it.
   ============================================================ */

/* Pagination arrow SVG had no size and was rendering at 936x1953
   inside a display:flex link. Contained pagination height was
   946-1979px; OLD is 97-115px. Constrain icon, force row layout. */
.BlogItem-pagination {
  display: flex;
  flex-direction: row;
  gap: 24px;
  max-width: 732px;
  margin: 32px auto 0;
  padding: 0;
}
.BlogItem-pagination-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  flex: 1 1 0;
  min-width: 0;
  text-decoration: none;
  border: 1px solid #ececec;
  padding: 12px;
  border-radius: 3px;
}
.BlogItem-pagination-link--prev { justify-content: flex-start; }
.BlogItem-pagination-link--next { justify-content: flex-end; text-align: right; flex-direction: row-reverse; }
.BlogItem-pagination-link-content { min-width: 0; flex: 1; }
.BlogItem-pagination-link-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #999;
  display: block;
  margin: 0 0 4px;
}
.BlogItem-pagination-link-title {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.25;
  margin: 0 0 4px;
  color: #1a1a1a;
}
.BlogItem-pagination-link-meta {
  font-size: 11px;
  color: #777;
  line-height: 1.3;
}
.BlogItem-pagination-link-meta-item + .BlogItem-pagination-link-meta-item::before {
  content: " · ";
}
.BlogItem-pagination-link-icon {
  width: 14px;
  height: 24px;
  flex: 0 0 14px;
  fill: #1a1a1a;
}

/* Slider-gallery blocks (design-layout-inline, system-gallery-block-slider)
   were rendering each image ~707x1060 stacked. OLD renders 244x366 in a strip. */
.BlogItem-content .image-block-outer-wrapper.design-layout-inline {
  display: inline-block;
  width: auto;
  max-width: 244px;
  vertical-align: top;
  margin: 0 8px 16px 0;
}
.BlogItem-content .image-block-outer-wrapper.design-layout-inline .thumb-image,
.BlogItem-content .image-block-outer-wrapper.design-layout-inline .intrinsic img {
  max-width: 244px;
  max-height: 366px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Article title: OLD 32px/600 rhode-condensed w/ negative tracking.
   rhode-condensed unrecoverable; matching size + weight in Georgia. */
.entry-title, .BlogItem-title, .blog-item-title {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #222;
  margin: 0 0 8px;
}

/* Article body paragraph: 17→19px, lh 1.7→1.3, tracking -0.01em.
   Scoped to article context so home card excerpts stay small. */
.BlogItem-content,
.BlogItem-content .ln-html-content,
.BlogItem-content .ln-block-content,
.blog-item-content, .entry-content {
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #222;
}
.BlogItem-content .ln-html-content p,
.BlogItem-content .entry-content p,
.BlogItem-content p { margin: 0 0 1em; }

/* Article byline: OLD is 500 weight, black, flex-inline centered.
   Override the earlier .Blog-meta rule that set display:block. */
.Blog-meta, .BlogItem-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 6px;
  font-weight: 500;
  color: #000;
  font-style: normal;
}

/* Footer container: OLD is 1070 wide with white bg + 19px text.
   NEW was bleeding to viewport, transparent, 17px. */
.Footer {
  max-width: 1070px;
  margin: 48px auto 0;
  background: #fff;
  font-size: 19px;
}


