
/* =====================================================================
   DESIGN TOKENS
   ===================================================================== */

:root {
  --east-white:       #ffffff;
  --east-ink:         #1a1a1a;
  --east-warm-white:  #f5f4f0;
  --east-muted:       #767069;
  --east-border:      #e0dbd3;
  --east-max:         1440px;
  --east-prose:       740px;
  --east-gutter:      clamp(12px, 1.5vw, 20px);

  /* Typography */
  --east-serif:       'ivypresto-headline', Georgia, serif;
  --east-display:     'ivypresto-headline', Georgia, serif;
  --east-body:        Georgia, 'Times New Roman', serif;
  --east-label:       'early-sans', sans-serif;
}

/* =====================================================================
   RESET & BASE
   ===================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  font-family: var(--east-body);
  color: var(--east-ink);
  background-color: var(--east-white);
  line-height: 1.6;
}

h3 { text-transform: uppercase; }

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol { list-style: none; }

/* =====================================================================
   LAYOUT
   ===================================================================== */

.layout-container {
  max-width: var(--east-max);
  margin-inline: auto;
  padding-inline: var(--east-gutter);
}

/* =====================================================================
   SITE HEADER
   ===================================================================== */

.site-header {
  background: var(--east-white);
}

.site-header__inner {
  max-width: var(--east-max);
  margin-inline: auto;
  padding-inline: var(--east-gutter);
}

.site-header__top {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 0 16px;
}

.site-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--east-border);
  gap: 4px;
  position: relative;
}

.header-search-icon {
  margin-left: 8px;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 6px;
  position: absolute;
  right: var(--east-gutter);
  top: 50%;
  transform: translateY(-50%);
  background: var(--east-white);
  padding: 6px 12px;
  border: 1px solid var(--east-border);
}

.header-search__submit {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  color: var(--east-ink);
}

.header-search__submit svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.header-search__input {
  border: none;
  border-bottom: 1px solid var(--east-border);
  background: transparent;
  font-family: var(--east-label);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--east-muted);
  width: 140px;
  padding: 4px 0;
  outline: none;
}

.header-search__input::placeholder {
  color: var(--east-muted);
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--east-ink);
  display: flex;
  align-items: center;
}

.header-btn svg {
  display: block;
  width: 20px;
  height: 20px;
  stroke: var(--east-ink);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
}

/* Logo — centered */
.site-logo {
  text-align: center;
  text-decoration: none;
  display: block;
}

.site-logo__img {
  height: clamp(70px, 11vw, 130px);
  width: auto;
  display: block;
  margin-inline: auto;
}

.site-logo__img--post {
  height: clamp(53px, 8.7vw, 100px) !important;
}

.site-header--post .site-header__top {
  padding: 14px 0 10px;
}

/* =====================================================================
   NAVIGATION
   ===================================================================== */

.site-nav {
  padding: 0;
}

/* Hide non-menu blocks that Drupal places in the nav region */
.site-nav .block-search,
.site-nav form,
.site-nav input,
.site-nav .nav-toggle,
.site-nav [class*="menu-toggle"] {
  display: none;
}

.site-nav .nav__list,
.site-nav .menu {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav .nav__link,
.site-nav .menu a {
  display: block;
  padding: 12px 14px;
  font-family: var(--east-label);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--east-muted);
  transition: color 0.15s;
  text-decoration: none;
}

.site-nav .nav__link:hover,
.site-nav .nav__link--active,
.site-nav .menu a:hover,
.site-nav .menu .is-active > a {
  color: var(--east-ink);
  text-decoration: none;
}

/* Mobile nav drawer */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(0,0,0,0.3);
}

.nav-overlay.is-open { display: block; }

.nav-drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 320px;
  z-index: 100;
  background: var(--east-white);
  padding: 48px 40px;
  overflow-y: auto;
}

.nav-drawer.is-open { display: block; }

.nav-drawer__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--east-muted);
}

.nav-drawer__close svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.nav-drawer__list {
  list-style: none;
  margin-top: 40px;
  padding: 0;
}

.nav-drawer__link {
  display: block;
  font-family: var(--east-label);
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--east-ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--east-border);
  text-decoration: none;
}

.nav-drawer__link:hover { color: var(--east-muted); }

/* =====================================================================
   MAIN CONTENT CONTAINER
   ===================================================================== */

.layout-main {
  max-width: var(--east-max);
  margin-inline: auto;
  padding-inline: var(--east-gutter);
  padding-block: clamp(32px, 4vw, 56px);
}

.layout-content-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

/* =====================================================================
   POSTS GRID (developer's template classes)
   ===================================================================== */

.posts-listing__title {
  font-family: var(--east-label);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--east-muted);
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--east-border);
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px clamp(24px, 4vw, 48px);
}

.posts-grid__item {
  min-width: 0;
}

.post-card {
  display: flex;
  flex-direction: column;
}

.post-card__image-link {
  display: block;
  aspect-ratio: 3 / 2;
  background: var(--east-warm-white);
  overflow: hidden;
  margin-bottom: 2px;
  transition: opacity 0.2s;
}

.post-card__image-link:hover { opacity: 0.92; }

.post-card__image,
.post-card__image .field,
.post-card__image .field__item,
.post-card__image .field__item > a,
.post-card__image picture {
  display: block;
  height: 100%;
}

.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-card__body {
  margin-top: 12px;
}

.post-card__credit + .post-card__body {
  margin-top: 0;
}

.post-card__category {
  margin-bottom: 8px;
  font-family: var(--east-label);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--east-muted);
}

.post-card__category a {
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: inherit;
  text-decoration: none;
}

.post-card__category a:hover { color: var(--east-ink); }

.post-card__read-more {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--east-label);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--east-ink);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.post-card__read-more:hover {
  color: var(--east-muted);
  border-bottom-color: var(--east-muted);
}

.post-card__title {
  font-family: var(--east-serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 8px;
}

.post-card__title a { text-decoration: none; }
.post-card__title a:hover { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }

.post-card__subtitle {
  font-family: var(--east-body);
  font-size: 0.9375rem;
  color: #111111;
  line-height: 1.72;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card__author {
  font-family: var(--east-label);
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #111111;
}

.post-card__meta {
  font-family: var(--east-label);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--east-muted);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.posts-listing__empty {
  font-family: var(--east-body);
  font-style: italic;
  color: var(--east-muted);
}

.posts-listing__pager {
  margin-top: 40px;
}

@media (max-width: 960px) {
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .posts-grid { grid-template-columns: 1fr; }
}

/* =====================================================================
   FEATURED HERO — POST-CARD CONTEXT OVERRIDES
   ===================================================================== */

/* 4:3 image + large Playfair headline */
.hp-featured__primary .post-card__image-link {
  aspect-ratio: 4 / 3;
  margin-bottom: 2px;
}

.hp-featured__primary .post-card__title {
  font-family: var(--east-display);
  font-size: clamp(1.75rem, 3vw, 2.625rem);
  font-weight: 400;
  line-height: 1.18;
  margin-bottom: 12px;
}

.hp-featured__primary .post-card__subtitle {
  font-size: 0.9375rem;
  line-height: 1.72;
  -webkit-line-clamp: 4;
}

/* Stacked picks: separator lines, no excerpt */
.hp-featured__pick {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--east-border);
}

.hp-featured__pick:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.hp-featured__pick .post-card__image-link {
  aspect-ratio: 16 / 9;
  margin-bottom: 2px;
}

.hp-featured__pick .post-card__title {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-bottom: 8px;
}

.hp-featured__pick .post-card__subtitle,
.hp-featured__pick .post-card__read-more {
  display: none;
}

/* =====================================================================
   HOMEPAGE — FEATURED
   ===================================================================== */

.hp-featured {
  padding-top: clamp(20px, 3vw, 36px);
  padding-bottom: 8px;
}

.hp-featured__grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
  max-width: var(--east-max);
  margin-inline: auto;
  padding-inline: clamp(60px, 10vw, 160px);
}

/* Primary featured article */
.article-featured__image {
  display: block;
  aspect-ratio: 4 / 3;
  background: var(--east-warm-white);
  overflow: hidden;
  margin-bottom: 20px;
  transition: opacity 0.2s;
}

.article-featured__image:hover { opacity: 0.92; }

.article-featured__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-featured__eyebrow {
  display: block;
  font-family: var(--east-label);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--east-muted);
  margin-bottom: 12px;
}

.article-featured__title {
  font-family: var(--east-serif);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.18;
  margin-bottom: 14px;
}

.article-featured__title a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.article-featured__excerpt {
  font-family: var(--east-body);
  font-size: 1.125rem;
  line-height: 1.82;
  color: #111111;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-featured__meta {
  font-family: var(--east-label);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--east-muted);
}

/* Secondary stacked picks */
.hp-featured__secondary {
  border-left: 1px solid var(--east-border);
  padding-left: clamp(24px, 4vw, 52px);
  display: flex;
  flex-direction: column;
}

.article-secondary {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--east-border);
}

.article-secondary:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.article-secondary__image {
  display: block;
  aspect-ratio: 16 / 9;
  background: var(--east-warm-white);
  overflow: hidden;
  margin-bottom: 12px;
  transition: opacity 0.2s;
}

.article-secondary__image:hover { opacity: 0.92; }

.article-secondary__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-secondary__eyebrow {
  display: block;
  font-family: var(--east-label);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--east-muted);
  margin-bottom: 8px;
}

.article-secondary__title {
  font-family: var(--east-serif);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  line-height: 1.3;
}

.article-secondary__title a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* Picks-only state */
.hp-featured__grid--picks-only {
  grid-template-columns: 1fr;
}

.hp-featured__grid--picks-only .hp-featured__primary { display: none; }

.hp-featured__grid--picks-only .hp-featured__secondary {
  border-left: none;
  padding-left: 0;
  flex-direction: row;
  gap: clamp(24px, 4vw, 48px);
}

.hp-featured__grid--picks-only .article-secondary {
  flex: 1;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

/* =====================================================================
   HOMEPAGE — LATEST STORIES
   ===================================================================== */

.hp-latest {
  padding-block: 8px 0;
  max-width: var(--east-max);
  margin-inline: auto;
  padding-inline: clamp(60px, 10vw, 160px);
}

.section-label {
  font-family: var(--east-label);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 28px;
  padding-bottom: 12px;
  padding-inline: clamp(60px, 10vw, 160px);
  margin-inline: calc(-1 * clamp(60px, 10vw, 160px));
  border-bottom: 1px solid var(--east-border);
}

.hp-latest__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px clamp(24px, 4vw, 48px);
}

/* Article card */
.article-card__image {
  display: block;
  aspect-ratio: 3 / 2;
  background: var(--east-warm-white);
  overflow: hidden;
  margin-bottom: 14px;
  transition: opacity 0.2s;
}

.article-card__image:hover { opacity: 0.92; }

.article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card__eyebrow {
  display: block;
  font-family: var(--east-label);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--east-muted);
  margin-bottom: 10px;
}

.article-card__title {
  font-family: var(--east-serif);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 8px;
}

.article-card__title a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-card__summary {
  font-family: var(--east-body);
  font-size: 1.125rem;
  color: #111111;
  line-height: 1.82;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card__meta {
  font-family: var(--east-label);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--east-muted);
}

.article-card__read-more {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--east-label);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--east-ink);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.article-card__read-more:hover {
  color: var(--east-muted);
  border-bottom-color: var(--east-muted);
}

/* Drupal image field wrappers — covers picture element for AVIF/WebP */
.article-card__image .field,
.article-card__image .field__item,
.article-card__image .field__item > a,
.article-card__image picture,
.article-secondary__image .field,
.article-secondary__image .field__item,
.article-secondary__image .field__item > a,
.article-secondary__image picture,
.article-featured__image .field,
.article-featured__image .field__item,
.article-featured__image .field__item > a,
.article-featured__image picture {
  display: block;
  height: 100%;
}

/* =====================================================================
   BASIC PAGES (About, Contact, etc.)
   ===================================================================== */

.basic-page {
  max-width: var(--east-prose);
  margin-inline: auto;
  padding-block: clamp(40px, 5vw, 64px);
}

/* =====================================================================
   POST / ARTICLE FULL PAGE
   ===================================================================== */

.article-full {
  max-width: var(--east-prose);
  margin-inline: auto;
  padding-inline: var(--east-gutter);
  padding-block: clamp(40px, 5vw, 64px);
}

.article-full__header {
  text-align: center;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--east-border);
  margin-bottom: 36px;
}

.article-full__eyebrow {
  display: block;
  font-family: var(--east-label);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--east-muted);
  margin-bottom: 16px;
}

.article-full__title {
  font-family: var(--east-serif);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.13;
  margin-bottom: 18px;
}

.article-full__subtitle {
  font-family: var(--east-body);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--east-muted);
  line-height: 1.55;
  margin-bottom: 20px;
}

.article-full__meta {
  font-family: var(--east-label);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--east-muted);
}

.article-full__meta a {
  color: var(--east-ink);
}

.article-full__meta a:hover { text-decoration: underline; }

/* Centered hero image */
.article-full__hero {
  max-width: var(--east-prose);
  margin-inline: auto;
  margin-bottom: 40px;
}

.article-full__hero img {
  width: 100%;
  height: auto;
}

.article-full__hero figcaption {
  font-family: var(--east-label);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-style: italic;
  color: var(--east-muted);
  margin-top: 8px;
  text-align: left;
  line-height: 1.5;
}

/* Prose body */
.article-full__body {
  font-family: var(--east-body);
  font-size: 1.25rem;
  line-height: 1.82;
  color: #252320;
}

.article-full__body > * + * { margin-top: 1.4em; }

.article-full__body p,
.article-full__body .field--item p,
.article-full__body .field__item p {
  margin-top: 0;
  margin-bottom: 1.5em;
}

.article-full__body p:last-child,
.article-full__body .field--item p:last-child,
.article-full__body .field__item p:last-child { margin-bottom: 0; }

/* Drop caps */
.article-full__body p.has-drop-cap .drop-cap {
  float: left;
  font-family: var(--east-serif);
  font-size: 5.5em;
  line-height: 0.78;
  padding-right: 0.08em;
  margin-top: 0.06em;
}

/* Small caps (used for magazine name "EAST") */
.small-caps,
.article-full__body .small-caps {
  font-variant-caps: small-caps;
  letter-spacing: 0.05em;
}

.article-full__body h2 {
  font-family: var(--east-serif);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.28;
  margin-top: 2.2em;
}

.article-full__body h3 {
  font-family: var(--east-serif);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.35;
  margin-top: 2em;
}

.article-full__body blockquote {
  border-left: 2px solid var(--east-ink);
  padding: 6px 0 6px 28px;
  margin: 2em 0;
  font-family: var(--east-serif);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.5;
}

.article-full__body blockquote cite {
  display: block;
  font-style: normal;
  font-family: var(--east-label);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--east-muted);
  margin-top: 10px;
}

.article-full__body figure { margin: 2.5em 0; }
.article-full__body figure img { width: 100%; }

.article-full__body figcaption {
  font-family: var(--east-label);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-style: italic;
  color: var(--east-muted);
  margin-top: 8px;
  text-align: left;
  line-height: 1.5;
}

.article-full__body a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-full__body a:hover { color: var(--east-muted); }

.article-full__body ul { list-style: disc; padding-left: 1.5em; }
.article-full__body ol { list-style: decimal; padding-left: 1.5em; }
.article-full__body li + li { margin-top: 0.4em; }

/* =====================================================================
   POST FULL PAGE (node--post--full.html.twig)
   ===================================================================== */

.post--full {
  max-width: var(--east-prose);
  margin-inline: auto;
  padding-inline: var(--east-gutter);
  padding-top: 30px;
  padding-bottom: clamp(40px, 5vw, 64px);
}

.post__hero-image {
  width: calc(100% + 140px);
  margin-inline: -70px;
  margin-bottom: 35px;
}

/* Stacked layout — default */
.post--layout-stacked .post__top,
.post__top {
  display: block;
}

/* Header above image layout */
.post--layout-header_above .post__top {
  display: flex;
  flex-direction: column;
}

.post--layout-header_above .post__header {
  order: -1;
  margin-bottom: 24px;
}

.post--layout-header_above .post__hero-image {
  margin-bottom: 16px;
}

/* Header above image, left-aligned layout */
.post--layout-header_above_left .post__top {
  display: flex;
  flex-direction: column;
}

.post--layout-header_above_left .post__header {
  order: -1;
  text-align: left;
  margin-bottom: 24px;
}

.post--layout-header_above_left .post__meta {
  justify-content: flex-start;
}

.post--layout-header_above_left .post__hero-image {
  margin-bottom: 16px;
}

/* Side by side layout */
.post--layout-side_by_side .post__top {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 36px;
}

.post--layout-side_by_side .post__hero-image {
  width: calc(100% + 70px);
  margin-left: -70px;
  margin-bottom: 0;
}

.post--layout-side_by_side .post__header {
  margin-bottom: 0;
  text-align: left;
}

.post--layout-side_by_side .post__meta {
  justify-content: flex-start;
}

.post--layout-side_by_side .post__body {
  padding-top: 0;
}

/* Full bleed image above headline */
.post--layout-full_bleed .post__top {
  margin-bottom: 36px;
}

.post--layout-full_bleed .post__hero-image {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-bottom: 40px;
}

.post--layout-full_bleed .post__hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.post--layout-full_bleed .post__header {
  text-align: left;
}

.post--layout-full_bleed .post__meta {
  justify-content: flex-start;
}

/* Side by side — wide bleed image */
.post--layout-side_by_side_wide .post__top {
  display: grid;
  grid-template-columns: 58% 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 36px;
}

.post--layout-side_by_side_wide .post__hero-image {
  width: calc(100% + 140px);
  margin-left: -140px;
  margin-bottom: 0;
}

.post--layout-side_by_side_wide .post__hero-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

.post--layout-side_by_side_wide .post__header {
  margin-bottom: 0;
  text-align: left;
  overflow: visible;
}

.post--layout-side_by_side_wide .post__title {
  white-space: nowrap;
}

.post--layout-side_by_side_wide .post__meta {
  justify-content: flex-start;
}

.post--layout-side_by_side_wide .post__body {
  padding-top: 0;
}

/* On desktop, side-by-side layouts: image bleeds left in col 1, header sits in col 2 */
@media (min-width: 641px) {
  .post--layout-side_by_side .post__header,
  .post--layout-side_by_side_wide .post__header {
    order: 2;
  }
  .post--layout-side_by_side .post__hero-image,
  .post--layout-side_by_side_wide .post__hero-image {
    order: 1;
  }
}

.post__hero-image img { width: 100%; height: auto; display: block; }

.post__header {
  text-align: left;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--east-border);
  margin-bottom: 36px;
}

.post__category {
  margin-bottom: 16px;
}

.post__category-link {
  font-family: var(--east-label);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--east-muted);
}

.post__title {
  font-family: var(--east-serif);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.13;
  margin-bottom: 18px;
}

.post__subtitle {
  font-family: var(--east-body);
  font-size: 1.25rem;
  color: #252320;
  line-height: 1.55;
  margin-bottom: 20px;
}

.post__meta {
  font-family: var(--east-label);
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--east-muted);
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.post__image-caption {
  font-family: var(--east-label);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-style: italic;
  color: var(--east-muted);
  margin-top: 8px;
  text-align: left;
  line-height: 1.5;
}

.post__image-credit {
  font-family: var(--east-label);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--east-muted);
  margin-top: -2px;
  text-align: left;
  line-height: 1.5;
}

.post-card__credit {
  font-family: var(--east-label);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--east-muted);
  margin-top: 0;
  margin-bottom: 12px;
  text-align: left;
  line-height: 1.5;
}

.hp-featured .post-card__credit,
.hp-latest .post-card__credit {
  display: none;
}

.hp-featured .post-card__body,
.hp-latest .post-card__body {
  margin-top: 6px;
}

.hp-featured .post-card__credit + .post-card__body,
.hp-latest .post-card__credit + .post-card__body {
  margin-top: 6px;
}

.post__image-credit .field__item,
.post__image-credit p {
  margin: 0;
}

/* Prose body */
.post__body {
  font-family: var(--east-body);
  font-size: 1rem;
  line-height: 1.82;
  color: #111111;
}

.post__body figure {
  margin: 2.5em 0;
}

.post__body figure img {
  width: 100%;
  height: auto;
  display: block;
}

.post__body figcaption {
  font-family: var(--east-label);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-style: italic;
  color: var(--east-muted);
  margin-top: 6px;
  text-align: left;
  line-height: 1.5;
}

.post__body p,
.post__body .field--item p,
.post__body .field__item p {
  margin-top: 0;
  margin-bottom: 1.5em;
}

.post__body p:last-child,
.post__body .field--item p:last-child,
.post__body .field__item p:last-child { margin-bottom: 0; }

.post__body h2 {
  font-family: var(--east-label);
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.28;
  margin-top: 2.2em;
  margin-bottom: 0.5em;
}

.post__body h3 {
  font-family: var(--east-label);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.35;
  margin-top: 2em;
  margin-bottom: 0.5em;
}

.post__body h4,
.post__body h5,
.post__body h6 {
  font-family: var(--east-label);
  font-weight: 400;
  line-height: 1.35;
  margin-top: 1.8em;
  margin-bottom: 0.5em;
}

.post__body blockquote {
  border-left: 2px solid var(--east-ink);
  padding: 6px 0 6px 28px;
  margin: 2em 0;
  font-family: var(--east-serif);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.5;
}

.post__body em { font-style: italic; }

.post__body a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.post__body a:hover { color: var(--east-muted); }

/* ── Category listing page ───────────────────────────── */
.cat-page {
  max-width: var(--east-prose);
  margin-inline: auto;
  padding-inline: var(--east-gutter);
  padding-block: clamp(40px, 5vw, 64px);
}

.cat-page__header {
  text-align: center;
  padding: 3em 0 2.5em;
  border-bottom: 1px solid var(--east-border);
  margin-bottom: 2.5em;
}

.cat-page__title {
  font-family: var(--east-label);
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0;
}

.cat-page__section-label {
  font-family: var(--east-label);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 0.8em;
}

.cat-row {
  display: grid;
  grid-template-columns: 1fr 38%;
  gap: 3em;
  align-items: start;
  padding: 2em 0;
  border-top: 1px solid var(--east-border);
}

.cat-row__title {
  font-family: var(--east-serif, Georgia, serif);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.25;
  margin: 0 0 0.5em;
}

.cat-row__title a {
  color: inherit;
  text-decoration: none;
}

.cat-row__title a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.cat-row__subtitle {
  font-family: var(--east-body);
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  margin-bottom: 1em;
}

.cat-row__meta {
  display: flex;
  flex-direction: column;
  gap: 0.15em;
}

.cat-row__author {
  font-family: var(--east-label);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cat-row__date {
  font-family: var(--east-label);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--east-muted);
}

.cat-row__image img {
  width: 100%;
  height: auto;
  display: block;
}

.cat-row__credit {
  font-family: var(--east-label);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--east-muted);
  margin-top: 2px;
}

.cat-row__category {
  font-family: var(--east-label);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5em;
}

.cat-row__category a {
  color: inherit;
  text-decoration: none;
}

@media (max-width: 640px) {
  .cat-row {
    grid-template-columns: 1fr;
  }
  .cat-row__image { order: -1; }
}

/* ── Recipe ─────────────────────────────────────────── */
.recipe {
  margin: 3em 0;
  font-family: var(--east-body);
}

.recipe__title {
  margin: 0 0 0.5em;
}

.recipe__info {
  border-top: 1px solid var(--east-ink);
  padding-top: 1.2em;
  margin-bottom: 2em;
}

.recipe__name {
  font-family: var(--east-sans, sans-serif);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.6em;
}

.recipe__yield {
  font-family: var(--east-label);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
}

.recipe__yield strong {
  margin-right: 0.5em;
}

.recipe__body {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 3em;
  align-items: start;
}

.recipe__ingredients h3,
.recipe__steps h3 {
  font-family: var(--east-sans, sans-serif);
  font-size: 1.1rem;
  font-weight: 700;
  border-top: 1px solid var(--east-ink);
  padding-top: 0.6em;
  margin: 0 0 1.2em;
}

.recipe__ingredient {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.2em;
  margin-bottom: 1em;
  font-size: 0.95rem;
  line-height: 1.5;
}

.recipe__qty {
  font-family: var(--east-label);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: left;
  padding-top: 2px;
}

.recipe__steps ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recipe__steps li {
  margin-bottom: 1.8em;
  font-size: 1rem;
  line-height: 1.7;
}

.recipe__steps li::before {
  display: block;
  content: "Step " counter(recipe-step);
  counter-increment: recipe-step;
  font-family: var(--east-label);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4em;
}

.recipe__steps ol {
  counter-reset: recipe-step;
}

@media (max-width: 640px) {
  .recipe__body {
    grid-template-columns: 1fr;
    gap: 2em;
  }
}

.post__body ul { list-style: disc; padding-left: 1.5em; }
.post__body ol { list-style: decimal; padding-left: 1.5em; }
.post__body li + li { margin-top: 0.4em; }

/* Drop caps */
.post__body p.has-drop-cap .drop-cap {
  float: left;
  font-family: var(--east-serif);
  font-size: 5.6em;
  line-height: 0.78;
  padding-right: 0.08em;
  margin-top: 0.06em;
}

/* Small caps */
.post__body .small-caps {
  font-variant-caps: small-caps;
  letter-spacing: 0.05em;
}

.post__footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--east-border);
}

.post__tags {
  font-family: var(--east-label);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--east-muted);
}

/* =====================================================================
   AUTHOR CARD
   ===================================================================== */

.author-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px 0;
  border-top: 1px solid var(--east-border);
  margin-top: 48px;
  max-width: var(--east-prose);
  margin-inline: auto;
}

.author-card__photo img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.author-card__label {
  display: block;
  font-family: var(--east-label);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--east-muted);
  margin-bottom: 4px;
}

.author-card__name {
  font-family: var(--east-serif);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 6px;
}

.author-card__name a:hover { text-decoration: underline; }

.author-card__bio {
  font-family: var(--east-body);
  font-size: 0.85rem;
  color: var(--east-muted);
  line-height: 1.55;
}

/* =====================================================================
   AUTHOR PROFILE PAGE
   ===================================================================== */

.author-profile {
  max-width: var(--east-prose);
  margin-inline: auto;
  padding-inline: var(--east-gutter);
  padding-top: 0;
  padding-bottom: clamp(40px, 5vw, 64px);
}

.author-profile__header {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 0 calc(50vw - 50% + 2em) 0 calc(50vw - 50% + 2em);
  margin-inline: calc(50% - 50vw);
  border-bottom: 1px solid var(--east-border);
  margin-bottom: 2.5em;
  overflow: hidden;
}

.author-profile__photo {
  flex-shrink: 0;
}

.author-profile__photo img {
  width: 200px;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  display: block;
}

.author-profile__details {
  padding: 2em 0 2.5em 2em;
}

.author-profile__name {
  font-family: var(--east-serif);
  font-size: 1.8rem;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 0.25em;
}

.author-profile__title {
  font-family: var(--east-label);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--east-muted);
  margin: 0 0 0.75em;
}

.author-profile__bio {
  font-family: var(--east-body);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--east-ink);
}

.author-profile__posts .cat-page__section-label {
  margin-bottom: 0;
}

/* =====================================================================
   FOOTER
   ===================================================================== */

.site-footer {
  background: #1a1a1a;
  color: #fff;
}

.site-footer__inner {
  max-width: var(--east-max);
  margin-inline: auto;
  padding: clamp(40px, 5vw, 64px) var(--east-gutter) clamp(24px, 3vw, 40px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.site-footer__bottom {
  max-width: var(--east-max);
  margin-inline: auto;
  padding: 20px var(--east-gutter);
  text-align: center;
}

.site-footer__credit {
  font-family: var(--east-label);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.site-footer__credit a:hover { text-decoration: underline; }

.site-footer__col--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  align-self: center;
}

.site-footer__right {
  display: flex;
  gap: 24px;
  align-items: start;
  justify-self: start;
}

.site-footer__logo {
  width: 360px;
  filter: brightness(0) invert(1);
  display: block;
}

.site-footer__heading {
  font-family: var(--east-label);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 1.2em;
}

.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__col--sections {
  justify-self: end;
  text-align: left;
}

.site-footer__col--sections .site-footer__links {
  column-count: 2;
  column-gap: 24px;
}

.site-footer__links li {
  margin-bottom: 0.1em;
}

.site-footer__links a {
  font-family: var(--east-label);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: #fff;
  text-decoration: none;
}

.site-footer__links a:hover { text-decoration: underline; }

.site-footer__col--social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer__social-icons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}

.site-footer__social-link svg {
  width: 26px;
  height: 26px;
}

.site-footer__social-link {
  color: #fff;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.site-footer__social-link:hover { opacity: 1; }

/* =====================================================================
   BREADCRUMB
   ===================================================================== */

.breadcrumb {
  padding-block: 14px;
  border-bottom: 1px solid var(--east-border);
}

.breadcrumb ol {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: var(--east-label);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--east-muted);
}

.breadcrumb li + li::before {
  content: '—';
  margin-right: 8px;
  color: var(--east-border);
}

/* =====================================================================
   STATUS MESSAGES
   ===================================================================== */

.messages {
  padding: 14px 18px;
  margin-bottom: 24px;
  font-size: 0.875rem;
  border-left: 3px solid currentColor;
}

.messages--status  { color: #2d6a4f; background: #f0fdf7; }
.messages--warning { color: #92400e; background: #fffbeb; }
.messages--error   { color: #991b1b; background: #fef2f2; }

/* Suppress Drupal chrome */
.feed-icon { display: none; }
.submitted, .node__submitted,
article footer .field--name-uid,
article footer .field--name-created { display: none; }
.comment-forbidden, a[href*="comment-form"],
.node__links, .links.inline { display: none; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */

@media (max-width: 960px) {
  .hp-featured__grid {
    grid-template-columns: 1fr;
  }

  .hp-featured__secondary {
    border-left: none;
    border-top: 1px solid var(--east-border);
    padding-left: 0;
    padding-top: 28px;
    flex-direction: row;
    gap: clamp(20px, 3vw, 40px);
  }

  .article-secondary {
    flex: 1;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .hp-latest__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .nav-hamburger { display: flex; }

  .site-header__inner {
    position: relative;
  }

  .site-header__top {
    padding: 16px 0;
    border-bottom: 1px solid var(--east-border);
  }

  .site-header__nav {
    padding: 0;
    border: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .hp-featured {
    padding-top: 8px;
  }

  .post__top {
    display: flex !important;
    flex-direction: column !important;
  }

  .post__hero-image,
  .post--layout-side_by_side .post__hero-image,
  .post--layout-side_by_side_wide .post__hero-image,
  .post--layout-full_bleed .post__hero-image {
    order: 2;
    width: 100% !important;
    margin-inline: 0 !important;
    margin-left: 0 !important;
  }

  .post__header {
    order: 1;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 16px;
  }

  .post__hero-image {
    margin-bottom: 0 !important;
  }

  .post__body {
    padding-top: 20px;
    margin-top: 16px;
  }

  .post__body::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: var(--east-border);
    margin: 0 auto 20px;
  }

  .post__body h2:first-of-type,
  .post__body .field--body h2:first-child {
    margin-top: 0 !important;
  }

  .hp-latest__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
  }

  .site-footer__col--sections {
    justify-self: unset;
  }

  .site-footer__col--sections .site-footer__links {
    column-count: 1;
  }

  .site-footer__right {
    justify-self: unset;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .site-footer__col--logo {
    padding: 0;
  }

  .site-footer__logo {
    width: 200px;
  }
}

@media (max-width: 640px) {
  .hp-featured__secondary {
    flex-direction: column;
  }

  .author-card {
    flex-direction: column;
    gap: 12px;
  }

  .hp-featured__grid {
    padding-inline: var(--east-gutter);
  }

  .hp-featured__primary {
    padding-bottom: 0.75em;
    border-bottom: 1px solid var(--east-border);
  }

  .hp-featured__secondary {
    border-top: none;
    padding-top: 0;
    flex-direction: column;
    gap: 0;
  }

  .article-secondary {
    display: grid;
    grid-template-columns: 1fr 38%;
    grid-template-rows: auto auto;
    gap: 0 0.8em;
    padding-top: 0.75em;
    padding-bottom: 0.1em;
    border-top: 1px solid var(--east-border);
  }

  .article-secondary__image {
    grid-column: 2;
    grid-row: 1 / 3;
    aspect-ratio: 3 / 2;
    display: block;
    overflow: hidden;
    align-self: start;
  }

  .article-secondary__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .article-secondary__eyebrow {
    grid-column: 1;
    grid-row: 1;
  }

  .article-secondary__title {
    grid-column: 1;
    grid-row: 2;
    font-size: 1rem;
    margin: 0;
  }

  .site-footer__col--sections {
    display: none;
  }

  .site-footer {
    margin-inline: calc(-1 * var(--east-gutter));
  }

  .site-footer__col--social {
    align-items: center;
  }

  .site-footer__social-link svg {
    width: 22px;
    height: 22px;
  }

  .hp-featured__primary .post-card__body {
    text-align: center;
  }

  .hp-latest {
    padding-inline: var(--east-gutter);
  }

  .hp-latest__grid {
    padding-inline: 0;
  }

  .hp-latest .section-label {
    display: none;
  }

  .hp-latest .post-card {
    flex-direction: row;
    gap: 0.8em;
    padding-top: 0.75em;
    padding-bottom: 0.1em;
    border-top: 1px solid var(--east-border);
  }

  .hp-latest .post-card__image-link {
    order: 2;
    flex: 0 0 38%;
    aspect-ratio: 3 / 2;
    align-self: flex-start;
    margin-bottom: 0;
  }

  .hp-latest .post-card__body {
    order: 1;
    flex: 1;
    margin-top: 0;
  }
}

/* =====================================================================
   MOBILE NAV DRAWER
   ===================================================================== */

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--east-ink);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 900;
}

.nav-overlay.is-open {
  display: block;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 280px;
  height: 100%;
  background: var(--east-white);
  z-index: 1000;
  transition: right 0.28s ease;
  overflow-y: auto;
  padding: 24px 28px 40px;
  box-shadow: -4px 0 20px rgba(0,0,0,0.12);
}

.nav-drawer.is-open {
  right: 0;
}

.nav-drawer__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  color: var(--east-ink);
  margin-bottom: 32px;
  margin-left: auto;
}

.nav-drawer__menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-drawer__menu li {
  border-bottom: 1px solid var(--east-border);
}

.nav-drawer__menu a {
  display: block;
  font-family: var(--east-label);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--east-ink);
  text-decoration: none;
  padding: 14px 0;
}

.nav-drawer__menu a:hover {
  color: var(--east-muted);
}

.venue-address {
  font-family: var(--east-body);
  font-weight: normal;
  text-transform: none;
  font-size: 0.95em;
}
