:root {
  --background: #ffffff;
  --card: #fffefb;
  --card-warm: #fffefb;
  --text: #090706;
  --text-muted: #75665d;
  --accent: #e44720;
  --accent-hover: #b83a24;
  --border: #f0b7a5;
  --divider: #f0b7a5;
  --border-soft: #ded8cf;
  --sage: #a8b8a0;
  --cream: var(--background);
  --beige: #e9ded2;
  --oat: #fffefb;
  --blush: #f6dfd5;
  --rose: var(--accent);
  --taupe: var(--border-soft);
  --green: var(--sage);
  --highlight: #fff0d8;
  --link: var(--accent);
  --ink: var(--text);
  --muted: var(--text-muted);
  --line: var(--border-soft);
  --white: var(--card-warm);
  --surface: var(--card);
  --surface-soft: var(--background);
  --shadow: 0 14px 34px rgba(58, 46, 40, 0.08);
  --radius: 8px;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

/* Centralized one-lead + three-supporting publication workflow */
.publication-plan-editor {
  margin: 16px 0;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid #dfd4ca;
  border-radius: 16px;
  background: #fffdf9;
  box-shadow: 0 18px 50px rgba(58, 46, 40, 0.07);
}

.publication-plan-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e6ddd5;
}

.publication-plan-heading h2 {
  margin: 0 0 7px;
  color: #211915;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 500;
  line-height: 1;
}

.publication-plan-heading > div:first-child > p:last-child {
  max-width: 670px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.publication-plan-progress {
  flex: 0 0 auto;
  min-width: 172px;
  padding: 14px 16px;
  border: 1px solid #dfd4ca;
  border-radius: 10px;
  background: #f8f1eb;
}

.publication-plan-progress strong,
.publication-plan-progress span {
  display: block;
}

.publication-plan-progress strong {
  color: #b83a24;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1;
}

.publication-plan-progress span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.publication-plan-progress.is-complete {
  border-color: rgba(63, 105, 82, 0.38);
  background: rgba(168, 184, 160, 0.18);
}

.publication-plan-progress.is-complete strong {
  color: #3f6952;
}

.publication-email-settings {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.2fr) minmax(110px, 0.35fr) minmax(155px, 0.45fr);
  gap: 14px;
  margin-bottom: 26px;
}

.publication-email-settings .field,
.publication-slot-overrides .field {
  display: grid;
  align-content: start;
  gap: 7px;
}

.publication-email-settings .field > span,
.publication-slot-overrides .field > span {
  color: #342a24;
  font-size: 13px;
  font-weight: 850;
}

.publication-email-settings input,
.publication-email-settings textarea,
.publication-slot-control select,
.publication-slot-overrides input,
.publication-slot-overrides textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #d8cec5;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.publication-email-settings textarea,
.publication-slot-overrides textarea {
  min-height: 82px;
  resize: vertical;
}

.publication-plan-slot {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #ddd3ca;
  border-radius: 12px;
  background: #fff;
}

.publication-plan-slot.is-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  margin-bottom: 30px;
  border-top: 4px solid var(--accent);
}

.publication-plan-slot.is-featured .publication-slot-control {
  grid-column: 1 / -1;
}

.publication-slot-control {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(240px, 1fr);
  gap: 18px;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid #e8e0d8;
  background: #faf6f1;
}

.publication-slot-control label strong,
.publication-slot-control label span {
  display: block;
}

.publication-slot-control label strong {
  color: #251d19;
  font-family: var(--serif);
  font-size: 21px;
}

.publication-slot-control label span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.publication-slot-preview {
  min-height: 210px;
}

.publication-plan-slot.has-article .publication-slot-preview {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
}

.publication-slot-thumbnail {
  min-height: 210px;
  background: #eee5dd;
}

.publication-slot-thumbnail img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}

.publication-slot-copy {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px;
}

.publication-slot-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--accent-hover);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.publication-slot-copy h3,
.publication-slot-copy p {
  margin: 0;
}

.publication-slot-copy h3 {
  color: #211915;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.05;
}

.publication-slot-copy p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.publication-slot-copy > a {
  color: var(--accent-hover);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.publication-slot-readiness {
  color: #3f6952;
  font-size: 11px;
  font-weight: 850;
}

.publication-slot-readiness.needs-work {
  color: #9a5a17;
}

.publication-slot-empty {
  min-height: 190px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  color: #8c7b70;
  text-align: center;
}

.publication-slot-empty span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px dashed #bcaea2;
  border-radius: 50%;
  font-size: 24px;
}

.publication-slot-empty p {
  margin: 0;
  font-size: 13px;
}

.publication-slot-overrides {
  display: grid;
  gap: 12px;
  align-content: center;
  padding: 20px;
  border-left: 1px solid #e8e0d8;
  background: #fffdf9;
}

.publication-slot-overrides[hidden] {
  display: none;
}

.publication-slot-overrides small {
  color: var(--muted);
  font-weight: 600;
}

.publication-supporting-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}

.publication-supporting-heading h3 {
  margin: 0;
  color: #251d19;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
}

.publication-supporting-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 13px;
}

.publication-supporting-slots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.publication-supporting-slots .publication-slot-control,
.publication-supporting-slots .publication-plan-slot.has-article .publication-slot-preview {
  grid-template-columns: 1fr;
}

.publication-supporting-slots .publication-slot-control {
  align-items: start;
}

.publication-supporting-slots .publication-slot-thumbnail {
  min-height: 160px;
}

.publication-supporting-slots .publication-slot-thumbnail img {
  min-height: 160px;
  aspect-ratio: 16 / 9;
}

.publication-supporting-slots .publication-slot-overrides {
  border-top: 1px solid #e8e0d8;
  border-left: 0;
}

.publication-plan-error {
  margin-top: 16px;
  padding: 13px 15px;
  border: 1px solid #d99883;
  border-radius: 8px;
  background: #fff0ea;
  color: #7c2c1f;
  font-weight: 800;
}

.legacy-article-workshop {
  padding: 0;
}

.publication-workshop-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
}

.publication-workshop-summary::-webkit-details-marker {
  display: none;
}

.publication-workshop-summary > span:first-child strong,
.publication-workshop-summary > span:first-child small {
  display: block;
}

.publication-workshop-summary > span:first-child strong {
  color: #251d19;
  font-family: var(--serif);
  font-size: 24px;
}

.publication-workshop-summary > span:first-child small,
.publication-workshop-summary > span:last-child {
  color: var(--muted);
  font-size: 13px;
}

.legacy-article-workshop[open] > .publication-workshop-summary {
  border-bottom: 1px solid #dfd4ca;
}

.legacy-article-workshop > :not(summary) {
  margin-right: 22px;
  margin-left: 22px;
}

/* Published issue: one complete article followed by three related reads. */
.publication-issue {
  width: min(1040px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 5vw, 72px);
  border: 1px solid #eadfd8;
  background: #fff;
  color: #17110e;
}

.publication-issue-masthead {
  margin-bottom: clamp(34px, 5vw, 62px);
  text-align: center;
}

.publication-wordmark {
  display: block;
  color: #0b0908;
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 76px);
  letter-spacing: -0.045em;
  line-height: 0.92;
  text-decoration: none;
}

.publication-heart {
  display: block;
  margin: 13px 0 6px;
  color: var(--accent-hover);
  font-family: var(--serif);
  font-size: 22px;
}

.publication-issue-masthead > p:not(.publication-subject) {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.publication-issue-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 13px 0;
  border-top: 1px solid #dfd4ca;
  border-bottom: 1px solid #dfd4ca;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.publication-issue-line i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

.publication-subject {
  max-width: 700px;
  margin: 17px auto 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
}

.publication-lead-image {
  display: block;
  overflow: hidden;
  background: #eee5dd;
}

.publication-lead-image img {
  display: block;
  width: 100%;
  max-height: 620px;
  object-fit: cover;
}

.publication-lead-heading,
.publication-lead-body {
  width: min(760px, calc(100% - 34px));
  margin-right: auto;
  margin-left: auto;
}

.publication-lead-heading {
  margin-top: clamp(28px, 4vw, 46px);
  text-align: center;
}

.publication-lead-heading h1 {
  margin: 8px 0 14px;
  font-family: var(--serif);
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 500;
  line-height: 1;
}

.publication-lead-heading h1 a {
  color: inherit;
  text-decoration: none;
}

.publication-lead-dek {
  margin: 0 auto;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
}

.publication-byline {
  display: flex;
  justify-content: center;
  gap: 10px 20px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.publication-lead-body {
  margin-top: 32px;
  color: #2c231e;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.65;
}

.publication-lead-body p {
  margin: 0 0 20px;
}

.publication-lead-body h2,
.publication-lead-body h3 {
  margin: 34px 0 13px;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.1;
}

.publication-direct-answer {
  margin-bottom: 28px;
  padding: 20px 22px;
  border-left: 3px solid var(--accent);
  background: #faf5ef;
}

.publication-direct-answer p:last-child {
  margin-bottom: 0;
}

.publication-article-link {
  display: inline-flex;
  gap: 10px;
  margin-top: 14px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--accent-hover);
  color: var(--accent-hover);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.publication-supporting {
  margin-top: clamp(50px, 7vw, 88px);
  padding-top: 30px;
  border-top: 1px solid #dfd4ca;
}

.publication-section-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.publication-section-heading span {
  color: var(--accent-hover);
}

.publication-section-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
}

.publication-section-heading i {
  flex: 1;
  height: 1px;
  background: #dfd4ca;
}

.publication-supporting-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.publication-supporting-card,
.publication-supporting-placeholder {
  border: 1px solid #e3d8cf;
  background: #fffdf9;
}

.publication-supporting-image {
  display: block;
  overflow: hidden;
  background: #eee5dd;
}

.publication-supporting-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 180ms ease;
}

.publication-supporting-card:hover .publication-supporting-image img {
  transform: scale(1.02);
}

.publication-supporting-card > div {
  padding: 17px;
}

.publication-card-kicker {
  margin: 0 0 7px;
  color: var(--accent-hover);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.publication-supporting-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.06;
}

.publication-supporting-card h3 a,
.publication-card-link {
  color: inherit;
  text-decoration: none;
}

.publication-supporting-card > div > p:not(.publication-card-kicker) {
  margin: 10px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.publication-card-link {
  color: var(--accent-hover);
  font-size: 12px;
  font-weight: 850;
}

.publication-supporting-placeholder {
  min-height: 250px;
  display: grid;
  place-items: center;
  padding: 20px;
  color: var(--muted);
  font-family: var(--serif);
  font-style: italic;
  text-align: center;
}

.publication-signup {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  gap: 26px;
  align-items: center;
  margin-top: 44px;
  padding: 24px;
  border: 1px solid #efb7a5;
  background: #fff7f2;
}

.publication-signup h2 {
  margin: 2px 0 0;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.05;
}

.publication-issue-empty {
  padding: 40px;
}

@media (max-width: 1000px) {
  .publication-email-settings {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .publication-supporting-slots,
  .publication-supporting-grid {
    grid-template-columns: 1fr;
  }

  .publication-plan-slot.is-featured {
    grid-template-columns: 1fr;
  }

  .publication-plan-slot.is-featured .publication-slot-control {
    grid-column: auto;
  }

  .publication-slot-overrides {
    border-top: 1px solid #e8e0d8;
    border-left: 0;
  }

  .publication-supporting-slots .publication-plan-slot {
    display: grid;
    grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  }

  .publication-supporting-slots .publication-slot-control {
    grid-column: 1 / -1;
    grid-template-columns: minmax(180px, 0.45fr) minmax(240px, 1fr);
  }

  .publication-signup {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .publication-plan-editor,
  .publication-issue {
    padding: 16px;
    border-radius: 0;
  }

  .publication-plan-heading,
  .publication-supporting-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .publication-plan-progress {
    min-width: 0;
  }

  .publication-email-settings,
  .publication-supporting-slots .publication-plan-slot,
  .publication-supporting-slots .publication-slot-control,
  .publication-slot-control,
  .publication-plan-slot.has-article .publication-slot-preview {
    grid-template-columns: 1fr;
  }

  .publication-supporting-slots .publication-slot-control {
    grid-column: auto;
  }

  .publication-slot-thumbnail,
  .publication-slot-thumbnail img {
    min-height: 180px;
  }

  .publication-workshop-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .publication-wordmark {
    font-size: 44px;
  }

  .publication-lead-heading,
  .publication-lead-body {
    width: 100%;
  }

  .publication-byline,
  .publication-issue-line {
    flex-wrap: wrap;
  }
}

/* Calm, single-workspace publishing dashboard */
.publishing-dashboard {
  --dashboard-ink: #251d19;
  --dashboard-green: #3f6952;
  --dashboard-paper: #fffdf9;
}

.publishing-dashboard .one-page-builder-header {
  padding: clamp(18px, 3vw, 30px);
  border-radius: 18px;
  background: linear-gradient(135deg, #fffdf9 0%, #f7eee7 100%);
  box-shadow: 0 18px 46px rgba(58, 46, 40, 0.08);
}

.publishing-dashboard .one-page-builder-header h1 {
  color: var(--dashboard-ink);
  font-size: clamp(32px, 5vw, 54px);
}

.publish-live-button {
  border-color: var(--dashboard-green, #3f6952);
  background: var(--dashboard-green, #3f6952);
  color: #fff;
}

.publish-live-button:hover {
  border-color: #31523f;
  background: #31523f;
}

.dashboard-overview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.dashboard-overview > div {
  min-width: 0;
  padding: 16px 18px;
  border: 1px solid rgba(184, 169, 154, 0.44);
  border-radius: 12px;
  background: rgba(255, 253, 249, 0.86);
}

.dashboard-overview span,
.dashboard-overview strong {
  display: block;
}

.dashboard-overview span {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-overview strong {
  color: var(--dashboard-ink);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.1;
}

.publishing-dashboard .builder-section-box {
  border-radius: 16px;
  background: rgba(255, 253, 249, 0.66);
}

.publishing-dashboard .creator-steps div {
  border-radius: 12px;
  background: rgba(246, 223, 213, 0.46);
}

.publishing-dashboard .builder-section {
  border-radius: 14px;
}

.polish-button {
  border-color: rgba(63, 105, 82, 0.48);
  background: rgba(168, 184, 160, 0.24);
  color: #294737;
}

.polish-button:hover {
  border-color: #3f6952;
  background: rgba(168, 184, 160, 0.4);
}

@media (max-width: 760px) {
  .dashboard-overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .publishing-dashboard .one-page-builder-header,
  .publishing-dashboard .website-article-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .publishing-dashboard .one-page-actions,
  .publishing-dashboard .website-article-actions {
    justify-content: flex-start;
    width: 100%;
  }
}

/* Single-page editorial newsletter */
.editorial-spread.editorial-single-spread,
.public-editorial-shell .editorial-spread.editorial-single-spread {
  display: block;
  width: min(900px, 100%);
  margin: 0 auto;
}

.editorial-page.editorial-single-page,
.public-editorial-shell .editorial-page.editorial-single-page {
  width: 100%;
  min-height: 0;
  padding: clamp(34px, 6vw, 76px);
  overflow: hidden;
  border: 1px solid #e3d7cf;
  border-radius: 0;
  background: #ffffff;
  color: #17110e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.5;
  box-shadow: none;
}

.editorial-page.editorial-single-page.editorial-reference-page,
.public-editorial-shell .editorial-page.editorial-single-page.editorial-reference-page {
  width: min(844px, 100%);
  margin: 0 auto;
  padding: 24px 52px 18px;
  border-color: #eadfd8;
  background: #ffffff;
}

.editorial-reference-page .editorial-single-header {
  margin-bottom: 30px;
}

.editorial-reference-page .editorial-single-header h1 {
  font-size: 68px;
  line-height: 0.98;
}

.editorial-reference-page .editorial-single-heart {
  margin-top: 11px;
  font-size: 20px;
}

.editorial-reference-page .editorial-single-header > p {
  margin: 8px auto 15px;
  font-size: 10px;
  letter-spacing: 0.27em;
}

.editorial-reference-page .editorial-single-issue-line {
  width: min(646px, 100%);
  margin: 0 auto;
  padding: 12px 8px;
  font-size: 11px;
}

.editorial-reference-page .editorial-single-feature {
  margin-top: 28px;
}

.editorial-reference-page .editorial-feature-label {
  width: 100%;
  margin-bottom: 24px;
  font-size: 10px;
}

.editorial-reference-page .editorial-feature-layout {
  grid-template-columns: 285px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.editorial-reference-page .editorial-feature-copy h2 {
  margin-bottom: 14px;
  font-size: 34px;
  line-height: 1.06;
}

.editorial-reference-page .editorial-feature-copy > p {
  font-size: 15px;
  line-height: 1.52;
}

.editorial-reference-page a.editorial-feature-button {
  min-height: 36px;
  margin-top: 21px;
  padding: 9px 14px;
  font-size: 13px;
  white-space: nowrap;
}

.editorial-reference-page .editorial-feature-image img {
  aspect-ratio: 1.22 / 1;
}

.editorial-reference-page .editorial-single-story {
  width: min(646px, 100%);
  margin-top: 31px;
  font-size: 15px;
  line-height: 1.42;
}

.editorial-reference-page .editorial-single-story p {
  margin-bottom: 14px;
}

.editorial-reference-page .editorial-single-story h3 {
  margin-top: 17px;
  padding-top: 16px;
  font-size: 19px;
}

.editorial-reference-page .editorial-single-story ul {
  margin: -4px 0 10px;
  padding-left: 24px;
}

.editorial-reference-page .editorial-single-signoff {
  width: min(646px, 100%);
  margin: 13px auto 28px;
}

.editorial-reference-page .editorial-single-signoff strong {
  font-size: 40px;
}

.editorial-reference-page .editorial-explore-heading {
  margin-bottom: 16px;
}

.editorial-reference-page .editorial-explore-grid {
  gap: 20px;
}

.editorial-reference-page .editorial-explore-copy {
  padding: 12px 10px 14px;
}

.editorial-reference-page .editorial-explore-copy h3 {
  font-size: 16px;
}

.editorial-reference-page .editorial-explore-copy > div {
  font-size: 12px;
  line-height: 1.35;
}

.editorial-reference-page .editorial-single-signup {
  margin-top: 22px;
  padding: 17px 22px;
}

.editorial-single-header {
  margin: 0 auto clamp(28px, 4vw, 46px);
  text-align: center;
}

.editorial-single-header h1 {
  margin: 0;
  color: #0b0908;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 7vw, 78px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.editorial-single-heart {
  margin-top: 15px;
  color: var(--edit-red-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1;
}

.editorial-single-header > p {
  margin: 9px 0 18px;
  color: #29211d;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.28em;
  line-height: 1.5;
  text-transform: uppercase;
}

.editorial-single-issue-line {
  display: flex;
  justify-content: center;
  gap: 22px;
  align-items: center;
  padding: 15px 10px;
  border-top: 1px solid var(--edit-line);
  border-bottom: 1px solid var(--edit-line);
  color: #2d2420;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.editorial-single-issue-line i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--edit-red-dark);
}

.editorial-single-feature {
  margin-top: clamp(30px, 5vw, 54px);
}

.editorial-feature-label {
  display: flex;
  gap: 22px;
  align-items: center;
  width: min(390px, 100%);
  margin-bottom: 22px;
  color: var(--edit-red-dark);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.editorial-feature-label i {
  flex: 1;
  height: 1px;
  background: var(--edit-line);
}

.editorial-feature-label span {
  white-space: nowrap;
}

.editorial-feature-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(390px, 1.28fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.editorial-feature-copy h2 {
  margin: 0 0 17px;
  color: #16100d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4.25vw, 44px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.editorial-feature-copy > p {
  margin: 0;
  color: #2d2521;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-style: italic;
  line-height: 1.52;
}

.editorial-page a.editorial-feature-button,
.public-editorial-shell a.editorial-feature-button {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin-top: 25px;
  padding: 12px 20px;
  border-radius: 3px;
  background: var(--edit-red-dark);
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.editorial-page a.editorial-feature-button:hover,
.public-editorial-shell a.editorial-feature-button:hover {
  background: #8f2918;
  color: #ffffff;
}

.editorial-feature-image {
  overflow: hidden;
  background: #f7f3ef;
}

.editorial-feature-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
}

.editorial-single-story {
  width: min(820px, 100%);
  margin: clamp(30px, 5vw, 48px) auto 0;
  color: #201915;
  font-size: 17px;
  line-height: 1.55;
}

.editorial-single-story p {
  margin: 0 0 17px;
}

.editorial-single-story h3 {
  margin: 20px 0 6px;
  padding-top: 18px;
  border-top: 1px solid #ead8cf;
  color: #1a1310;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.2;
}

.editorial-single-story ul {
  margin: -6px 0 13px;
  padding-left: 26px;
}

.editorial-single-story li {
  margin: 1px 0;
}

.editorial-single-story hr {
  height: 1px;
  margin: 20px 0 15px;
  border: 0;
  background: #ead8cf;
}

.editorial-single-story blockquote {
  margin: 18px 0;
  padding: 14px 18px;
  border-left: 3px solid var(--edit-red-dark);
  background: #fff8f5;
  color: #3f3029;
  font-style: italic;
}

.editorial-single-story aside {
  margin: 18px 0;
  padding: 15px 18px;
  border: 1px solid #efcfc3;
  background: #fff8f5;
  color: #342821;
  font-weight: 700;
}

.editorial-single-signoff {
  display: flex;
  gap: 10px;
  align-items: baseline;
  justify-content: flex-end;
  width: min(820px, 100%);
  margin: 20px auto clamp(38px, 6vw, 62px);
  text-align: right;
}

.editorial-single-signoff span {
  color: var(--edit-red-dark);
  font-size: 18px;
}

.editorial-single-signoff em {
  font-size: 17px;
}

.editorial-single-signoff strong {
  color: #17110e;
  font-family: "Snell Roundhand", "Apple Chancery", "Segoe Script", cursive;
  font-size: 38px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
}

.editorial-explore {
  margin-top: 10px;
}

.editorial-explore-heading {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}

.editorial-explore-heading h2 {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0;
  color: #211915;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.editorial-explore-heading h2 span {
  color: var(--edit-red-dark);
}

.editorial-explore-heading i {
  width: 100%;
  height: 1px;
  background: var(--edit-line);
}

.editorial-explore-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.editorial-explore-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e3d3ca;
  border-radius: 7px;
  background: #ffffff;
}

.editorial-explore-image {
  display: block;
  overflow: hidden;
  background: #f7f3ef;
}

.editorial-explore-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  transition: transform 180ms ease;
}

.editorial-explore-card:hover .editorial-explore-image img {
  transform: scale(1.025);
}

.editorial-explore-copy {
  padding: 15px 14px 17px;
}

.editorial-explore-copy > p {
  margin: 0 0 7px;
  color: var(--edit-red-dark);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.editorial-explore-copy h3 {
  margin: 0 0 8px;
  color: #1b1411;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.16;
}

.editorial-explore-copy > div {
  min-height: 4.2em;
  color: #443832;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  line-height: 1.42;
}

.editorial-explore-copy > a {
  display: inline-block;
  margin-top: 11px;
  color: var(--edit-red-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 700;
}

.editorial-single-signup {
  display: grid;
  grid-template-columns: auto minmax(210px, 1fr) minmax(330px, 1.25fr);
  gap: 18px;
  align-items: center;
  margin-top: clamp(28px, 5vw, 48px);
  padding: 22px 26px;
  border: 1px solid #efcfc3;
  border-radius: 8px;
  background: #fff8f6;
}

.editorial-signup-icon {
  position: relative;
  color: #27201c;
  font-size: 42px;
  line-height: 1;
}

.editorial-signup-icon span {
  position: absolute;
  right: -2px;
  bottom: 2px;
  color: var(--edit-red-dark);
  font-size: 14px;
}

.editorial-signup-copy h2 {
  margin: 0 0 2px;
  color: #1b1512;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
}

.editorial-signup-copy p {
  margin: 0;
  color: #4c3d36;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.editorial-signup-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.editorial-signup-form input {
  min-width: 0;
  min-height: 42px;
  padding: 10px 13px;
  border: 1px solid #d9cec7;
  border-right: 0;
  border-radius: 3px 0 0 3px;
  background: #ffffff;
  color: #211a17;
  font: 14px Georgia, "Times New Roman", serif;
}

.editorial-signup-form button {
  min-height: 42px;
  padding: 10px 18px;
  border: 0;
  border-radius: 0 3px 3px 0;
  background: var(--edit-red-dark);
  color: #ffffff;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.editorial-signup-form small {
  grid-column: 1 / -1;
  margin-top: 5px;
  color: #63534b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
}

.public-newsletter-main,
.public-editorial-shell,
.public-editorial-shell .editorial-preview-panel {
  background: #ffffff;
}

.builder-preview-box:has(.editorial-single-page),
.editorial-preview-panel:has(.editorial-single-page),
.editorial-spread.editorial-single-spread {
  background: #ffffff;
}

.simple-newsletter-app:has(.editorial-reference-page),
.simple-builder-main:has(.editorial-reference-page),
.builder-shell:has(.editorial-reference-page),
.builder-preview-box:has(.editorial-reference-page),
.editorial-preview-panel:has(.editorial-reference-page),
.editorial-spread:has(.editorial-reference-page),
.editorial-reference-page {
  background: #ffffff !important;
}

@media (max-width: 820px) {
  .editorial-page.editorial-single-page.editorial-reference-page,
  .public-editorial-shell .editorial-page.editorial-single-page.editorial-reference-page {
    padding: 30px 28px;
  }

  .editorial-reference-page .editorial-single-header h1 {
    font-size: clamp(52px, 10vw, 68px);
  }

  .editorial-reference-page .editorial-feature-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .editorial-reference-page .editorial-feature-copy {
    max-width: 520px;
  }

  .editorial-reference-page .editorial-feature-image img {
    aspect-ratio: 1.45 / 1;
  }

  .editorial-feature-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .editorial-feature-copy {
    max-width: 620px;
  }

  .editorial-feature-image img {
    aspect-ratio: 1.55 / 1;
  }

  .editorial-explore-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-single-signup {
    grid-template-columns: auto 1fr;
  }

  .editorial-signup-form {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .editorial-page.editorial-single-page.editorial-reference-page,
  .public-editorial-shell .editorial-page.editorial-single-page.editorial-reference-page {
    padding: 25px 18px;
  }

  .editorial-reference-page .editorial-single-header h1 {
    font-size: clamp(43px, 14vw, 56px);
  }

  .editorial-reference-page .editorial-feature-copy h2 {
    font-size: 34px;
  }

  .editorial-page.editorial-single-page,
  .public-editorial-shell .editorial-page.editorial-single-page {
    padding: 26px 20px;
    font-size: 15px;
  }

  .editorial-single-header h1 {
    font-size: clamp(43px, 14vw, 58px);
    line-height: 0.98;
  }

  .editorial-single-header > p {
    max-width: 32ch;
    margin-right: auto;
    margin-left: auto;
    font-size: 9px;
    letter-spacing: 0.2em;
  }

  .editorial-single-issue-line {
    gap: 10px;
    padding: 12px 4px;
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .editorial-feature-copy h2 {
    font-size: clamp(35px, 11vw, 46px);
  }

  .editorial-feature-copy > p,
  .editorial-single-story {
    font-size: 16px;
  }

  .editorial-feature-image img {
    aspect-ratio: 1.25 / 1;
  }

  .editorial-explore-grid {
    grid-template-columns: 1fr;
  }

  .editorial-explore-copy > div {
    min-height: 0;
  }

  .editorial-single-signup {
    grid-template-columns: 1fr;
    padding: 20px;
    text-align: center;
  }

  .editorial-signup-icon {
    display: none;
  }

  .editorial-signup-form {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .editorial-signup-form input {
    border-right: 1px solid #d9cec7;
    border-radius: 3px;
  }

  .editorial-signup-form button {
    border-radius: 3px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

.screen-reader-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.loading-shell,
.login-shell {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 32px;
  text-align: center;
}

.app-shell {
  min-height: 100svh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(220px, 360px);
  gap: 18px;
  align-items: center;
  padding: 14px clamp(16px, 3vw, 36px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand-lockup {
  display: grid;
  gap: 3px;
  justify-items: start;
  text-decoration: none;
}

.brand-name {
  display: block;
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-heart {
  color: var(--accent);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1;
}

.brand-tagline {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

.mode-tabs,
.nav-pills {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.mode-tabs a,
.nav-pills a,
.chip {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  text-decoration: none;
  color: var(--muted);
  background: rgba(255, 253, 249, 0.72);
  font-size: 13px;
  white-space: nowrap;
}

.mode-tabs a.active,
.nav-pills a.active,
.chip.active {
  color: var(--cream);
  background: var(--ink);
  border-color: var(--ink);
}

.public-newsletter-main .nav-pills {
  width: min(660px, 100%);
  margin: 0 auto 14px;
}

.search-form {
  display: flex;
  gap: 8px;
}

.search-form input,
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  padding: 10px 11px;
  min-height: 42px;
}

.search-form button,
.button,
.icon-button {
  min-height: 42px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--rose);
  color: var(--ink);
  padding: 10px 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1.1;
}

.button.secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

.button.rose {
  background: var(--rose);
  border-color: var(--rose);
}

.button.danger {
  color: #7f2f22;
  border-color: #d8a195;
  background: #fff7f3;
}

.button.green {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--ink);
}

.icon-button {
  width: 42px;
  padding: 0;
}

.icon-button.secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

.public-main,
.admin-main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.public-main {
  padding: 24px 0 70px;
}

.public-newsletter-main {
  width: min(calc(100% - 20px), 920px);
}

.public-issue-archive-main {
  width: min(calc(100% - 80px), 1480px);
  padding: clamp(16px, 2vw, 30px) 0 64px;
}

.admin-frame {
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  gap: 24px;
  width: min(1380px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 70px;
}

.sidebar {
  position: sticky;
  top: 82px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar a {
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--muted);
  padding: 9px 10px;
  text-decoration: none;
}

.sidebar a.active {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.hero {
  min-height: 58svh;
  max-height: 620px;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  margin: -24px calc(50% - 50vw) 36px;
  padding: 84px clamp(18px, 6vw, 76px) 54px;
  background-image:
    linear-gradient(90deg, rgba(58, 46, 40, 0.76), rgba(58, 46, 40, 0.28), rgba(248, 243, 236, 0.08)),
    url("/assets/everyday-edit-hero.png");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero-content {
  width: min(640px, 100%);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--blush);
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  font-size: clamp(42px, 7vw, 82px);
  margin: 0 0 16px;
}

h2 {
  font-size: clamp(28px, 4vw, 46px);
  margin: 0;
}

h3 {
  font-size: 24px;
  margin: 0 0 10px;
}

.hero p {
  width: min(620px, 100%);
  margin: 0 0 22px;
  font-size: clamp(17px, 2.3vw, 21px);
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions,
.toolbar,
.card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.section-header,
.page-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin: 28px 0 18px;
}

.section-header p,
.page-header p,
.muted {
  color: var(--muted);
}

.section-header p,
.page-header p {
  margin: 8px 0 0;
  max-width: 720px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 16px;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.card,
.panel,
.composer {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card {
  overflow: hidden;
}

.card-body,
.panel {
  padding: 18px;
}

.panel {
  margin-bottom: 16px;
}

.card-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--beige);
}

.meta-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin: 8px 0 12px;
}

.badge {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 4px 9px;
  font-size: 12px;
  color: var(--muted);
  background: var(--white);
}

.badge.status-ready,
.badge.status-published,
.badge.recommend {
  background: rgba(168, 184, 160, 0.32);
  color: var(--ink);
  border-color: var(--sage);
}

.badge.status-drafting,
.badge.status-editing,
.badge.testing {
  background: rgba(201, 143, 131, 0.22);
  color: var(--ink);
  border-color: rgba(201, 143, 131, 0.48);
}

.badge.warn {
  background: var(--oat);
  color: var(--ink);
  border-color: var(--taupe);
}

.badge.sponsored {
  background: rgba(168, 184, 160, 0.26);
  color: var(--ink);
  border-color: var(--sage);
}

.issue-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 20px;
}

.issue-section {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.issue-section:first-child {
  padding-top: 0;
}

.issue-section:last-child {
  border-bottom: 0;
}

.edit-list {
  margin: 0;
  padding-left: 22px;
}

.edit-list li {
  margin-bottom: 8px;
}

.disclosure {
  border-left: 4px solid var(--rose);
  background: var(--surface-soft);
  padding: 14px;
  border-radius: 6px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field.full,
.form-actions {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.check-field {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding-top: 22px;
}

.check-field input {
  width: 18px;
  height: 18px;
}

.composer {
  margin: 0 0 18px;
  padding: 0;
}

.composer summary {
  cursor: pointer;
  padding: 15px 18px;
  font-weight: 700;
}

.composer form {
  padding: 0 18px 18px;
}

.builder-shell {
  margin: 0 0 18px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--taupe);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.builder-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
}

.builder-header h2 {
  font-size: 34px;
}

.builder-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.builder-meta-grid .field span,
.builder-check {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.builder-check {
  min-height: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 253, 249, 0.72);
  border: 1px solid var(--taupe);
  border-radius: 8px;
}

.builder-check input {
  width: 20px;
  height: 20px;
}

.builder-add-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin: 22px 0;
}

.builder-add-row select,
.builder-section-title,
.builder-section-body {
  width: 100%;
  border: 1px solid var(--taupe);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.82);
  color: var(--ink);
  padding: 12px 14px;
}

.builder-add-row select {
  min-height: 58px;
  font-size: 20px;
}

.builder-sections {
  display: grid;
  gap: 16px;
}

.builder-section {
  padding: 22px;
  background: rgba(255, 253, 249, 0.82);
  border: 1px solid var(--taupe);
  border-radius: 8px;
}

.builder-section-title {
  min-height: 62px;
  margin-bottom: 14px;
  font-size: 22px;
  font-weight: 800;
}

.builder-controls {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.builder-section-body {
  min-height: 180px;
  resize: vertical;
  font-size: 18px;
  line-height: 1.45;
}

.builder-media-block {
  margin-top: 18px;
  color: var(--muted);
}

.builder-media-block strong {
  display: block;
  color: var(--ink);
}

.builder-media-block input[type="file"] {
  width: 100%;
  margin-top: 10px;
  padding: 14px;
  border: 1px dashed var(--taupe);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.64);
}

.builder-asset-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.builder-asset {
  margin: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.builder-asset img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 6px;
  background: rgba(248, 243, 236, 0.86);
}

.builder-asset figcaption {
  margin: 8px 0;
  color: var(--muted);
  font-size: 12px;
  word-break: break-word;
}

.simple-newsletter-app {
  min-height: 100svh;
  background: var(--cream);
}

.simple-builder-main {
  width: min(1480px, calc(100% - 10px));
  margin: 0 auto;
  padding: 6px 0 56px;
}

.simple-newsletter-app .notice {
  margin-bottom: 16px;
}

.simple-newsletter-app .builder-shell {
  margin: 0;
  padding: clamp(8px, 1.5vw, 18px);
  background: transparent;
  border: 0;
  box-shadow: none;
}

.simple-builder-kicker {
  margin: 0 0 2px;
  color: var(--sage);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1;
}

.one-page-builder-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
  margin-bottom: 10px;
  padding: 10px 12px;
  background: rgba(255, 253, 249, 0.78);
  border: 1px solid rgba(184, 169, 154, 0.42);
  border-radius: 8px;
}

.one-page-builder-header h1 {
  margin: 0 0 3px;
  color: var(--ink);
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1;
}

.one-page-builder-header .muted {
  font-size: 14px;
  line-height: 1.25;
}

.one-page-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  width: min(520px, 100%);
}

.one-page-actions .button {
  min-width: 112px;
  min-height: 40px;
  padding: 9px 13px;
  font-size: 14px;
  font-weight: 800;
}

.builder-command-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 14px;
  padding: 10px 12px;
  background: rgba(255, 253, 249, 0.95);
  border: 1px solid rgba(184, 169, 154, 0.5);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(58, 46, 40, 0.08);
  backdrop-filter: blur(12px);
}

.builder-command-bar strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1;
}

.builder-command-bar span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.builder-command-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.simple-newsletter-app .builder-meta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(150px, 0.5fr) minmax(180px, 0.7fr);
  gap: 18px;
  margin-bottom: 22px;
}

.simple-newsletter-app .builder-meta-grid .field span {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 20px;
  font-weight: 800;
}

.simple-newsletter-app .builder-meta-grid input,
.simple-newsletter-app .builder-meta-grid select {
  min-height: 76px;
  border-color: rgba(184, 169, 154, 0.54);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.72);
  padding: 18px 24px;
  color: var(--ink);
  font-size: clamp(21px, 2.3vw, 28px);
  font-weight: 750;
}

.simple-newsletter-app .builder-check {
  min-height: 76px;
  margin: 0;
  padding: 18px 24px;
  background: rgba(255, 253, 249, 0.58);
  border-color: rgba(184, 169, 154, 0.54);
  border-radius: 8px;
  color: var(--ink);
  font-size: clamp(19px, 2vw, 24px);
}

.simple-newsletter-app .builder-check input {
  flex: 0 0 auto;
}

.builder-section-box {
  margin-top: 16px;
  padding: 22px;
  background: rgba(255, 253, 249, 0.48);
  border: 1px solid rgba(184, 169, 154, 0.54);
  border-radius: 8px;
}

.creator-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 22px;
}

.creator-steps div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 64px;
  padding: 12px;
  background: rgba(201, 143, 131, 0.12);
  border: 1px solid rgba(201, 143, 131, 0.34);
  border-radius: 8px;
}

.creator-steps strong {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--rose);
  color: var(--ink);
  font-weight: 900;
}

.creator-steps span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.15;
}

.builder-heading-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.builder-heading-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.builder-heading-row h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 42px);
}

.simple-newsletter-app .builder-add-row {
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(170px, 250px);
  gap: 16px;
  margin: 0 0 22px;
}

.simple-newsletter-app .builder-add-row select {
  min-height: 72px;
  background: rgba(255, 253, 249, 0.78);
  font-size: clamp(21px, 2.4vw, 28px);
}

.simple-newsletter-app .builder-add-row .button {
  min-height: 72px;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
}

.simple-newsletter-app .builder-sections {
  gap: 22px;
}

.simple-newsletter-app .builder-section {
  overflow: hidden;
  padding: 0;
  background: rgba(255, 253, 249, 0.82);
  border-color: rgba(184, 169, 154, 0.54);
  box-shadow: none;
}

.builder-section-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 68px;
  padding: 18px 22px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

.builder-section-summary > span:first-child {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.builder-section-summary > span:first-child strong,
.builder-section-summary > span:first-child em {
  min-width: 0;
}

.builder-section-type,
.builder-section-jump-list .chip span {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 25px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(228, 71, 32, 0.1);
  color: var(--edit-red, #e44720);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.builder-section-type.chip-love,
.builder-section-jump-list .chip-love span {
  background: rgba(228, 71, 32, 0.12);
}

.builder-section-type.chip-quote,
.builder-section-jump-list .chip-quote span {
  background: rgba(129, 104, 93, 0.14);
  color: var(--muted);
}

.builder-section-type.chip-otto,
.builder-section-jump-list .chip-otto span {
  background: rgba(120, 148, 128, 0.17);
  color: var(--sage);
}

.builder-section-summary::-webkit-details-marker {
  display: none;
}

.builder-section-summary strong {
  display: block;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.1;
}

.builder-section-summary em {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.builder-summary-action {
  flex: 0 0 auto;
  min-width: 58px;
  padding: 7px 10px;
  border: 1px solid rgba(184, 169, 154, 0.7);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.builder-section[open] .builder-section-summary {
  border-bottom: 1px solid rgba(184, 169, 154, 0.35);
}

.builder-section.is-excluded {
  background: rgba(233, 222, 210, 0.34);
}

.builder-section.is-excluded .builder-section-summary strong {
  color: var(--muted);
}

.builder-section-inner {
  padding: 22px 24px 24px;
}

.builder-section-inner .field {
  display: block;
  margin-bottom: 18px;
}

.builder-section-inner .field span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.builder-section-picker {
  margin: 0 0 22px;
  padding: 16px;
  background: rgba(255, 253, 249, 0.72);
  border: 1px solid rgba(184, 169, 154, 0.42);
  border-radius: 8px;
}

.builder-section-picker > strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.builder-section-group {
  display: grid;
  gap: 7px;
  margin-top: 12px;
}

.builder-section-group > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.builder-section-jump-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

.builder-section-jump-list .chip {
  cursor: pointer;
  font-weight: 800;
}

.editor-help-card {
  margin: -4px 0 22px;
  padding: 18px 20px;
  background: rgba(201, 143, 131, 0.13);
  border: 1px solid rgba(201, 143, 131, 0.42);
  border-radius: 8px;
  color: var(--ink);
}

.editor-help-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1;
}

.editor-help-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.35;
}

.editor-help-card b {
  color: var(--ink);
}

.simple-newsletter-app .builder-section-title {
  min-height: 78px;
  margin-bottom: 18px;
  padding: 18px 26px;
  background: rgba(255, 253, 249, 0.9);
  border-color: rgba(184, 169, 154, 0.54);
  font-size: clamp(23px, 2.6vw, 30px);
}

.simple-newsletter-app .builder-controls {
  margin-bottom: 22px;
}

.simple-newsletter-app .builder-section-body {
  min-height: 220px;
  padding: 24px 26px;
  border-color: rgba(184, 169, 154, 0.54);
  background: rgba(255, 253, 249, 0.92);
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.38;
}

.builder-writing-field,
.recipe-editor-box {
  display: grid;
  gap: 10px;
}

.recipe-editor-box {
  padding: 16px;
  border: 1px solid rgba(184, 169, 154, 0.46);
  border-radius: 8px;
  background: rgba(233, 222, 210, 0.38);
}

.writing-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.writing-toolbar .button {
  min-height: 34px;
  padding: 7px 10px;
  font-size: 13px;
}

.writing-toolbar .affiliate-link-tool {
  border: 1px solid #b24730;
  background: #fff6f2;
  color: #b83a24;
}

.writing-toolbar .affiliate-link-tool:hover,
.writing-toolbar .affiliate-link-tool:focus-visible {
  background: #b24730;
  color: #ffffff;
}

.affiliate-link-tip {
  margin: 0;
  padding: 10px 12px;
  border-left: 3px solid #b24730;
  background: #fff8f5;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.affiliate-link-tip strong,
.affiliate-link-tip b {
  color: var(--ink);
}

.recipe-editor-box .field {
  gap: 8px;
}

.recipe-editor-box textarea[name="recipeIngredients"],
.recipe-editor-box textarea[name="recipeInstructions"] {
  min-height: 150px;
}

.newsletter-only-box {
  margin: 22px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(201, 143, 131, 0.42);
  border-radius: 8px;
  background: rgba(201, 143, 131, 0.12);
  color: var(--muted);
}

.newsletter-only-box strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
}

.newsletter-only-box p {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
}

.website-article-editor {
  display: grid;
  gap: 16px;
  margin: 24px 0;
  padding: 18px;
  background: rgba(255, 253, 249, 0.68);
  border: 1px solid rgba(201, 143, 131, 0.46);
  border-radius: 8px;
}

.website-article-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.website-article-heading strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
}

.website-article-heading .muted {
  margin-top: 6px;
}

.website-article-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.builder-check.compact {
  flex: 0 0 auto;
  min-height: auto;
  padding: 10px 12px;
  font-size: 14px;
}

.builder-check.compact input {
  width: 18px;
  height: 18px;
}

.website-article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.website-article-grid .field {
  margin-bottom: 0;
}

.article-slug-field {
  min-width: 0;
}

.article-slug-field input[aria-invalid="true"] {
  border-color: #b7442e;
  box-shadow: 0 0 0 2px rgba(183, 68, 46, 0.12);
}

.article-url-preview {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 9px;
  padding: 10px 12px;
  border: 1px solid rgba(184, 169, 154, 0.62);
  border-radius: 7px;
  background: rgba(248, 243, 236, 0.78);
  font-size: 13px;
}

.article-url-preview > span {
  color: var(--muted);
  font-weight: 800;
}

.article-url-preview a {
  min-width: 0;
  flex: 1 1 280px;
  overflow-wrap: anywhere;
  color: var(--ink);
}

.article-url-preview .button {
  min-height: 34px;
  padding: 7px 10px;
  font-size: 12px;
}

.slug-field-help,
.slug-field-error {
  margin: 7px 0 0;
  font-size: 12px;
  line-height: 1.4;
}

.slug-field-help {
  color: var(--muted);
}

.slug-field-error {
  color: #9c301d;
  font-weight: 800;
}

.article-admin-url {
  display: inline-block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.field-helper,
.seo-length {
  display: block;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

.seo-length.is-soft-warning {
  color: #9c5d23;
  font-weight: 800;
}

.seo-sharing-section {
  min-width: 0;
  border: 1px solid rgba(157, 95, 85, 0.38);
  border-radius: 10px;
  background: rgba(255, 253, 249, 0.82);
  overflow: hidden;
}

.seo-sharing-section > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 800;
}

.seo-sharing-section > summary small {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  text-align: right;
}

.seo-sharing-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 4px 18px 20px;
}

.seo-sharing-inner > .full,
.seo-sharing-inner > .article-slug-field,
.seo-sharing-inner > .website-article-grid {
  grid-column: 1 / -1;
}

.image-upload-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 8px;
  padding: 7px 10px;
  border: 1px solid rgba(157, 95, 85, 0.35);
  border-radius: 6px;
  color: var(--accent-dark);
  background: #fffdf9;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.image-upload-control input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.seo-previews {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  gap: 18px;
  min-width: 0;
}

.search-result-preview,
.social-card-preview {
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(184, 169, 154, 0.58);
  border-radius: 9px;
  background: #fff;
  overflow: hidden;
}

.search-result-preview {
  padding: 16px;
}

.seo-preview-label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 11px;
}

.search-preview-title {
  margin: 0 0 4px;
  color: #1a0dab;
  font-family: Arial, sans-serif;
  font-size: 20px;
  line-height: 1.3;
}

.search-preview-url {
  margin: 0 0 7px;
  color: #188038;
  font-family: Arial, sans-serif;
  font-size: 13px;
  overflow-wrap: anywhere;
}

.search-preview-description {
  margin: 0;
  color: #4d5156;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.45;
}

.social-card-preview {
  display: grid;
  grid-template-rows: minmax(145px, auto) auto;
}

.social-preview-image {
  aspect-ratio: 1.91 / 1;
  background: #eee7dd;
  overflow: hidden;
}

.social-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-preview-copy {
  display: grid;
  gap: 5px;
  padding: 13px 15px 15px;
}

.social-preview-copy span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.social-preview-copy strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.2;
}

.social-preview-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.article-hero {
  max-width: 980px;
  margin: 0 auto 36px;
}

.article-hero img {
  width: 100%;
  max-height: 620px;
  border-radius: 8px;
  object-fit: cover;
}

.simple-newsletter-app .builder-media-block {
  margin-top: 22px;
  color: var(--muted);
  font-size: 20px;
}

.simple-newsletter-app .builder-media-block strong {
  font-size: 20px;
}

.simple-newsletter-app .builder-media-block input[type="file"] {
  padding: 18px 22px;
  background: rgba(255, 253, 249, 0.62);
  border-color: rgba(184, 169, 154, 0.54);
}

.simple-save-bottom {
  width: 100%;
  min-height: 64px;
  margin-top: 22px;
  font-size: 22px;
  font-weight: 800;
}

.simple-builder-bottom-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.simple-builder-bottom-actions .simple-save-bottom {
  margin-top: 22px;
}

.builder-preview-box {
  margin-top: 22px;
  padding: 22px;
  background: rgba(255, 253, 249, 0.48);
  border: 1px solid rgba(184, 169, 154, 0.54);
  border-radius: 8px;
}

.editorial-preview-panel,
.saved-newsletters {
  margin-top: 22px;
  padding: 26px;
  background: rgba(255, 253, 249, 0.58);
  border: 1px solid rgba(184, 169, 154, 0.54);
  border-radius: 8px;
}

.editorial-preview-panel {
  --edit-red: #e44720;
  --edit-red-dark: #b93317;
  --edit-paper: #ffffff;
  --edit-line: #f0b7a5;
  --edit-ink: #090706;
  --edit-soft: #fbf4ec;
  margin-top: 0;
  padding: 0;
  background: transparent;
  border: 0;
  overflow: hidden;
}

.editorial-spread {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.editorial-page {
  min-width: 0;
  min-height: 1040px;
  padding: clamp(22px, 2.2vw, 32px);
  background: var(--edit-paper);
  border: 1px solid #ded8cf;
  color: var(--edit-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  line-height: 1.32;
  box-shadow: 0 12px 30px rgba(58, 46, 40, 0.08);
}

.editorial-page h1,
.editorial-page h2,
.editorial-page h3,
.editorial-page p {
  margin: 0;
  color: var(--edit-ink);
}

.editorial-page a,
.editorial-page .newsletter-link {
  color: var(--edit-red);
  font-weight: 700;
  text-decoration: none;
}

.editorial-hero {
  text-align: center;
}

.editorial-topline {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 112px;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
  color: var(--edit-ink);
  font-size: 13px;
  text-align: left;
}

.editorial-topline a {
  text-align: right;
  text-decoration: underline;
}

.editorial-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
}

.editorial-dots span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--edit-red);
}

.editorial-hero h1 {
  font-size: clamp(52px, 4.6vw, 76px);
  font-weight: 500;
  line-height: 0.9;
}

.editorial-heart,
.editorial-second-header div,
.editorial-footer div {
  color: var(--edit-red);
  font-family: var(--sans);
  font-size: 23px;
  line-height: 1;
}

.editorial-hero p {
  margin-top: 8px;
  font-size: 18px;
  font-style: italic;
}

.editorial-issue-line {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
  padding: 8px 0;
  border-top: 1px dotted var(--edit-line);
  border-bottom: 1px dotted var(--edit-line);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.editorial-issue-line span,
.editorial-footer span {
  width: 5px;
  height: 5px;
  align-self: center;
  border-radius: 999px;
  background: var(--edit-red);
}

.editorial-note {
  position: relative;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin: 14px 0 16px;
  padding: 15px 18px;
  border: 1px solid var(--edit-line);
  border-radius: 9px;
}

.editorial-ring {
  display: none;
}

.editorial-note h2 {
  color: var(--edit-red);
  font-size: 19px;
  font-weight: 500;
}

.editorial-note p {
  font-size: 11px;
  line-height: 1.38;
}

.editorial-corner-heart {
  position: absolute;
  right: 18px;
  bottom: 10px;
  color: var(--edit-red);
  font-family: var(--sans);
}

.editorial-section-intro {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 10px;
}

.editorial-section-intro h2,
.editorial-mini-section h2,
.editorial-recipe-card h2,
.editorial-otto-card h2,
.editorial-reminder h2 {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 22px;
  font-weight: 500;
}

.editorial-section-intro h2 span {
  color: var(--edit-red);
  font-family: var(--sans);
}

.editorial-section-intro p,
.editorial-mini-section > p,
.editorial-recipe-card p,
.editorial-otto-card p,
.editorial-reminder p {
  margin-top: 3px;
  font-size: 12px;
  line-height: 1.25;
}

.editorial-product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.editorial-product-card {
  display: grid;
  grid-template-columns: minmax(118px, 0.42fr) minmax(0, 1fr);
  min-height: 124px;
  overflow: hidden;
  border: 1px solid #ead3c9;
  border-radius: 8px;
  background: #fffdfa;
}

.editorial-product-image {
  position: relative;
}

.editorial-product-image img {
  width: 100%;
  height: 100%;
  min-height: 124px;
  object-fit: cover;
}

.editorial-product-image img.newsletter-image-contain,
.editorial-recipe-photo img.newsletter-image-contain,
.editorial-polaroid img.newsletter-image-contain {
  object-fit: contain;
  background: #f8f3ec;
}

.editorial-product-image span {
  position: absolute;
  top: 10px;
  left: 10px;
  max-width: 72px;
  padding: 5px 8px;
  border-radius: 6px;
  background: var(--edit-red);
  color: #fffaf6;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.editorial-product-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 10px 12px 12px;
}

.editorial-product-card h3,
.editorial-mini-card h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.05;
}

.editorial-product-card h3 {
  padding: 0;
}

.editorial-product-text {
  margin-top: 6px;
}

.editorial-product-card p,
.editorial-mini-card p {
  font-size: 11px;
  line-height: 1.3;
}

.editorial-product-card p {
  padding: 0;
}

.editorial-product-card a,
.editorial-mini-card a {
  display: inline-block;
  font-size: 11px;
}

.editorial-product-card .editorial-product-copy > a {
  margin-top: auto;
  padding: 8px 0 0;
}

.editorial-mini-card a {
  padding: 8px 10px 12px;
}

.editorial-two-up {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
  padding-bottom: 16px;
  border-bottom: 1px dotted var(--edit-line);
}

.editorial-mini-card {
  display: block;
  margin-top: 9px;
  padding: 12px 14px;
  border: 1px solid #ead3c9;
  border-radius: 8px;
  background: #fffdfa;
}

.editorial-mini-card > div {
  min-width: 0;
  padding: 0;
}

.editorial-mini-copy p {
  padding: 0;
  font-size: 13px;
  line-height: 1.34;
}

.editorial-mini-card h3,
.editorial-mini-card p,
.editorial-mini-card a {
  padding-left: 0;
}

.editorial-recipe-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dotted var(--edit-line);
}

.editorial-recipe-card h2 {
  font-size: 23px;
}

.editorial-recipe-photo {
  margin: 8px 0 10px;
}

.editorial-recipe-photo img {
  width: 100%;
  aspect-ratio: 2.45 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.editorial-recipe-copy p {
  font-size: 13px;
  line-height: 1.34;
}

.editorial-recipe-columns {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 14px;
  margin-top: 10px;
}

.editorial-recipe-columns h3 {
  margin-bottom: 5px;
  color: var(--edit-red);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.editorial-recipe-columns ul,
.editorial-recipe-columns ol,
.editorial-red-list {
  margin: 0;
  padding-left: 20px;
  min-width: 0;
}

.editorial-recipe-columns li,
.editorial-red-list li {
  margin-bottom: 5px;
  font-size: 12px;
  line-height: 1.32;
}

.editorial-recipe-columns li::marker,
.editorial-red-list li::marker {
  color: var(--edit-red);
}

.editorial-bottom-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.editorial-otto-card {
  display: grid;
  grid-template-columns: minmax(130px, 0.46fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding-top: 12px;
  border-top: 1px dotted var(--edit-line);
}

.editorial-polaroid {
  margin: 0;
  padding: 9px;
  background: #fffefb;
  box-shadow: 0 4px 12px rgba(58, 46, 40, 0.16);
  transform: rotate(-3deg);
}

.editorial-polaroid img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.editorial-otto-card strong {
  display: block;
  margin-top: 8px;
  color: var(--edit-red);
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
}

.editorial-reminder {
  display: grid;
  place-items: center;
  min-height: 128px;
  padding: 18px;
  border: 1px solid #ead3c9;
  border-radius: 8px;
  text-align: center;
}

.editorial-reminder h2 {
  font-size: 18px;
}

.editorial-quote-box {
  display: grid;
  min-height: 184px;
  text-align: center;
}

.editorial-read-card.is-quote.editorial-quote-box .editorial-read-card-copy {
  max-width: 520px;
}

.editorial-quote-box blockquote {
  margin: 0 auto 10px;
  max-width: 520px;
  color: var(--edit-ink);
  font-size: 22px;
  line-height: 1.18;
}

.editorial-quote-box blockquote::before,
.editorial-quote-box blockquote::after {
  color: var(--edit-red);
}

.editorial-quote-box blockquote::before {
  content: "“";
}

.editorial-quote-box blockquote::after {
  content: "”";
}

.editorial-quote-source {
  color: var(--edit-red);
  font-size: 14px;
  font-style: italic;
}

.editorial-reminder div {
  color: var(--edit-red);
  font-family: var(--sans);
}

.editorial-quote-card {
  min-height: auto;
  margin: 14px 0;
  padding: 18px 22px;
}

.editorial-quote-card h2 {
  justify-content: center;
}

.editorial-quote-card div:not(:last-child) {
  max-width: 520px;
}

.editorial-quote-card p {
  font-size: 17px;
  line-height: 1.25;
}

.editorial-otto-page-two {
  margin-top: 16px;
  padding-top: 16px;
}

.newsletter-accent {
  color: var(--edit-red);
  font-weight: 700;
}

.editorial-page a.editorial-inline-cta,
.public-editorial-shell a.editorial-inline-cta {
  display: inline-block;
  margin-top: 8px;
  padding: 0;
  color: var(--edit-red);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.editorial-page a.editorial-inline-cta:hover,
.public-editorial-shell a.editorial-inline-cta:hover {
  color: var(--edit-red-dark);
  text-decoration: underline;
}

.editorial-page-two {
  padding-top: 42px;
}

.editorial-second-header {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px dotted var(--edit-line);
  text-align: center;
}

.editorial-second-header p {
  color: var(--edit-red);
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.44em;
  text-transform: uppercase;
}

.editorial-second-header div {
  margin-top: 13px;
}

.editorial-read-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 14px;
}

.editorial-article-feature {
  grid-column: 1 / -1;
  overflow: hidden;
  padding: 0 0 28px;
  border-bottom: 1px dotted var(--edit-line);
  background: var(--edit-paper);
}

.editorial-article-feature-image {
  display: block;
  overflow: hidden;
  background: #f8f3ec;
}

.editorial-article-feature-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
}

.editorial-article-feature-image img.newsletter-image-contain {
  object-fit: contain;
}

.editorial-article-feature-copy {
  padding: 22px 2px 0;
}

.editorial-article-category {
  margin: 0 0 10px;
  color: var(--edit-red-dark);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.editorial-article-feature h2 {
  max-width: 100%;
  margin: 0 0 12px;
  font-family: var(--sans);
  font-size: clamp(32px, 4.4vw, 46px);
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 1.01;
}

.editorial-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
  margin: 0 0 16px;
  color: #675b54;
}

.editorial-article-byline,
.editorial-reading-time {
  margin: 0;
  font-family: var(--sans);
  font-size: 14px;
}

.editorial-reading-time::before {
  content: "•";
  margin-right: 16px;
  color: var(--edit-red);
}

.editorial-article-summary {
  max-width: 48rem;
}

.editorial-article-summary p,
.editorial-article-summary li {
  font-family: var(--sans);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.55;
}

.editorial-article-summary ul {
  margin: 0;
  padding-left: 22px;
}

.editorial-article-note {
  display: block;
  margin-top: 10px;
  color: var(--edit-red);
  font-size: 17px;
  font-style: italic;
  font-weight: 500;
}

.editorial-page a.editorial-article-button,
.public-editorial-shell a.editorial-article-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin: 0;
  padding: 14px 28px;
  background: #090706;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.editorial-article-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 22px;
}

.editorial-page a.editorial-article-button:hover,
.public-editorial-shell a.editorial-article-button:hover {
  background: #2c2521;
  color: #ffffff;
}

.editorial-read-card {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 18px;
  border: 1px solid #ead3c9;
  border-radius: 12px;
  background: #fffefb;
}

.editorial-read-card.is-wide {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr);
}

.editorial-read-card.has-image {
  grid-template-columns: minmax(92px, 0.42fr) minmax(0, 1fr);
  align-items: start;
}

.editorial-read-card.has-image.image-first {
  grid-template-columns: minmax(112px, 0.5fr) minmax(0, 1fr);
}

.editorial-read-card.is-quote {
  place-items: center;
  text-align: center;
}

.editorial-read-card.is-quote .editorial-read-card-copy {
  max-width: 360px;
}

.editorial-health-tip-box {
  display: grid;
  min-height: 184px;
  place-items: center;
  text-align: center;
}

.editorial-health-tip-box .editorial-read-card-copy {
  max-width: 360px;
}

.editorial-health-tip-text p {
  font-size: 16px;
  line-height: 1.42;
}

.editorial-read-card-image {
  display: block;
  min-width: 0;
}

.editorial-read-card-image img {
  width: 100%;
  aspect-ratio: 1.15 / 1;
  object-fit: contain;
  border-radius: 8px;
  background: #f8f3ec;
}

.editorial-card-kicker {
  margin: 0 0 8px;
  color: var(--edit-red);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.1;
  text-transform: uppercase;
}

.editorial-read-card h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 500;
  line-height: 0.98;
}

.editorial-read-card-text {
  min-width: 0;
}

.editorial-read-card p,
.editorial-read-card li {
  font-size: clamp(13px, 1.2vw, 16px);
  line-height: 1.36;
}

.editorial-read-card p + p {
  margin-top: 8px;
}

.editorial-read-card ul {
  display: grid;
  gap: 6px;
  margin: 8px 0 0;
  padding-left: 18px;
}

.editorial-read-card li::marker {
  color: var(--edit-red);
}

.editorial-read-card strong {
  display: block;
  margin-top: 8px;
  color: var(--edit-red);
  font-size: 17px;
  font-style: italic;
  font-weight: 500;
}

.editorial-long-card {
  margin-bottom: 14px;
  padding: 24px 30px;
  border: 1px solid #ead3c9;
  border-radius: 12px;
  background: #fffefb;
}

.editorial-long-card h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 500;
  line-height: 1;
}

.editorial-long-card p,
.editorial-long-card li {
  font-size: clamp(16px, 1.42vw, 20px);
  line-height: 1.45;
}

.editorial-long-card p + p {
  margin-top: 12px;
}

.editorial-long-card ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 24px;
}

.editorial-long-card li::marker {
  color: var(--edit-red);
}

.editorial-footer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dotted var(--edit-line);
  text-align: center;
}

.editorial-footer div {
  margin-bottom: 12px;
}

.editorial-footer p {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.gmail-preview-frame {
  width: 100%;
  height: min(720px, 76svh);
  border: 1px solid var(--taupe);
  border-radius: 8px;
  background: var(--cream);
}

.saved-newsletter-list {
  display: grid;
  gap: 12px;
}

.saved-newsletter-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  background: rgba(255, 253, 249, 0.72);
  border: 1px solid rgba(184, 169, 154, 0.54);
  border-radius: 8px;
}

.saved-newsletter-row.active {
  background: rgba(168, 184, 160, 0.22);
  border-color: var(--sage);
}

.saved-newsletter-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.table-list {
  display: grid;
  gap: 12px;
}

.list-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: rgba(255, 253, 249, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}

.stat {
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
}

.bar-row {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) 44px;
  gap: 10px;
  align-items: center;
  margin: 10px 0;
}

.bar-track {
  height: 10px;
  background: var(--beige);
  border-radius: 999px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: var(--rose);
}

.export-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}

.export-preview iframe,
.export-preview textarea {
  width: 100%;
  height: 520px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.export-preview textarea {
  resize: vertical;
  padding: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
}

.empty-state {
  padding: 28px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  text-align: center;
  color: var(--muted);
}

.newsletter-action-row {
  width: min(660px, 100%);
  margin: 18px auto 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--ink);
}

.newsletter-action-row .eyebrow {
  margin-bottom: 2px;
}

.newsletter-frame {
  width: min(660px, 100%);
  margin: 0 auto 56px;
  background: var(--cream);
  border: 5px solid var(--sage);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.42;
  box-shadow: 0 16px 34px rgba(58, 46, 40, 0.1);
}

.newsletter-panel {
  padding: 18px 16px 22px;
  background: var(--surface);
  border-top: 7px solid var(--sage);
}

.newsletter-panel:first-child {
  border-top: 0;
}

.newsletter-masthead {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  align-items: stretch;
  margin-bottom: 28px;
  background: var(--sage);
}

.newsletter-thumb {
  position: relative;
  min-height: 124px;
  overflow: hidden;
  background: var(--ink);
}

.newsletter-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--cream);
}

.newsletter-thumb span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  padding: 5px 4px;
  background: rgba(58, 46, 40, 0.92);
  color: var(--cream);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.03em;
}

.newsletter-title-block {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: var(--sage);
  color: var(--ink);
}

.newsletter-mark {
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 4px solid rgba(58, 46, 40, 0.28);
  border-radius: 50%;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 800;
}

.newsletter-title-block h1 {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(30px, 4.6vw, 44px);
  font-weight: 800;
  line-height: 1;
}

.newsletter-copy p,
.newsletter-panel p {
  margin: 0 0 18px;
}

.newsletter-copy p:last-child,
.newsletter-panel p:last-child {
  margin-bottom: 0;
}

.newsletter-section-title {
  margin: 0 0 20px;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.newsletter-panel h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
}

.newsletter-feature-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  margin: 0 0 28px;
  background: var(--beige);
}

.newsletter-list {
  margin: 0;
  padding-left: 22px;
}

.newsletter-list li {
  margin: 0 0 8px;
}

.newsletter-save-grid {
  display: grid;
  gap: 18px;
}

.newsletter-save-grid > div {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.newsletter-save-grid > div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.newsletter-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.newsletter-disclosure {
  background: var(--surface);
  font-size: 14px;
  line-height: 1.6;
}

.newsletter-footer {
  background: var(--cream);
  text-align: center;
  font-size: 15px;
}

.hl {
  background: rgba(201, 143, 131, 0.26);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0 2px;
  font-weight: 800;
}

.newsletter-link {
  color: var(--link);
  font-style: italic;
  font-weight: 800;
  text-decoration: underline;
}

.notice {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--muted);
}

.login-card {
  width: min(520px, 100%);
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.login-card h1 {
  font-size: 42px;
}

.login-help {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 17px;
}

.login-card form {
  display: grid;
  gap: 12px;
  text-align: left;
}

@media (max-width: 940px) {
  .topbar {
    position: static;
    grid-template-columns: 1fr;
  }

  .admin-frame,
  .issue-layout,
  .export-preview {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  }

  .section-header,
  .page-header,
  .builder-header,
  .list-row {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .builder-header {
    flex-direction: column;
  }

  .builder-meta-grid,
  .builder-add-row {
    grid-template-columns: 1fr;
  }

  .builder-command-bar {
    position: static;
    flex-direction: column;
    align-items: stretch;
  }

  .builder-command-actions {
    justify-content: stretch;
  }

  .builder-command-actions .button {
    flex: 1 1 120px;
  }

  .simple-newsletter-app .builder-meta-grid {
    grid-template-columns: 1fr;
  }

  .simple-newsletter-app .builder-add-row {
    grid-template-columns: 1fr;
  }

  .builder-heading-row {
    flex-direction: column;
  }

  .website-article-heading,
  .simple-builder-bottom-actions {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .website-article-actions {
    justify-content: flex-start;
  }

  .website-article-grid {
    grid-template-columns: 1fr;
  }

  .seo-sharing-inner,
  .seo-previews {
    grid-template-columns: 1fr;
  }

  .seo-sharing-section > summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .seo-sharing-section > summary small {
    text-align: left;
  }

  .article-url-preview {
    align-items: stretch;
    flex-direction: column;
  }

  .article-url-preview a {
    flex-basis: auto;
  }

  .article-url-preview .button {
    width: 100%;
  }

  .builder-check.compact {
    width: 100%;
  }

  .one-page-builder-header {
    align-items: stretch;
    flex-direction: column;
  }

  .one-page-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .one-page-actions .button {
    width: auto;
    min-width: 0;
  }

  .builder-heading-row .button {
    width: 100%;
  }

  .editorial-spread {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .editorial-read-grid {
    grid-template-columns: 1fr;
  }

  .editorial-read-card,
  .editorial-read-card.has-image,
  .editorial-read-card.has-image.image-first {
    grid-template-columns: 1fr;
  }

  .editorial-read-card.is-wide {
    grid-column: auto;
  }

  .editorial-page {
    min-height: 720px;
  }

  .saved-newsletter-row {
    grid-template-columns: 1fr;
  }

  .saved-newsletter-actions,
  .saved-newsletter-actions .button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .public-main,
  .admin-frame {
    width: min(calc(100% - 22px), 1180px);
  }

  .builder-section-group,
  .builder-section-jump-list {
    min-width: 0;
  }

  .builder-section-jump-list .chip {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    text-align: left;
  }

  .hero {
    min-height: 62svh;
    padding: 72px 18px 34px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .builder-shell,
  .builder-section {
    padding: 12px;
  }

  .one-page-builder-header {
    padding: 8px;
  }

  .one-page-builder-header h1 {
    font-size: 24px;
  }

  .one-page-builder-header .muted {
    display: none;
  }

  .one-page-actions {
    gap: 6px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .creator-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .creator-steps div {
    min-height: 54px;
    padding: 9px;
  }

  .creator-steps strong {
    width: 28px;
    height: 28px;
  }

  .creator-steps span {
    font-size: 12px;
  }

  .one-page-actions .button {
    min-height: 34px;
    padding: 7px 8px;
    font-size: 12px;
  }

  .editorial-preview-panel {
    padding: 0;
  }

  .editorial-page {
    min-height: 520px;
    padding: 10px;
    font-size: 8px;
    line-height: 1.22;
  }

  .editorial-topline,
  .editorial-note {
    gap: 4px;
  }

  .editorial-topline {
    grid-template-columns: 22px minmax(0, 1fr) 42px;
    gap: 4px;
    margin-bottom: 7px;
    font-size: 5px;
  }

  .editorial-dots {
    gap: 3px;
  }

  .editorial-dots span {
    width: 2px;
    height: 2px;
  }

  .editorial-hero h1 {
    font-size: clamp(18px, 4.7vw, 27px);
  }

  .editorial-heart,
  .editorial-second-header div,
  .editorial-footer div {
    font-size: 10px;
  }

  .editorial-hero p {
    margin-top: 4px;
    font-size: 7px;
  }

  .editorial-issue-line {
    gap: 5px;
    margin-top: 5px;
    padding: 3px 0;
    font-size: 4px;
    letter-spacing: 0.11em;
  }

  .editorial-note {
    grid-template-columns: 52px minmax(0, 1fr);
    margin: 6px 0 7px;
    padding: 6px;
    border-radius: 5px;
  }

  .editorial-note h2 {
    font-size: 8px;
  }

  .editorial-note p {
    font-size: 4.8px;
    line-height: 1.25;
  }

  .editorial-corner-heart {
    right: 6px;
    bottom: 3px;
    font-size: 7px;
  }

  .editorial-section-intro {
    gap: 6px;
    margin-bottom: 5px;
  }

  .editorial-section-intro h2,
  .editorial-mini-section h2,
  .editorial-recipe-card h2,
  .editorial-otto-card h2,
  .editorial-reminder h2 {
    gap: 3px;
    font-size: 10px;
  }

  .editorial-section-intro p,
  .editorial-mini-section > p,
  .editorial-recipe-card p,
  .editorial-otto-card p,
  .editorial-reminder p {
    font-size: 5px;
  }

  .editorial-product-grid {
    gap: 6px;
  }

  .editorial-product-card {
    grid-template-columns: minmax(42px, 0.38fr) minmax(0, 1fr);
    min-height: 58px;
    border-radius: 4px;
  }

  .editorial-product-image img {
    min-height: 58px;
  }

  .editorial-product-image span {
    top: 4px;
    left: 4px;
    max-width: 32px;
    padding: 2px 3px;
    border-radius: 3px;
    font-size: 4px;
  }

  .editorial-product-card h3,
  .editorial-mini-card h3 {
    font-size: 8px;
  }

  .editorial-product-copy {
    padding: 4px;
  }

  .editorial-product-text {
    margin-top: 2px;
  }

  .editorial-product-card p,
  .editorial-mini-card p {
    font-size: 4.7px;
  }

  .editorial-product-card a,
  .editorial-mini-card a {
    font-size: 4.8px;
  }

  .editorial-product-card .editorial-product-copy > a {
    padding-top: 2px;
  }

  .editorial-mini-card a {
    padding: 3px 4px 5px;
  }

  .editorial-two-up {
    gap: 7px;
    margin-top: 7px;
  }

  .editorial-mini-card {
    margin-top: 4px;
    padding: 3px;
    border-radius: 4px;
  }

  .editorial-mini-card h3,
  .editorial-mini-card p,
  .editorial-mini-card a {
    padding-left: 0;
  }

  .editorial-recipe-card {
    gap: 7px;
    margin-top: 7px;
  }

  .editorial-recipe-photo img {
    border-radius: 4px;
  }

  .editorial-bottom-row {
    gap: 7px;
    margin-top: 6px;
  }

  .editorial-otto-card {
    gap: 5px;
  }

  .editorial-polaroid {
    padding: 3px;
  }

  .editorial-otto-card strong {
    margin-top: 3px;
    font-size: 8px;
  }

  .editorial-reminder {
    min-height: 54px;
    padding: 7px;
    border-radius: 4px;
  }

  .editorial-reminder h2 {
    font-size: 7px;
  }

  .editorial-page-two {
    padding-top: 18px;
  }

  .editorial-second-header {
    margin-bottom: 8px;
    padding-bottom: 7px;
  }

  .editorial-second-header p {
    font-size: 7px;
    letter-spacing: 0.28em;
  }

  .editorial-second-header div {
    margin-top: 5px;
  }

  .editorial-long-card {
    margin-bottom: 6px;
    padding: 10px 12px;
    border-radius: 6px;
  }

  .editorial-long-card h2 {
    margin-bottom: 5px;
    font-size: 15px;
  }

  .editorial-long-card p,
  .editorial-long-card li {
    font-size: 7.2px;
    line-height: 1.34;
  }

  .editorial-long-card p + p {
    margin-top: 5px;
  }

  .editorial-long-card ul {
    gap: 3px;
    margin-top: 6px;
    padding-left: 10px;
  }

  .editorial-footer {
    margin-top: 7px;
    padding-top: 6px;
  }

  .editorial-footer div {
    margin-bottom: 5px;
  }

  .editorial-footer p {
    gap: 6px;
    font-size: 4px;
    letter-spacing: 0.12em;
  }

  .editorial-mini-card {
    grid-template-columns: 44% minmax(0, 1fr);
  }

  .search-form,
  .hero-actions,
  .toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .search-form button {
    width: 100%;
  }
}

.builder-heading-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(340px, 100%);
}

.builder-heading-actions .button {
  width: auto;
}

.public-newsletter-main {
  width: min(calc(100% - 12px), 940px);
  padding-top: 8px;
}

.public-newsletter-main .nav-pills {
  width: min(760px, 100%);
  margin-bottom: 10px;
}

.public-editorial-shell {
  width: 100%;
}

.public-editorial-shell .editorial-preview-panel {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
}

.public-editorial-shell .editorial-spread {
  width: min(760px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
}

.public-editorial-shell .editorial-page {
  min-height: auto;
  padding: clamp(22px, 4vw, 42px);
  font-size: clamp(13px, 1.8vw, 16px);
  line-height: 1.32;
}

.public-editorial-shell .editorial-topline {
  grid-template-columns: 72px minmax(0, 1fr) 112px;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 13px;
}

.public-editorial-shell .editorial-dots {
  gap: 7px;
}

.public-editorial-shell .editorial-dots span {
  width: 5px;
  height: 5px;
}

.public-editorial-shell .editorial-hero h1 {
  font-size: clamp(44px, 8vw, 84px);
  line-height: 0.9;
}

.public-editorial-shell .editorial-heart,
.public-editorial-shell .editorial-second-header div,
.public-editorial-shell .editorial-footer div {
  font-size: 23px;
}

.public-editorial-shell .editorial-hero p {
  margin-top: 8px;
  font-size: clamp(15px, 2.3vw, 18px);
}

.public-editorial-shell .editorial-issue-line {
  gap: 14px;
  margin-top: 14px;
  padding: 8px 0;
  font-size: 11px;
  letter-spacing: 0.14em;
}

.public-editorial-shell .editorial-note {
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px;
  margin: 14px 0 16px;
  padding: 15px 18px;
  border-radius: 9px;
}

.public-editorial-shell .editorial-note h2 {
  font-size: 19px;
}

.public-editorial-shell .editorial-note p {
  font-size: 11px;
  line-height: 1.38;
}

.public-editorial-shell .editorial-corner-heart {
  right: 18px;
  bottom: 10px;
  font-size: 16px;
}

.public-editorial-shell .editorial-section-intro {
  display: flex;
  gap: 18px;
  align-items: end;
  margin-bottom: 10px;
}

.public-editorial-shell .editorial-section-intro h2,
.public-editorial-shell .editorial-mini-section h2,
.public-editorial-shell .editorial-recipe-card h2,
.public-editorial-shell .editorial-otto-card h2,
.public-editorial-shell .editorial-reminder h2 {
  gap: 8px;
  font-size: 22px;
}

.public-editorial-shell .editorial-section-intro p,
.public-editorial-shell .editorial-mini-section > p,
.public-editorial-shell .editorial-recipe-card p,
.public-editorial-shell .editorial-otto-card p,
.public-editorial-shell .editorial-reminder p {
  font-size: 12px;
}

.public-editorial-shell .editorial-product-grid {
  grid-template-columns: 1fr;
  gap: 12px;
}

.public-editorial-shell .editorial-product-card {
  display: grid;
  grid-template-columns: minmax(118px, 0.42fr) minmax(0, 1fr);
  min-height: 124px;
  border-radius: 8px;
}

.public-editorial-shell .editorial-product-image img {
  height: 100%;
  min-height: 124px;
}

.public-editorial-shell .editorial-product-copy {
  display: flex;
  flex-direction: column;
  padding: 10px 12px 12px;
}

.public-editorial-shell .editorial-product-card h3,
.public-editorial-shell .editorial-mini-card h3 {
  font-size: 18px;
}

.public-editorial-shell .editorial-product-card h3 {
  padding: 0;
}

.public-editorial-shell .editorial-product-card p,
.public-editorial-shell .editorial-mini-card p {
  font-size: 11px;
}

.public-editorial-shell .editorial-product-card p {
  padding: 0;
}

.public-editorial-shell .editorial-product-card a,
.public-editorial-shell .editorial-mini-card a {
  font-size: 11px;
}

.public-editorial-shell .editorial-product-card .editorial-product-copy > a {
  margin-top: auto;
  padding: 8px 0 0;
}

.public-editorial-shell .editorial-mini-card a {
  padding: 8px 10px 12px;
}

.public-editorial-shell .editorial-two-up {
  gap: 18px;
  margin-top: 18px;
}

.public-editorial-shell .editorial-mini-card {
  margin-top: 9px;
  padding: 12px 14px;
  border-radius: 8px;
}

.public-editorial-shell .editorial-mini-card > div {
  padding: 0;
}

.public-editorial-shell .editorial-mini-copy p {
  padding: 0;
  font-size: 13px;
  line-height: 1.34;
}

.public-editorial-shell .editorial-mini-card h3,
.public-editorial-shell .editorial-mini-card p,
.public-editorial-shell .editorial-mini-card a {
  padding-left: 0;
}

.public-editorial-shell .editorial-recipe-card {
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
}

.public-editorial-shell .editorial-recipe-photo img {
  border-radius: 8px;
}

.public-editorial-shell .editorial-recipe-copy p {
  font-size: 13px;
  line-height: 1.34;
}

.public-editorial-shell .editorial-otto-card {
  grid-template-columns: minmax(130px, 0.46fr) minmax(0, 1fr);
  gap: 16px;
}

.public-editorial-shell .editorial-polaroid {
  padding: 9px;
}

.public-editorial-shell .editorial-otto-card strong {
  margin-top: 8px;
  font-size: 20px;
}

.public-editorial-shell .editorial-reminder {
  min-height: 128px;
  padding: 18px;
  border-radius: 8px;
}

.public-editorial-shell .editorial-quote-card {
  min-height: auto;
  margin: 14px 0;
  padding: 18px 22px;
}

.public-editorial-shell .editorial-quote-card p {
  max-width: 420px;
  font-size: 17px;
  line-height: 1.25;
}

.public-editorial-shell .editorial-reminder h2 {
  font-size: 18px;
}

.public-editorial-shell .editorial-page-two {
  padding-top: clamp(28px, 5vw, 48px);
}

.public-editorial-shell .editorial-second-header p {
  font-size: 18px;
  letter-spacing: 0.44em;
}

.public-editorial-shell .editorial-long-card {
  margin-bottom: 14px;
  padding: 24px 30px;
  border-radius: 12px;
}

.public-editorial-shell .editorial-long-card h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 5vw, 42px);
}

.public-editorial-shell .editorial-long-card p,
.public-editorial-shell .editorial-long-card li {
  font-size: clamp(16px, 2.4vw, 20px);
  line-height: 1.45;
}

.public-editorial-actions {
  width: min(760px, 100%);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 22px auto 0;
}

.editorial-page a.editorial-clean-link,
.public-editorial-shell a.editorial-clean-link {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  padding: 0;
  text-decoration: none;
}

.editorial-page a.editorial-clean-link:hover,
.public-editorial-shell a.editorial-clean-link:hover {
  color: inherit;
  text-decoration: none;
}

.editorial-page a.editorial-image-link,
.public-editorial-shell a.editorial-image-link {
  display: block;
}

.public-edit-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  box-shadow: 0 10px 24px rgba(58, 46, 40, 0.18);
}

.creator-issue-toolbar {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  max-width: min(460px, calc(100vw - 32px));
  padding: 8px;
  border: 1px solid rgba(184, 169, 154, 0.55);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.94);
  box-shadow: 0 12px 28px rgba(58, 46, 40, 0.14);
}

.creator-issue-toolbar .button {
  min-height: 38px;
  padding: 9px 12px;
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 520px) {
  .creator-issue-toolbar {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .creator-issue-toolbar .button {
    flex: 1 1 auto;
  }

  .public-editorial-shell .editorial-page {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 22px;
  }

  .public-editorial-shell .editorial-spread {
    width: 100%;
    max-width: 100%;
  }

  .public-editorial-shell .editorial-topline {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .public-editorial-shell .editorial-topline a {
    text-align: center;
  }

  .public-editorial-shell .editorial-hero h1 {
    max-width: 8em;
    margin-right: auto;
    margin-left: auto;
    font-size: 38px;
    line-height: 0.96;
    overflow-wrap: break-word;
  }

  .public-editorial-shell .editorial-hero p {
    max-width: 30ch;
    margin-right: auto;
    margin-left: auto;
  }

  .public-editorial-shell .editorial-product-grid,
  .public-editorial-shell .editorial-two-up,
  .public-editorial-shell .editorial-bottom-row {
    grid-template-columns: 1fr;
  }

  .public-editorial-shell .editorial-section-intro,
  .public-editorial-shell .editorial-note {
    display: grid;
    grid-template-columns: 1fr;
  }
}

.public-home-main,
.public-site-main {
  --home-bg: #ffffff;
  --home-card: #ffffff;
  --home-card-warm: #fffdf9;
  --home-text: #1f1713;
  --home-muted: #4a3830;
  --home-accent: #b24730;
  --home-accent-hover: #b83a24;
  --home-border: #e8b7a6;
  --home-border-soft: #e5d8cf;
  --home-divider: #e6a897;
  --home-sage: #7d8b4b;
  width: 100%;
  max-width: none;
  padding: 0 0 70px;
  background: var(--home-bg);
  color: var(--home-text);
}

.home-page,
.article-reader-page,
.recipes-page {
  --home-bg: #ffffff;
  --home-card: #ffffff;
  --home-card-warm: #fffdf9;
  --home-text: #1f1713;
  --home-muted: #4a3830;
  --home-accent: #b24730;
  --home-accent-hover: #b83a24;
  --home-border: #e8b7a6;
  --home-border-soft: #e5d8cf;
  --home-divider: #e6a897;
  --home-sage: #7d8b4b;
  min-height: 100svh;
  margin: 0;
  padding: 24px clamp(10px, 2vw, 36px) 0;
  background: var(--home-bg);
  color: var(--home-text);
}

.home-masthead {
  position: relative;
  display: grid;
  gap: 6px;
  justify-items: center;
  padding: 12px 0 14px;
  border-bottom: 1px solid var(--home-border-soft);
  background: #ffffff;
}

.home-wordmark {
  color: var(--home-text);
  font-family: var(--serif);
  font-size: clamp(28px, 4.6vw, 52px);
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 0.95;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.home-heart {
  color: var(--home-accent);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1;
}

.home-tagline {
  position: static;
  max-width: none;
  margin: 0 0 4px;
  color: var(--home-muted);
  font-family: var(--serif);
  font-size: clamp(12px, 1.35vw, 15px);
  font-style: italic;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.home-nav-row {
  position: relative;
  width: min(1500px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.home-menu-toggle {
  display: none;
  gap: 9px;
  align-items: center;
  border: 0;
  padding: 8px 0;
  background: transparent;
  color: var(--home-text);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.home-menu-icon {
  display: grid;
  gap: 5px;
  width: 20px;
}

.home-menu-icon span {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform 160ms ease;
}

.home-menu-toggle[aria-expanded="true"] .home-menu-icon span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.home-menu-toggle[aria-expanded="true"] .home-menu-icon span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.home-nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px clamp(10px, 1.5vw, 18px);
  align-items: center;
  justify-content: center;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  padding-bottom: 2px;
  color: var(--home-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  scrollbar-width: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-nav::-webkit-scrollbar {
  display: none;
}

.home-utility-links {
  justify-self: end;
  display: flex;
  gap: 14px;
  align-items: center;
  color: var(--home-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-nav a {
  color: inherit;
  text-decoration: none;
}

.home-utility-links a {
  color: inherit;
  text-decoration: none;
}

.home-nav a:hover {
  color: var(--home-accent);
}

.home-utility-links a:hover {
  color: var(--home-accent);
}

.home-nav-subscribe {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--home-text);
  border-radius: 999px;
  padding: 7px 13px;
  background: var(--home-text);
  color: #ffffff !important;
}

.home-nav-subscribe:hover {
  border-color: var(--home-accent);
  background: var(--home-accent);
  color: #ffffff !important;
}

.home-intro-panel {
  width: min(980px, 100%);
  margin: 34px auto 42px;
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
}

.home-intro-panel h1 {
  max-width: 880px;
  margin: 0;
  color: var(--home-text);
  font-family: var(--serif);
  font-size: clamp(38px, 5.6vw, 72px);
  font-weight: 500;
  line-height: 0.98;
  text-wrap: balance;
}

.home-intro-panel p {
  max-width: 720px;
  margin: 0;
  color: var(--home-muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.45;
}

.home-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 6px;
}

.home-intro-actions .button {
  width: auto;
}

.home-starter-guide {
  width: min(1500px, 100%);
  margin: 0 auto clamp(52px, 6vw, 78px);
}

.home-starter-intro {
  max-width: 780px;
  margin: clamp(18px, 2vw, 28px) auto clamp(24px, 3vw, 38px);
  color: var(--home-muted);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.35;
  text-align: center;
}

.home-starter-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
  gap: clamp(22px, 2.4vw, 36px);
  align-items: stretch;
}

.home-starter-card,
.home-starter-list {
  overflow: hidden;
  border: 1px solid var(--home-border-soft);
  border-radius: 8px;
  background: var(--home-card);
}

.home-starter-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.home-starter-media {
  display: grid;
  grid-template-columns: 0.84fr 1fr 0.72fr;
  min-height: clamp(340px, 31vw, 520px);
  overflow: hidden;
  background: #f3ebe4;
  color: inherit;
  text-decoration: none;
}

.home-starter-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.03);
}

.home-starter-media img:nth-child(1) {
  object-position: center;
}

.home-starter-media img:nth-child(2) {
  object-position: center;
}

.home-starter-media img:nth-child(3) {
  object-position: center;
}

.home-starter-copy {
  display: grid;
  gap: clamp(14px, 2vw, 22px);
  justify-items: center;
  align-content: center;
  padding: clamp(34px, 5vw, 70px) clamp(24px, 5vw, 74px);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(255, 255, 255, 0.98)),
    var(--home-card-warm);
  text-align: center;
}

.home-starter-copy h1 {
  max-width: 760px;
  margin: 0;
  color: var(--home-text);
  font-family: var(--serif);
  font-size: clamp(48px, 5.4vw, 82px);
  font-weight: 500;
  line-height: 0.98;
  text-wrap: balance;
}

.home-starter-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 0;
  color: var(--home-muted);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.48;
}

.home-starter-rule {
  width: min(620px, 100%);
  height: 1px;
  margin: clamp(6px, 1vw, 12px) 0;
  background: var(--home-border-soft);
}

.home-starter-button {
  min-width: min(286px, 100%);
  min-height: 56px;
  display: inline-flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--home-accent-hover);
  border-radius: 0;
  padding: 14px 24px;
  background: var(--home-accent);
  color: #fffdfa;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.home-starter-button:hover {
  background: var(--home-accent-hover);
}

.home-starter-button span {
  font-size: 22px;
  line-height: 1;
}

.home-starter-list {
  display: grid;
  align-content: stretch;
}

.home-starter-row {
  display: grid;
  grid-template-columns: minmax(128px, 190px) minmax(0, 1fr) auto 5px;
  gap: clamp(18px, 2vw, 28px);
  align-items: center;
  min-height: clamp(156px, 16vw, 202px);
  padding: clamp(20px, 2vw, 28px) clamp(22px, 2.4vw, 34px);
  border-bottom: 1px solid var(--home-border-soft);
  background: rgba(255, 255, 255, 0.72);
}

.home-starter-row:last-child {
  border-bottom: 0;
}

.home-starter-thumb {
  display: block;
  overflow: hidden;
  height: clamp(112px, 10vw, 142px);
  border-radius: 6px;
  background: #f3ebe4;
  color: inherit;
  text-decoration: none;
}

.home-starter-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.03);
}

.home-starter-row-copy {
  min-width: 0;
}

.home-starter-category {
  margin: 0 0 8px;
  color: var(--home-accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.home-starter-row h2 {
  margin: 0;
  color: var(--home-text);
  font-family: var(--serif);
  font-size: clamp(26px, 2.5vw, 40px);
  font-weight: 500;
  line-height: 1.05;
  text-wrap: balance;
}

.home-starter-row h2 a {
  color: inherit;
  text-decoration: none;
}

.home-starter-row-copy > p:not(.home-starter-category) {
  margin: 12px 0 0;
  color: var(--home-muted);
  font-size: 15px;
  line-height: 1.42;
}

.home-starter-date {
  align-self: center;
  color: var(--home-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-starter-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--home-accent);
}

.home-latest-issue-lead {
  width: min(1500px, 100%);
  margin: clamp(32px, 4vw, 56px) auto 0;
}

.home-editorial-grid {
  display: grid;
  grid-template-columns: minmax(230px, 0.68fr) minmax(480px, 1.58fr) minmax(230px, 0.68fr);
  gap: 0;
  align-items: stretch;
  width: 100%;
  margin: 0;
  padding-bottom: clamp(42px, 5vw, 66px);
  border-bottom: 1px solid var(--home-border-soft);
}

.home-editorial-grid.home-editorial-grid-single {
  grid-template-columns: 1fr;
  gap: 0;
  width: min(1240px, 100%);
  margin: 0 auto;
  padding-bottom: 0;
  border-bottom: 0;
}

.home-editorial-grid-single .home-issue-feature {
  padding-right: 0;
  padding-left: 0;
  border-right: 0;
  border-left: 0;
}

.home-latest-issue-lead + .home-feed-section {
  margin-top: 0;
}

.home-side-stack {
  display: grid;
  align-content: start;
  gap: clamp(26px, 3vw, 36px);
  padding: 0 clamp(18px, 2.2vw, 38px);
}

.home-side-stack:first-child {
  padding-left: 0;
}

.home-side-stack:last-child {
  padding-right: 0;
}

.home-issue-card,
.home-category-card,
.home-mini-link,
.home-signup-section {
  border: 1px solid var(--home-border-soft);
  border-radius: 8px;
  background: var(--home-card);
}

.home-feature-card,
.home-issue-feature,
.home-issue-card {
  overflow: visible;
}

.home-feature-card {
  display: grid;
  gap: 0;
  min-height: 0;
  padding-bottom: clamp(28px, 3vw, 38px);
  border-bottom: 1px solid var(--home-border-soft);
  background: transparent;
}

.home-side-stack .home-feature-card:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.home-card-image,
.home-issue-image {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  background: #f3ebe4;
  text-decoration: none;
}

.home-card-image img,
.home-issue-image img {
  width: 100%;
  height: clamp(188px, 15vw, 236px);
  object-fit: cover;
  filter: saturate(0.96) contrast(1.03);
}

.home-feature-card.compact .home-card-image img {
  height: clamp(174px, 12.5vw, 216px);
}

.home-card-copy,
.home-issue-copy,
.home-issue-card {
  display: grid;
  gap: 10px;
}

.home-card-copy {
  padding: 16px 0 0;
}

.home-issue-card {
  padding: 18px;
}

.home-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--home-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-feature-card h3,
.home-issue-card h3 {
  margin: 0;
  color: var(--home-text);
  font-size: 24px;
  line-height: 1.02;
  text-wrap: balance;
}

.home-feature-card h3 a,
.home-issue-card h3 a,
.home-issue-feature h1 a {
  color: inherit;
  text-decoration: none;
}

.home-feature-card p,
.home-issue-card p,
.home-issue-feature p {
  margin: 0;
  color: var(--home-muted);
}

.home-issue-feature {
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
  min-height: 100%;
  padding: 0 clamp(22px, 3vw, 50px);
  border-right: 1px solid var(--home-border-soft);
  border-left: 1px solid var(--home-border-soft);
  background: transparent;
}

.home-issue-image img {
  height: clamp(360px, 38vw, 540px);
  min-height: 0;
}

.home-issue-copy {
  gap: clamp(22px, 2.5vw, 36px);
  padding: clamp(58px, 6vw, 92px) clamp(16px, 2.5vw, 36px) clamp(68px, 7vw, 104px);
  text-align: center;
}

.home-issue-overline {
  width: 100%;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--home-border-soft);
}

.home-issue-copy .eyebrow {
  margin: 0;
  color: var(--home-accent);
  font-size: 11px;
  letter-spacing: 0.2em;
  white-space: nowrap;
}

.home-issue-kicker {
  justify-self: end;
  max-width: 100%;
  color: var(--home-muted);
  font-size: clamp(10px, 0.8vw, 12px);
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
}

.home-issue-copy h1 {
  justify-self: center;
  max-width: 1180px;
  margin: 0;
  color: var(--home-text);
  font-family: var(--serif);
  font-size: clamp(58px, 7.4vw, 96px);
  font-weight: 500;
  line-height: 1.04;
  text-wrap: balance;
}

.home-issue-copy .button,
.home-issue-card .button {
  justify-self: center;
  width: auto;
}

.home-issue-dek {
  max-width: 900px;
  justify-self: center;
  color: var(--home-muted);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.65;
}

.home-issue-meta {
  justify-content: center;
  color: var(--home-text);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.home-issue-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 9px;
  justify-content: center;
  align-items: center;
  margin-top: 1px;
  color: var(--home-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.25;
  text-transform: uppercase;
}

.home-issue-tag {
  display: inline-flex;
  align-items: center;
}

.home-issue-tag-divider {
  color: var(--home-accent);
  opacity: 0.58;
}

.home-issue-cta {
  justify-self: center;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: clamp(4px, 0.8vw, 10px);
  border-bottom: 1px solid currentColor;
  padding: 0 0 6px;
  color: var(--home-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.home-issue-cta:hover {
  color: var(--home-accent-hover);
}

.home-section {
  width: min(1500px, 100%);
  margin: 54px auto 0;
  padding: clamp(26px, 4vw, 44px) 0 0;
  border-top: 1px solid var(--home-border-soft);
  background: transparent;
}

.home-showcase-section {
  width: min(1500px, 100%);
  margin: 58px auto 0;
  padding: clamp(26px, 4vw, 44px) 0 0;
  border-top: 1px solid var(--home-border-soft);
  background: transparent;
}

.home-section-heading {
  display: flex;
  gap: 18px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 20px;
}

.home-section-heading h2 {
  margin: 0 0 6px;
  color: var(--home-text);
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1;
  text-wrap: balance;
}

.home-section-heading p {
  max-width: 640px;
  margin: 0;
  color: var(--home-muted);
}

.home-feed-heading {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.home-feed-heading h2 {
  margin: 0;
  color: var(--home-text);
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 500;
  line-height: 1;
  text-wrap: balance;
}

.home-feed-heading > div {
  display: flex;
  gap: 20px;
  align-items: center;
}

.home-feed-heading .text-link,
.home-feed-search {
  color: var(--home-text);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-feed-search {
  color: var(--home-muted);
}

.home-feed-grid {
  display: grid;
  gap: 26px;
}

.home-feed-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-feed-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-feed-grid .home-feature-card {
  border-bottom: 0;
  padding-bottom: 0;
}

.home-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.04fr);
  gap: clamp(24px, 3vw, 38px);
  align-items: start;
}

.home-showcase-feature {
  display: grid;
  gap: 24px;
  text-align: center;
}

.home-showcase-feature-media,
.home-feature-collage,
.home-showcase-thumb,
.home-rail-image {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  background: #f3ebe4;
  color: inherit;
  text-decoration: none;
}

.home-showcase-feature-media img {
  width: 100%;
  height: clamp(360px, 32vw, 520px);
  object-fit: cover;
}

.home-feature-collage {
  display: grid;
  grid-template-columns: 1fr 1.1fr 0.55fr;
  height: clamp(360px, 32vw, 520px);
}

.home-feature-collage img,
.home-showcase-thumb img,
.home-rail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-showcase-feature h3,
.home-showcase-row h3,
.home-rail-card h3 {
  margin: 0;
  color: var(--home-text);
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
  text-wrap: balance;
}

.home-showcase-feature h3 {
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(38px, 5vw, 62px);
}

.home-showcase-feature h3 a,
.home-showcase-row h3 a,
.home-rail-card h3 a {
  color: inherit;
  text-decoration: none;
}

.home-showcase-feature p,
.home-showcase-row p,
.home-rail-card p {
  margin: 8px 0 0;
  color: var(--home-muted);
}

.home-showcase-feature p {
  font-size: clamp(18px, 2vw, 24px);
}

.home-showcase-meta {
  justify-content: center;
  margin-top: 14px;
}

.home-showcase-list {
  display: grid;
  border-left: 1px solid var(--home-border-soft);
  padding-left: clamp(24px, 3vw, 38px);
}

.home-showcase-section.reverse .home-showcase-list {
  border-right: 1px solid var(--home-border-soft);
  border-left: 0;
  padding-right: clamp(24px, 3vw, 38px);
  padding-left: 0;
}

.home-showcase-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(120px, 210px);
  gap: 24px;
  align-items: center;
  padding: 0 0 30px;
  border-bottom: 1px solid var(--home-border-soft);
}

.home-showcase-row + .home-showcase-row {
  padding-top: 30px;
}

.home-showcase-row:last-child {
  border-bottom: 0;
}

.home-showcase-row h3 {
  font-size: clamp(24px, 3vw, 34px);
}

.home-showcase-thumb {
  height: 136px;
}

.home-rail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 38px);
}

.home-rail-card {
  display: grid;
  gap: 12px;
}

.home-rail-image {
  height: clamp(190px, 20vw, 285px);
}

.home-rail-card h3 {
  font-size: clamp(24px, 3vw, 34px);
}

.home-card-grid {
  display: grid;
  gap: 18px;
}

.home-card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.home-category-card {
  min-height: 132px;
  display: grid;
  align-content: space-between;
  padding: 16px;
  color: var(--home-text);
  text-decoration: none;
}

.home-category-card span {
  color: var(--home-accent);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
}

.home-category-card p {
  margin: 14px 0 0;
  color: var(--home-muted);
  font-size: 14px;
}

.home-category-card:hover,
.home-mini-link:hover,
.home-feature-card:hover,
.home-issue-card:hover {
  border-color: var(--home-border);
}

.home-split-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.home-split-section .home-section-heading {
  align-items: start;
  margin-bottom: 14px;
}

.home-mini-list {
  display: grid;
  gap: 10px;
}

.home-mini-link {
  display: grid;
  gap: 5px;
  padding: 16px;
  color: var(--home-text);
  text-decoration: none;
}

.home-mini-link span {
  color: var(--home-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-mini-link strong {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.05;
}

.home-mini-link em {
  color: var(--home-muted);
  font-style: normal;
}

.home-signup-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.58fr);
  gap: clamp(32px, 5.5vw, 94px);
  align-items: center;
  width: min(1500px, 100%);
  margin: clamp(54px, 7vw, 92px) auto 0;
  padding: clamp(34px, 5vw, 72px) clamp(18px, 4vw, 52px);
  border-width: 1px 0;
  border-radius: 0;
  background:
    linear-gradient(110deg, rgba(255, 253, 249, 0.98), rgba(255, 255, 255, 0.72) 52%, rgba(168, 184, 160, 0.13)),
    var(--home-bg);
}

.home-signup-section::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: min(184px, 34%);
  height: 2px;
  background: var(--home-accent);
}

.home-signup-copy {
  display: grid;
  gap: 16px;
  max-width: 850px;
}

.home-signup-section h2 {
  margin: 0;
  color: var(--home-text);
  font-size: clamp(42px, 6.4vw, 86px);
  line-height: 0.91;
  text-wrap: balance;
}

.home-signup-lede {
  max-width: 620px;
  margin: 0;
  color: var(--home-muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.5;
}

.home-signup-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
  margin-top: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--home-border-soft);
  color: var(--home-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.home-signup-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 18px;
}

.home-signup-points strong {
  color: var(--home-accent);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.home-signup-points span + span {
  margin-left: 18px;
  padding-left: 18px;
  border-left: 1px solid var(--home-border-soft);
}

.home-signup-panel {
  display: grid;
  gap: 16px;
  align-self: center;
  padding: clamp(18px, 2.2vw, 28px);
  border: 1px solid rgba(232, 183, 166, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 253, 249, 0.88)),
    var(--home-card);
  box-shadow: 0 22px 54px rgba(31, 23, 19, 0.1);
}

.home-signup-preview {
  display: grid;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--home-border-soft);
}

.home-signup-preview-top,
.home-signup-proof {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--home-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.home-signup-preview-top span:first-child {
  color: var(--home-accent);
}

.home-signup-preview-subject {
  max-width: 14em;
  margin: 0;
  color: var(--home-text);
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 0.98;
  text-wrap: balance;
}

.home-signup-preview-grid {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.home-signup-preview-grid img {
  width: 112px;
  height: 112px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--home-border-soft);
}

.home-signup-preview-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--home-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-signup-preview-grid p {
  margin: 0;
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.45;
}

.home-signup-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 6px;
  border: 1px solid var(--home-border-soft);
  border-radius: 8px;
  background: var(--home-card);
}

.home-signup-form:focus-within {
  border-color: var(--home-accent);
  box-shadow: 0 0 0 3px rgba(217, 74, 43, 0.12);
}

.home-signup-form input {
  width: 100%;
  min-height: 52px;
  padding: 0 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--home-text);
  font-size: 16px;
  outline: 0;
}

.home-signup-form input::placeholder {
  color: rgba(74, 56, 48, 0.52);
}

.home-signup-form .button {
  width: auto;
  min-height: 52px;
  border-radius: 6px;
  color: #fffdfa;
  font-weight: 800;
}

.home-signup-proof {
  justify-content: start;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--home-text);
}

.home-signup-proof span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(125, 139, 75, 0.34);
  border-radius: 999px;
  background: rgba(168, 184, 160, 0.14);
}

.home-signup-note {
  margin: 0;
  color: var(--home-muted);
  font-size: 13px;
  line-height: 1.45;
}

.home-page .site-footer-disclosure {
  width: min(1500px, 100%);
  max-width: none;
  margin-top: 42px;
  border: 0;
  border-top: 1px solid var(--home-border-soft);
  border-radius: 0;
  background: transparent;
}

@media (max-width: 1080px) {
  .home-latest-issue-lead {
    width: min(860px, 100%);
  }

  .home-starter-guide {
    width: min(860px, 100%);
  }

  .home-starter-layout {
    grid-template-columns: 1fr;
  }

  .home-starter-media {
    min-height: clamp(320px, 52vw, 500px);
  }

  .home-editorial-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    width: min(780px, 100%);
    margin: 0 auto;
  }

  .home-side-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0;
  }

  .home-issue-feature {
    order: -1;
    padding: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
  }

  .home-feed-grid.four,
  .home-rail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-showcase-grid {
    grid-template-columns: 1fr;
  }

  .home-showcase-list,
  .home-showcase-section.reverse .home-showcase-list {
    border-right: 0;
    border-left: 0;
    padding-right: 0;
    padding-left: 0;
  }
}

@media (max-width: 860px) {
  .home-masthead {
    gap: 8px;
    padding: 18px 0 0;
  }

  .home-tagline {
    position: static;
    max-width: 34ch;
    margin: 1px 0 10px;
    font-size: 14px;
    line-height: 1.35;
    text-align: center;
    white-space: normal;
  }

  .home-nav-row {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "menu utility"
      "nav nav";
    gap: 0 16px;
    padding: 11px 0 10px;
    border-top: 1px solid var(--home-border-soft);
  }

  .home-menu-toggle {
    grid-area: menu;
    display: inline-flex;
    justify-self: start;
  }

  .home-nav {
    grid-area: nav;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-top: 10px;
    overflow: visible;
    border-top: 1px solid var(--home-border-soft);
    padding: 4px 0 0;
    white-space: normal;
  }

  .home-nav.is-open {
    display: grid;
  }

  .home-nav a {
    padding: 11px 12px;
    border-bottom: 1px solid var(--home-border-soft);
    text-align: left;
  }

  .home-utility-links {
    grid-area: utility;
    justify-self: end;
  }

  .home-issue-copy h1 {
    font-size: clamp(46px, 8.2vw, 60px);
  }

  .home-starter-intro {
    margin-top: 18px;
  }

  .home-starter-row {
    grid-template-columns: minmax(104px, 156px) minmax(0, 1fr);
    min-height: 0;
  }

  .home-starter-date {
    grid-column: 2;
    justify-self: start;
  }

  .home-starter-dot {
    display: none;
  }

  .home-feed-grid.four,
  .home-feed-grid.three,
  .home-rail-grid,
  .home-card-grid.four,
  .home-card-grid.three,
  .home-category-grid,
  .home-split-section,
  .home-signup-section,
  .home-issue-feature {
    grid-template-columns: 1fr;
  }

  .home-section-heading {
    align-items: start;
    flex-direction: column;
  }

  .home-feed-heading {
    align-items: start;
    flex-direction: column;
  }

  .home-issue-image img {
    height: auto;
    min-height: 230px;
    aspect-ratio: 4 / 3;
  }

  .home-signup-section {
    align-items: start;
    gap: 24px;
    padding-right: clamp(16px, 4vw, 28px);
    padding-left: clamp(16px, 4vw, 28px);
  }
}

@media (max-width: 680px) {
  .home-latest-issue-lead {
    margin-bottom: 42px;
  }

  .home-side-stack,
  .home-signup-form,
  .home-showcase-row {
    grid-template-columns: 1fr;
  }

  .home-starter-media {
    grid-template-columns: 1fr 1fr;
    min-height: 0;
    aspect-ratio: 1 / 0.72;
  }

  .home-starter-media img:nth-child(3) {
    display: none;
  }

  .home-starter-row {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .home-starter-thumb {
    height: 190px;
  }

  .home-starter-date {
    grid-column: auto;
  }

  .home-showcase-thumb {
    height: 190px;
  }

  .home-signup-points {
    gap: 10px 18px;
  }

  .home-signup-points span + span {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
  }

  .home-signup-form {
    gap: 10px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .home-signup-form:focus-within {
    box-shadow: none;
  }

  .home-signup-form input {
    min-height: 58px;
    padding: 0 14px;
    border: 1px solid var(--home-border-soft);
    border-radius: 6px;
    background: var(--home-card);
  }

  .home-signup-form input:focus-visible {
    border-color: var(--home-accent);
    box-shadow: 0 0 0 3px rgba(217, 74, 43, 0.12);
  }

  .home-signup-form .button {
    width: 100%;
    min-height: 58px;
  }

  .home-signup-preview-grid {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .home-signup-preview-grid img {
    width: 88px;
    height: 88px;
  }
}

@media (max-width: 560px) {
  .home-page,
  .article-reader-page,
  .recipes-page {
    padding-right: 10px;
    padding-left: 10px;
  }

  .home-wordmark {
    font-size: clamp(22px, 7.2vw, 28px);
    letter-spacing: 0.08em;
  }

  .home-heart {
    font-size: 17px;
  }

  .home-tagline {
    max-width: 30ch;
    font-size: 13px;
  }

  .home-nav-row {
    gap: 0 9px;
  }

  .home-nav {
    grid-template-columns: 1fr;
    gap: 0;
    font-size: 11px;
  }

  .home-utility-links {
    gap: 9px;
    font-size: 10px;
  }

  .home-nav-subscribe {
    min-height: 32px;
    padding: 6px 10px;
  }

  .home-intro-panel {
    margin-top: 28px;
    margin-bottom: 32px;
  }

  .home-intro-panel h1 {
    font-size: 37px;
  }

  .home-intro-actions,
  .home-intro-actions .button {
    width: 100%;
  }

  .home-starter-guide {
    margin-bottom: 44px;
  }

  .home-starter-intro {
    font-size: 17px;
  }

  .home-starter-copy {
    padding: 30px 18px 34px;
  }

  .home-starter-copy h1 {
    font-size: 42px;
  }

  .home-starter-button {
    width: 100%;
  }

  .home-starter-row h2 {
    font-size: 30px;
  }

  .home-editorial-grid {
    margin-top: 20px;
  }

  .home-issue-copy h1 {
    font-size: clamp(36px, 8.2vw, 46px);
  }

  .home-issue-kicker,
  .home-issue-tags {
    font-size: 11px;
  }

  .home-issue-copy {
    gap: 13px;
    padding: 34px 16px 46px;
  }

  .home-issue-overline {
    flex-direction: column;
    gap: 7px;
    padding-bottom: 14px;
  }

  .home-issue-copy .eyebrow,
  .home-issue-kicker {
    justify-self: center;
    white-space: normal;
  }

  .home-issue-dek {
    font-size: 16px;
    line-height: 1.6;
  }

  .home-signup-form {
    grid-template-columns: 1fr;
  }

  .home-signup-form .button,
  .home-issue-copy .button,
  .home-issue-card .button {
    width: 100%;
  }
}

.site-hero,
.site-section,
.site-page-header,
.web-issue-header,
.article-header,
.site-footer-disclosure {
  background: var(--card-warm);
  border: 1px solid var(--border-soft);
}

.site-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  max-width: 1120px;
  margin: 22px auto 28px;
  padding: clamp(34px, 6vw, 76px);
}

.site-kicker,
.site-meta,
.breadcrumbs {
  color: var(--text-muted);
  font-size: 13px;
}

.site-kicker {
  margin: 0 0 14px;
  font-family: var(--serif);
}

.site-kicker span {
  margin-right: 14px;
  color: var(--accent);
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: 5px;
}

.site-hero h1 {
  margin: 0;
  color: #090706;
  font-family: var(--serif);
  font-size: clamp(58px, 10vw, 132px);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: 0;
}

.web-issue-header h1 {
  max-width: 900px;
  margin: 0 auto;
  color: #090706;
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 82px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 0;
}

.site-tagline,
.web-issue-header > p {
  margin: 18px 0 0;
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 24px);
  font-style: italic;
}

.site-intro {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--text-muted);
  font-size: 18px;
}

.site-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.site-signup-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
}

.site-signup-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.05;
}

.site-signup-card input {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--border-soft);
  background: var(--background);
  color: var(--text);
}

.site-section,
.site-page-header,
.web-issue-header,
.article-header {
  max-width: 1120px;
  margin: 28px auto;
  padding: clamp(24px, 4vw, 42px);
}

.site-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.site-section-heading h2,
.site-page-header h1,
.article-header h1,
.article-body h2 {
  margin: 0 0 8px;
  color: #090706;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

.site-section-heading h2,
.site-page-header h1 {
  font-size: clamp(34px, 5vw, 58px);
}

.article-header h1 {
  max-width: 900px;
  font-size: clamp(42px, 6vw, 76px);
}

.site-section-heading p,
.site-page-header p,
.article-header p {
  margin: 0;
  color: var(--text-muted);
}

.site-card-grid {
  display: grid;
  gap: 22px;
}

.article-category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -12px 0 28px;
}

.article-library-note {
  margin: 0 0 18px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  background: var(--card-warm);
}

.article-library-note p {
  margin: 5px 0 0;
  color: var(--text-muted);
}

.article-category-filters a,
.article-share a,
.article-share button {
  padding: 9px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--card);
  color: var(--text);
  font: inherit;
  text-decoration: none;
  cursor: pointer;
}

.article-category-filters a.active,
.article-category-filters a:hover,
.article-share a:hover,
.article-share button:hover {
  border-color: var(--accent);
  color: var(--accent-hover);
}

.site-card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.issue-archive-page {
  width: 100%;
}

.issue-archive-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin: 0 0 clamp(22px, 3vw, 38px);
  padding: clamp(30px, 4.2vw, 58px) 0 clamp(20px, 2.8vw, 34px);
  border-top: 1px solid rgba(9, 7, 6, 0.1);
  border-bottom: 1px solid rgba(9, 7, 6, 0.16);
}

.issue-archive-header::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: clamp(72px, 12vw, 156px);
  height: 2px;
  background: var(--accent-hover);
}

.issue-archive-title-block {
  min-width: 0;
}

.issue-archive-header h1 {
  margin: 0;
  color: var(--text);
  font-family: var(--sans);
  font-size: clamp(48px, 7.2vw, 104px);
  font-weight: 900;
  letter-spacing: clamp(0.08em, 0.72vw, 0.16em);
  line-height: 0.86;
  text-align: left;
  text-transform: uppercase;
}

.issue-archive-count {
  margin: 0;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.35;
  text-transform: uppercase;
}

.issue-archive-count {
  flex: 0 0 auto;
  padding: 8px 0 5px 18px;
  border-left: 1px solid rgba(9, 7, 6, 0.16);
  text-align: right;
}

.issue-archive-list {
  display: grid;
  gap: 10px;
}

.issue-archive-item {
  display: grid;
  grid-template-columns: minmax(300px, 35.8%) minmax(0, 1fr);
  height: clamp(224px, 16vw, 252px);
  min-height: 224px;
  overflow: hidden;
  border: 1px solid #eadfd7;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(58, 46, 40, 0.04);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.issue-archive-item:hover {
  border-color: rgba(184, 58, 36, 0.34);
  box-shadow: 0 22px 48px rgba(58, 46, 40, 0.075);
  transform: translateY(-1px);
}

.issue-archive-media {
  display: block;
  height: 100%;
  min-height: 224px;
  overflow: hidden;
  background: #f4eee8;
  color: inherit;
  text-decoration: none;
}

.issue-archive-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

.issue-archive-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(22px, 4vw, 74px);
  align-items: center;
  padding: clamp(24px, 3vw, 34px) clamp(26px, 3.5vw, 42px);
}

.issue-archive-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  margin: 0 0 6px;
  color: var(--accent-hover);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.issue-archive-copy h2 {
  max-width: 760px;
  margin: 0;
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
}

.issue-archive-copy h2 a {
  color: inherit;
  text-decoration: none;
}

.issue-archive-copy h2 a:hover {
  color: var(--accent);
}

.issue-archive-copy p:not(.issue-archive-meta) {
  max-width: 530px;
  margin: 6px 0 0;
  color: var(--text-muted);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
}

.issue-archive-button {
  min-width: 184px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  justify-self: end;
  border: 1px solid var(--accent-hover);
  border-radius: 6px;
  background: var(--accent-hover);
  color: var(--card-warm);
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.issue-archive-button:hover {
  background: #9f2f1f;
  border-color: #9f2f1f;
}

.issue-archive-button span {
  font-size: 24px;
  line-height: 0;
}

.site-card {
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
}

.site-card.featured {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.15fr);
}

.site-card-media {
  display: block;
  background: var(--beige);
  color: inherit;
  text-decoration: none;
}

.site-card-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.site-card.featured .site-card-media img {
  min-height: 260px;
  height: 100%;
}

.site-card-body {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.site-card-body h3 {
  margin: 0;
  color: #090706;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.05;
}

.site-card-body h3 a,
.text-link {
  color: var(--accent);
  text-decoration: none;
}

.site-card-body p {
  margin: 0;
}

.site-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.category-grid a {
  min-height: 82px;
  display: flex;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  font-family: var(--serif);
  font-size: 24px;
  text-decoration: none;
}

.category-grid a:hover,
.text-link:hover,
.site-card-body h3 a:hover {
  color: var(--accent-hover);
}

.site-footer-disclosure {
  max-width: 1120px;
  margin: 28px auto 48px;
  padding: 18px 22px;
  color: var(--text-muted);
}

.site-footer-disclosure strong {
  color: var(--text);
}

.site-footer-disclosure p {
  margin: 5px 0 0;
}

.button.rose,
.search-form button,
.button:not(.secondary):not(.danger):not(.green) {
  background: var(--accent);
  border-color: var(--accent-hover);
  color: var(--card-warm);
}

.button.rose:hover,
.search-form button:hover,
.button:not(.secondary):not(.danger):not(.green):hover {
  background: var(--accent-hover);
}

.web-issue-page .editorial-preview-panel {
  margin-top: 0;
}

.web-issue-header {
  text-align: center;
}

.web-issue-header .breadcrumbs {
  justify-content: center;
}

.web-issue-header .site-actions {
  justify-content: center;
}

.web-issue-meta {
  max-width: 760px;
  margin: 22px auto 0;
  padding: 12px 0;
  border-top: 1px dotted var(--divider);
  border-bottom: 1px dotted var(--divider);
  color: var(--text);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.web-issue-meta span {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 12px 2px;
  border-radius: 50%;
  background: var(--accent);
}

.issue-section-card .site-card-media img {
  height: 170px;
}

.article-page {
  max-width: 1120px;
  margin: 24px auto 56px;
}

.article-hero img,
.article-inline-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.article-hero figcaption,
.article-inline-image figcaption {
  padding: 8px 0;
  color: var(--text-muted);
  font-size: 14px;
}

.article-share {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  margin: 0 0 14px;
}

.breadcrumbs a {
  color: var(--accent);
}

.article-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.article-toc {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--border-soft);
  background: var(--card-warm);
}

.article-toc a {
  color: var(--accent);
  text-decoration: none;
}

.article-body {
  display: grid;
  gap: 22px;
}

.article-body > section,
.short-answer-box,
.faq-item,
.article-two-col > div {
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid var(--border);
  background: var(--card);
}

.article-body h2 {
  font-size: clamp(30px, 4vw, 46px);
}

.article-body p {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.5;
}

.article-recipe-card {
  border-color: color-mix(in srgb, var(--accent) 38%, var(--border));
  background: var(--card-warm);
}

.article-recipe-card-header {
  max-width: 720px;
}

.article-recipe-card-header h2 {
  margin-bottom: 8px;
}

.article-recipe-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 24px 0 30px;
  border-block: 1px solid var(--border);
}

.article-recipe-meta > div {
  display: grid;
  gap: 4px;
  padding: 14px;
  text-align: center;
}

.article-recipe-meta > div + div {
  border-left: 1px solid var(--border);
}

.article-recipe-meta dt {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-recipe-meta dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
}

.article-recipe-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 58px);
}

.article-recipe-grid > div + div {
  padding-left: clamp(24px, 4vw, 46px);
  border-left: 1px solid var(--border);
}

.article-recipe-grid h3 {
  margin: 0 0 16px;
  color: var(--accent);
  font-family: var(--sans);
  font-size: 22px;
  letter-spacing: -0.02em;
}

.article-recipe-grid ul,
.article-recipe-grid ol {
  display: grid;
  gap: 11px;
  margin: 0;
  padding-left: 22px;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.45;
}

.article-recipe-grid ol {
  gap: 16px;
}

.article-recipe-grid li::marker {
  color: var(--accent);
  font-family: var(--sans);
  font-weight: 800;
}

.recipe-box-download {
  display: grid;
  grid-template-columns: minmax(150px, 210px) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--accent);
  background: color-mix(in srgb, var(--card-warm) 88%, white);
}

.recipe-box-download img {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid var(--border-soft);
  object-fit: cover;
}

.recipe-box-download h2 {
  margin: 2px 0 10px;
  font-size: clamp(28px, 4vw, 42px);
}

.recipe-box-download p {
  max-width: 650px;
}

.recipe-box-download-button {
  display: inline-flex;
  justify-content: center;
  margin-top: 8px;
  padding: 13px 18px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: white;
  font-weight: 800;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease;
}

.recipe-box-download-button:hover,
.recipe-box-download-button:focus-visible {
  background: transparent;
  color: var(--accent);
}

.article-rich-content blockquote {
  margin: 24px 0;
  padding: 8px 0 8px 24px;
  border-left: 4px solid var(--accent);
  color: var(--text-muted);
  font-family: var(--serif);
  font-size: 24px;
}

.article-callout,
.article-signup-box {
  padding: 24px;
  border: 1px solid var(--accent);
  background: var(--card-warm);
}

.article-inline-image {
  margin: 28px 0;
}

.article-back-link a {
  color: var(--accent-hover);
  font-weight: 800;
}

.inline-image-editor {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--border);
}

.inline-image-row {
  display: grid;
  grid-template-columns: 110px repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
  padding: 14px;
  border: 1px solid var(--border-soft);
  background: var(--card-warm);
}

@media (max-width: 720px) {
  .article-recipe-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-recipe-meta > div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .article-recipe-meta > div:nth-child(4) {
    border-top: 1px solid var(--border);
  }

  .article-recipe-grid,
  .recipe-box-download {
    grid-template-columns: 1fr;
  }

  .article-recipe-grid > div + div {
    padding-top: 26px;
    padding-left: 0;
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .recipe-box-download img {
    max-width: 190px;
  }

  .recipe-box-download-button {
    width: 100%;
  }
}

.inline-image-row label {
  display: grid;
  gap: 5px;
}

.inline-image-preview {
  grid-row: span 2;
  min-height: 100px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--beige);
}

.inline-image-preview img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.editorial-article-feature.image-beside {
  grid-template-columns: minmax(180px, .8fr) minmax(0, 1.2fr);
  align-items: center;
}

.editorial-reading-time {
  color: #675b54;
}

@media (max-width: 640px) {
  .editorial-article-feature-copy {
    padding-top: 18px;
  }

  .editorial-article-feature h2 {
    font-size: clamp(32px, 9vw, 40px);
  }

  .editorial-article-actions,
  .editorial-page a.editorial-article-button,
  .public-editorial-shell a.editorial-article-button {
    width: 100%;
  }
}

.short-answer-box {
  border-color: var(--accent);
}

.article-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-item {
  margin-bottom: 12px;
}

.faq-item summary {
  cursor: pointer;
  color: #090706;
  font-family: var(--serif);
  font-size: 22px;
}

.editorial-red-list li::marker {
  color: var(--accent);
}

/* Recipe index */
.public-recipes-main {
  width: 100%;
  max-width: none;
  padding: 0;
  background: #fff;
}

.recipes-page {
  padding-bottom: clamp(70px, 8vw, 120px);
}

.recipes-page .home-masthead {
  margin-bottom: 0;
}

.recipe-index-hero {
  display: grid;
  gap: 18px;
  justify-items: center;
  width: min(1050px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(68px, 8vw, 118px) 0 clamp(54px, 6vw, 86px);
  text-align: center;
}

.recipe-index-kicker,
.recipe-index-count {
  margin: 0;
  color: var(--home-accent);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.recipe-index-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--home-text);
  font-family: var(--serif);
  font-size: clamp(58px, 9vw, 118px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.9;
  text-wrap: balance;
}

.recipe-index-hero > p:last-child {
  max-width: 650px;
  margin: 4px 0 0;
  color: var(--home-muted);
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 25px);
  font-style: italic;
  line-height: 1.45;
}

.recipe-filter-bar {
  position: sticky;
  z-index: 5;
  top: 0;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
  width: 100%;
  padding: 16px clamp(18px, 4vw, 58px);
  border-top: 1px solid var(--home-border-soft);
  border-bottom: 1px solid var(--home-border-soft);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  scrollbar-width: none;
}

.recipe-filter-bar::-webkit-scrollbar {
  display: none;
}

.recipe-filter-bar a {
  flex: 0 0 auto;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--home-muted);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-decoration: none;
  white-space: nowrap;
}

.recipe-filter-bar a:hover,
.recipe-filter-bar a:focus-visible {
  border-color: var(--home-border);
  color: var(--home-accent-hover);
}

.recipe-filter-bar a.active {
  border-color: var(--home-text);
  background: var(--home-text);
  color: #fff;
}

.recipe-index-content {
  width: min(1300px, calc(100% - clamp(28px, 6vw, 86px)));
  margin: 0 auto;
  padding-top: clamp(46px, 6vw, 78px);
}

.recipe-index-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--home-border-soft);
}

.recipe-index-heading > div {
  display: grid;
  gap: 7px;
}

.recipe-index-heading h2 {
  margin: 0;
  color: var(--home-text);
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}

.recipe-index-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 72px) clamp(24px, 4vw, 50px);
}

.recipe-index-card.card {
  min-width: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.recipe-index-image {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: #f1ebe6;
}

.recipe-index-card .card-media {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.42 / 1;
  border-radius: 0;
  object-fit: cover;
  transition: transform 280ms ease;
}

.recipe-index-card a.recipe-index-image:hover .card-media {
  transform: scale(1.018);
}

.recipe-index-card .card-body {
  display: grid;
  gap: 12px;
  padding: 20px 2px 0;
}

.recipe-index-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  color: var(--home-accent-hover);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.recipe-index-meta span + span::before {
  margin-right: 18px;
  color: var(--home-border);
  content: "•";
}

.recipe-index-card h3 {
  margin: 0;
  color: var(--home-text);
  font-family: var(--serif);
  font-size: clamp(30px, 3.3vw, 45px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.02;
}

.recipe-index-card h3 a {
  color: inherit;
  text-decoration: none;
}

.recipe-index-card h3 a:hover {
  color: var(--home-accent-hover);
}

.recipe-index-card .card-body > p:not(.recipe-index-ingredients) {
  max-width: 55ch;
  margin: 0;
  color: var(--home-muted);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.48;
}

.recipe-index-ingredients {
  margin: 0;
  color: #75645b;
  font-size: 12px;
  line-height: 1.5;
}

.recipe-index-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  margin-top: 4px;
}

.recipe-index-read {
  color: var(--home-accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.recipe-index-read:hover {
  color: var(--home-accent-hover);
}

.recipe-index-actions .button {
  min-height: 34px;
  padding: 7px 13px;
  border-color: var(--home-border-soft);
  border-radius: 999px;
  background: transparent;
  color: var(--home-muted);
  font-size: 11px;
}

.recipe-empty-state {
  display: grid;
  gap: 14px;
  justify-items: center;
  padding: clamp(60px, 9vw, 110px) 24px;
  border: 1px solid var(--home-border-soft);
  border-radius: 18px;
  background: #fffaf7;
  text-align: center;
}

.recipe-empty-state h2 {
  max-width: 650px;
  margin: 0;
  color: var(--home-text);
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 500;
  line-height: 1.02;
}

.recipe-empty-state > p:not(.recipe-index-kicker) {
  margin: 0;
  color: var(--home-muted);
  font-size: 17px;
}

.recipe-empty-state a {
  margin-top: 6px;
  color: var(--home-accent);
  font-weight: 800;
}

@media (max-width: 760px) {
  .recipe-filter-bar {
    justify-content: flex-start;
  }

  .recipe-index-grid {
    grid-template-columns: 1fr;
  }

  .recipe-index-hero {
    padding-top: 52px;
  }

  .recipe-index-card h3 {
    font-size: clamp(32px, 9vw, 42px);
  }
}

/* Individual articles share the homepage masthead and use a magazine-style reader. */
.article-reader-page .home-masthead {
  margin-bottom: clamp(30px, 5vw, 72px);
}

.article-editorial-page {
  max-width: 1500px;
  margin: 0 auto clamp(64px, 8vw, 110px);
  color: var(--home-text);
}

.article-editorial-page .breadcrumbs {
  width: min(1300px, 100%);
  margin: 0 auto 24px;
  color: var(--home-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-editorial-page .breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.article-editorial-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(38px, 6vw, 106px);
  align-items: center;
  width: min(1300px, 100%);
  margin: 0 auto;
}

.article-editorial-page .article-hero {
  align-self: stretch;
  max-width: none;
  margin: 0;
}

.article-editorial-page .article-hero img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  max-height: 760px;
  aspect-ratio: 0.76 / 1;
  border-radius: 28px;
  object-fit: cover;
}

.article-editorial-page .article-hero.article-hero-contain img {
  object-fit: contain;
  background: #fff;
}

.article-editorial-page .article-hero figcaption {
  padding-top: 10px;
  color: var(--home-muted);
  font-size: 12px;
  line-height: 1.45;
}

.article-hero-copy {
  align-content: center;
  display: grid;
  min-width: 0;
}

.article-hero-category {
  margin: 0 0 18px;
  color: var(--home-accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.article-hero-copy h1 {
  max-width: 12em;
  margin: 0;
  color: #17141b;
  font-family: var(--serif);
  font-size: clamp(48px, 6.4vw, 92px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
  text-wrap: balance;
}

.article-hero-dek {
  max-width: 42ch;
  margin: 24px 0 0;
  color: var(--home-muted);
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 24px);
  font-style: italic;
  line-height: 1.45;
}

.article-byline {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 34px;
}

.article-author-mark {
  display: grid;
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: #f3f1ee;
  color: #231f25;
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
}

.article-byline div {
  display: grid;
  gap: 3px;
}

.article-byline div span,
.article-byline div strong,
.article-updated {
  font-family: var(--sans);
  text-transform: uppercase;
}

.article-byline div span {
  color: var(--home-muted);
  font-size: 12px;
  letter-spacing: 0.16em;
}

.article-byline div strong {
  color: var(--home-text);
  font-size: 14px;
  letter-spacing: 0.12em;
}

.article-updated {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 16px 0 0;
  color: var(--home-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.article-editorial-page .article-share {
  gap: 18px;
  margin-top: 22px;
}

.article-editorial-page .article-share a,
.article-editorial-page .article-share button {
  min-height: auto;
  padding: 0 0 3px;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: var(--home-muted);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.article-editorial-disclosure {
  width: min(1300px, 100%);
  margin: clamp(42px, 6vw, 76px) auto clamp(46px, 7vw, 84px);
  padding: 0;
  border: 0;
  background: transparent;
  color: #3b363c;
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 29px);
  font-style: italic;
  line-height: 1.55;
}

.article-editorial-body {
  display: block;
  width: min(900px, 100%);
  margin: 0 auto;
}

.article-editorial-body > section,
.article-editorial-body .short-answer-box,
.article-editorial-body .faq-item,
.article-editorial-body .article-two-col > div {
  padding: 0;
  border: 0;
  background: transparent;
}

.article-editorial-body > section {
  margin: 0 0 clamp(42px, 6vw, 68px);
}

.article-editorial-body .article-standfirst {
  margin-bottom: clamp(50px, 7vw, 82px);
}

.article-editorial-body .article-standfirst p {
  color: #242027;
  font-size: clamp(25px, 3vw, 37px);
  line-height: 1.38;
}

.article-editorial-body h2 {
  margin: 54px 0 24px;
  color: #242027;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.16;
}

.article-editorial-body h3 {
  margin: 42px 0 18px;
  color: #242027;
  font-family: var(--serif);
  font-size: clamp(27px, 3vw, 34px);
  font-weight: 500;
  line-height: 1.2;
}

.article-editorial-body p,
.article-editorial-body li {
  color: #302b31;
  font-family: var(--serif);
  font-size: clamp(18px, 1.75vw, 21px);
  line-height: 1.62;
}

.article-editorial-body p {
  margin: 0 0 22px;
}

.article-editorial-body a {
  color: inherit;
  text-decoration-color: var(--home-accent);
  text-underline-offset: 3px;
}

.article-editorial-body a.affiliate-link {
  color: var(--home-accent);
  font-weight: 600;
  text-decoration: none;
}

.article-editorial-body a.affiliate-link:hover,
.article-editorial-body a.affiliate-link:focus-visible {
  color: var(--home-accent-hover);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.article-editorial-body .editorial-red-list {
  padding-left: 28px;
}

.article-editorial-body .editorial-red-list li {
  margin-bottom: 12px;
}

.article-editorial-body .article-rich-content blockquote {
  margin: 34px 0;
  padding: 18px 0 18px 28px;
  border-left: 3px solid var(--home-accent);
  color: var(--home-muted);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.45;
}

.article-editorial-body .article-callout,
.article-editorial-body .article-shop-notes {
  margin: 36px 0;
  padding: 28px 32px;
  border: 1px solid var(--home-border-soft);
  background: #fffaf7;
}

.article-editorial-body .article-two-col {
  gap: clamp(28px, 5vw, 58px);
}

.article-editorial-body .article-two-col > div {
  padding-top: 24px;
  border-top: 1px solid var(--home-border-soft);
}

.article-editorial-body .article-two-col h2 {
  margin-top: 0;
}

.article-editorial-body .faq-item {
  margin: 0;
  padding: 22px 0;
  border-bottom: 1px solid var(--home-border-soft);
}

.article-editorial-body .faq-item summary {
  color: #242027;
  font-size: clamp(21px, 2.3vw, 27px);
}

.article-editorial-body .article-inline-image img {
  border-radius: 18px;
}

.article-editorial-body .article-back-link {
  margin-top: 62px;
  padding-top: 24px;
  border-top: 1px solid var(--home-border-soft);
}

@media (max-width: 920px) {
  .article-editorial-hero {
    grid-template-columns: 1fr;
    gap: 30px;
    width: min(760px, 100%);
  }

  .article-editorial-page .article-hero img {
    min-height: 0;
    max-height: none;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
  }

  .article-editorial-page .article-hero.article-hero-contain img {
    height: auto;
    aspect-ratio: auto;
  }

  .article-hero-copy h1 {
    max-width: 14em;
  }

  .article-editorial-disclosure {
    width: min(760px, 100%);
  }
}

@media (max-width: 640px) {
  .article-reader-page .home-masthead {
    margin-bottom: 28px;
  }

  .article-editorial-page .breadcrumbs {
    margin-bottom: 18px;
  }

  .article-hero-copy h1 {
    font-size: clamp(40px, 12vw, 54px);
  }

  .article-hero-dek {
    margin-top: 18px;
  }

  .article-byline {
    margin-top: 26px;
  }

  .article-editorial-disclosure {
    margin-top: 36px;
    margin-bottom: 44px;
    font-size: 20px;
  }

  .article-editorial-body .article-standfirst p {
    font-size: 25px;
  }
}

@media (max-width: 920px) {
  .site-hero,
  .site-card.featured,
  .issue-archive-item,
  .article-layout,
  .article-two-col {
    grid-template-columns: 1fr;
  }

  .issue-archive-copy {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .issue-archive-item {
    height: auto;
  }

  .issue-archive-media,
  .issue-archive-media img {
    min-height: 240px;
  }

  .issue-archive-button {
    justify-self: start;
  }

  .site-card-grid.two,
  .site-card-grid.three,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .article-toc {
    position: static;
  }

  .inline-image-row,
  .editorial-article-feature.image-beside {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-hero,
  .site-section,
  .site-page-header,
  .web-issue-header,
  .article-header {
    padding: 22px;
  }

  .site-section-heading {
    align-items: start;
    flex-direction: column;
  }

  .site-hero h1 {
    font-size: 60px;
  }

  .web-issue-header h1 {
    max-width: 8em;
    font-size: 36px;
    line-height: 1;
    overflow-wrap: break-word;
  }

  .web-issue-header > p {
    max-width: 30ch;
    margin-right: auto;
    margin-left: auto;
    font-size: 18px;
  }

  .web-issue-meta {
    font-size: 11px;
    letter-spacing: 0.15em;
  }

  .public-issue-archive-main {
    width: min(calc(100% - 18px), 1520px);
    padding-top: 10px;
  }

  .issue-archive-list {
    gap: 8px;
  }

  .issue-archive-header {
    display: grid;
    justify-content: stretch;
    gap: 14px;
    align-items: start;
    padding-top: 26px;
  }

  .issue-archive-header h1 {
    max-width: 8.5em;
    font-size: clamp(42px, 13vw, 56px);
    letter-spacing: 0.08em;
    line-height: 0.88;
  }

  .issue-archive-count {
    justify-self: start;
    padding: 0;
    border-left: 0;
    text-align: left;
  }

  .issue-archive-media,
  .issue-archive-media img {
    min-height: 205px;
  }

  .issue-archive-copy {
    padding: 22px;
  }

  .issue-archive-copy h2 {
    font-size: 30px;
  }

  .issue-archive-copy p:not(.issue-archive-meta) {
    font-size: 16px;
  }

  .issue-archive-button {
    width: 100%;
    min-width: 0;
  }
}

/* About page */
.public-about-main {
  --home-bg: #ffffff;
  --home-card: #ffffff;
  --home-card-warm: #fffdf9;
  --home-text: #1f1713;
  --home-muted: #4a3830;
  --home-accent: #b24730;
  --home-accent-hover: #b83a24;
  --home-border: #e8b7a6;
  --home-border-soft: #e5d8cf;
  width: 100%;
  max-width: none;
  padding: 0;
  background: #f8f5f1;
}

.about-page {
  min-height: 100svh;
  padding-top: 24px;
  background: #f8f5f1;
  color: #201a17;
}

.about-page .home-masthead {
  margin: 0 clamp(10px, 2vw, 36px) 24px;
}

.about-intro {
  background: #1642c7;
  color: #fff;
}

.about-intro-header {
  min-height: clamp(190px, 18vw, 270px);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  padding: 42px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.82);
  text-align: center;
}

.about-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.about-intro h1 {
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(44px, 5.2vw, 76px);
  font-weight: 500;
  line-height: 1;
  text-wrap: balance;
}

.about-intro-copy {
  width: min(1040px, calc(100% - 40px));
  min-height: clamp(440px, 44vw, 640px);
  display: grid;
  align-content: center;
  gap: 28px;
  margin: 0 auto;
  padding: clamp(78px, 9vw, 138px) 0;
  text-align: center;
}

.about-intro-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-family: var(--sans);
  font-size: clamp(19px, 1.65vw, 28px);
  font-weight: 450;
  line-height: 1.58;
  text-wrap: pretty;
}

.about-intro-copy .about-welcome {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: clamp(25px, 2.3vw, 36px);
  line-height: 1.3;
}

.about-team {
  padding: clamp(76px, 8vw, 126px) clamp(24px, 5vw, 86px) clamp(92px, 9vw, 144px);
  background: #f8f5f1;
}

.about-team > h2 {
  margin: 0;
  color: #181310;
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

.about-team-grid {
  width: min(1320px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(66px, 9vw, 146px);
  margin: clamp(58px, 7vw, 96px) auto 0;
}

.about-team-card {
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
}

.about-team-photo {
  width: clamp(230px, 24vw, 360px);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  background: #e7ddd4;
}

.about-team-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-team-card-katie img {
  object-position: 57% 34%;
  transform: scale(1.28);
  transform-origin: 57% 34%;
}

.about-team-card-otto img {
  object-position: 52% 30%;
}

.about-team-card h3 {
  margin: 38px 0 0;
  color: #17110e;
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 500;
  line-height: 1;
}

.about-team-role {
  margin: 18px 0 0;
  color: #1642c7;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.about-team-card > p:last-child {
  max-width: 560px;
  margin: 34px 0 0;
  color: #2f2926;
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.62;
  text-align: left;
}

.about-contact {
  display: grid;
  gap: clamp(64px, 8vw, 108px);
  padding: clamp(86px, 9vw, 138px) 24px clamp(96px, 10vw, 154px);
  border-top: 1px solid #e1d8d0;
  background: #fff;
  text-align: center;
}

.about-contact-block {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.about-contact h2 {
  margin: 0;
  color: #15110f;
  font-family: var(--sans);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.08;
  text-transform: uppercase;
  text-wrap: balance;
}

.about-contact p {
  max-width: 930px;
  margin: 34px auto 0;
  color: #302925;
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.55;
  text-wrap: pretty;
}

.about-contact a {
  color: #e44720;
  text-decoration: none;
}

.about-contact a:hover {
  color: #b83a24;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 760px) {
  .about-page {
    padding-top: 14px;
  }

  .about-page .home-masthead {
    margin-bottom: 14px;
  }

  .about-intro-header {
    min-height: 176px;
  }

  .about-intro-copy {
    width: min(100% - 36px, 680px);
    min-height: 0;
  }

  .about-team-grid {
    grid-template-columns: 1fr;
    gap: 78px;
  }

  .about-team-card > p:last-child {
    max-width: 620px;
    text-align: center;
  }

  .about-contact {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media (max-width: 480px) {
  .about-intro-header {
    padding-right: 18px;
    padding-left: 18px;
  }

  .about-intro-copy {
    gap: 24px;
    padding-top: 64px;
    padding-bottom: 70px;
  }

  .about-team {
    padding-right: 20px;
    padding-left: 20px;
  }

  .about-team-photo {
    width: min(76vw, 290px);
  }

  .about-team-card h3 {
    margin-top: 30px;
  }

  .about-team-card > p:last-child {
    margin-top: 26px;
  }

  .about-contact p {
    margin-top: 26px;
  }
}

/* Cohesive editorial publication system */
.public-site-main,
.public-home-main,
.public-about-main,
.public-recipes-main,
.public-issue-archive-main {
  --home-bg: #fbfaf7;
  --home-card: #fffefb;
  --home-card-warm: #f4efe7;
  --home-text: #24211f;
  --home-muted: #625b55;
  --home-accent: #b24730;
  --home-accent-hover: #9f3d2b;
  --home-border: #cdb9a8;
  --home-border-soft: #ddd7cf;
  --background: var(--home-bg);
  --card: var(--home-card);
  --card-warm: var(--home-card-warm);
  --text: var(--home-text);
  --text-muted: var(--home-muted);
  --accent: var(--home-accent);
  --accent-hover: var(--home-accent-hover);
  --border: var(--home-border);
  --border-soft: var(--home-border-soft);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: "Avenir Next", Avenir, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--home-bg);
  color: var(--home-text);
}

.home-page,
.article-reader-page,
.recipes-page {
  background: var(--home-bg);
}

.home-promo-bar {
  position: relative;
  left: 50%;
  width: 100vw;
  min-height: 44px;
  display: flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  margin-left: -50vw;
  padding: 10px clamp(18px, 4vw, 52px);
  background: #e9e2d7;
  color: #29231f;
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
}

.home-promo-bar > span:first-child {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.home-promo-bar:hover {
  background: #e1d7c9;
}

.home-masthead {
  gap: 8px;
  padding: clamp(24px, 3vw, 38px) 0 16px;
  border-bottom: 1px solid var(--home-border-soft);
  background: rgba(251, 250, 247, 0.98);
}

.home-wordmark {
  font-size: clamp(35px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: 0.11em;
  line-height: 1;
}

.home-heart {
  margin: 1px 0;
  font-size: 17px;
}

.home-tagline {
  margin-bottom: 9px;
  font-size: 14px;
  line-height: 1.4;
}

.home-nav-row {
  width: min(1240px, 100%);
  padding-top: 13px;
  border-top: 1px solid var(--home-border-soft);
}

.home-nav,
.home-utility-links {
  font-size: 11px;
  letter-spacing: 0.12em;
}

.home-nav {
  gap: 8px clamp(14px, 1.7vw, 24px);
}

.home-nav a,
.home-utility-links a:not(.home-nav-subscribe) {
  padding: 5px 0;
}

.home-nav a:hover,
.home-utility-links a:hover {
  color: var(--home-accent);
}

.home-nav-subscribe {
  min-height: 35px;
  border-color: var(--home-text);
  border-radius: 999px;
  padding: 8px 15px;
  background: var(--home-text);
  color: #fff !important;
}

.home-page {
  padding-top: 0;
}

.home-latest-issue-lead {
  margin-top: clamp(38px, 5vw, 70px);
}

.home-editorial-grid.home-editorial-grid-single {
  width: min(1240px, 100%);
}

.home-issue-image,
.home-card-image,
.home-rail-image,
.home-showcase-feature-media,
.home-showcase-thumb {
  border-radius: 18px;
}

.home-issue-image img {
  height: clamp(390px, 42vw, 620px);
}

.home-issue-copy {
  padding-right: clamp(10px, 2vw, 30px);
  padding-left: clamp(10px, 2vw, 30px);
}

.home-issue-copy h1 {
  max-width: 1200px;
}

.home-feed-heading,
.home-section-heading {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--home-border-soft);
}

.home-feed-heading h2,
.home-section-heading h2,
.home-showcase-section h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.home-feed-grid {
  gap: clamp(28px, 3.4vw, 52px) clamp(18px, 2.5vw, 34px);
}

.home-feature-card {
  border-bottom-color: var(--home-border-soft);
}

.home-feature-card h3 {
  font-family: var(--serif);
  font-size: clamp(25px, 2.5vw, 34px);
  font-weight: 400;
  line-height: 1.08;
}

.home-card-copy {
  gap: 12px;
  padding-top: 18px;
}

.home-card-copy > p {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.5;
}

.public-library-main {
  width: 100%;
  max-width: none;
  padding: 0 0 clamp(80px, 10vw, 130px);
}

.public-library-main > .home-masthead {
  margin: 0 clamp(14px, 3vw, 46px);
}

.public-library-main > .site-page-header,
.public-library-main > .page-header {
  width: min(1240px, calc(100% - clamp(28px, 7vw, 96px)));
  max-width: none;
  display: grid;
  justify-items: center;
  margin: 0 auto;
  padding: clamp(70px, 9vw, 120px) 0 clamp(44px, 6vw, 76px);
  border: 0;
  background: transparent;
  text-align: center;
}

.public-library-main > .page-header > div:first-child {
  display: grid;
  justify-items: center;
}

.public-library-main > .site-page-header h1,
.public-library-main > .page-header h1 {
  max-width: 1100px;
  margin: 10px 0 18px;
  color: var(--home-text);
  font-family: var(--serif);
  font-size: clamp(52px, 7.4vw, 96px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
  text-wrap: balance;
}

.public-library-main > .site-page-header > p:last-child,
.public-library-main > .page-header > div:first-child > p:last-child {
  max-width: 720px;
  margin: 0;
  color: var(--home-muted);
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
}

.public-library-main > .article-category-filters {
  width: min(1240px, calc(100% - clamp(28px, 7vw, 96px)));
  justify-content: center;
  gap: 4px 24px;
  margin: 0 auto clamp(38px, 5vw, 66px);
  padding: 16px 0;
  border-top: 1px solid var(--home-border-soft);
  border-bottom: 1px solid var(--home-border-soft);
}

.public-library-main > .article-category-filters a {
  border: 0;
  border-radius: 0;
  padding: 6px 0;
  background: transparent;
  color: var(--home-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.public-library-main > .article-category-filters a.active,
.public-library-main > .article-category-filters a:hover {
  border-bottom: 1px solid var(--home-accent);
  color: var(--home-accent);
}

.public-library-main > .site-card-grid,
.public-library-main > .grid,
.public-library-main > .panel,
.public-library-main > .empty-state {
  width: min(1240px, calc(100% - clamp(28px, 7vw, 96px)));
  margin-right: auto;
  margin-left: auto;
}

.site-card-grid.three {
  gap: clamp(38px, 5vw, 72px) clamp(20px, 3vw, 38px);
}

.site-card,
.public-library-main .card,
.public-library-main .panel {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.site-card-media {
  overflow: hidden;
  border-radius: 16px;
  background: #eee8df;
}

.site-card-media img {
  height: auto;
  aspect-ratio: 1.3 / 1;
  transition: transform 260ms ease;
}

.site-card-media:hover img {
  transform: scale(1.015);
}

.site-card-body {
  gap: 13px;
  padding: 20px 2px 0;
}

.site-card-body h3 {
  color: var(--home-text);
  font-size: clamp(27px, 2.8vw, 38px);
  font-weight: 400;
  line-height: 1.06;
}

.site-card-body h3 a,
.site-card-body .text-link {
  color: inherit;
}

.site-card-body > p {
  color: var(--home-muted);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.5;
}

.site-card-body > .text-link {
  justify-self: start;
  border-bottom: 1px solid var(--home-accent);
  padding-bottom: 4px;
  color: var(--home-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-meta {
  color: var(--home-muted);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.public-issue-archive-main {
  width: min(calc(100% - clamp(28px, 7vw, 96px)), 1480px);
  padding-top: 0;
  background: var(--home-bg);
}

.public-issue-archive-main > .home-masthead {
  margin: 0;
}

.issue-archive-header {
  margin-top: clamp(62px, 8vw, 110px);
  padding-top: 0;
  border-top: 0;
}

.issue-archive-header::before {
  display: none;
}

.issue-archive-header h1 {
  font-family: var(--serif);
  font-size: clamp(54px, 8vw, 108px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-transform: none;
}

.issue-archive-list {
  gap: 0;
}

.issue-archive-item {
  min-height: 270px;
  height: auto;
  padding: 28px 0;
  border: 0;
  border-bottom: 1px solid var(--home-border-soft);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.issue-archive-item:hover {
  border-color: var(--home-border-soft);
  box-shadow: none;
  transform: none;
}

.issue-archive-media {
  border-radius: 16px;
}

.issue-archive-button {
  min-width: 0;
  min-height: auto;
  justify-self: start;
  border: 0;
  border-bottom: 1px solid var(--home-accent);
  border-radius: 0;
  padding: 0 0 5px;
  background: transparent;
  color: var(--home-accent);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.issue-archive-button:hover {
  border-color: var(--home-accent-hover);
  background: transparent;
  color: var(--home-accent-hover);
}

.article-reader-page {
  padding-top: 0;
}

.article-reader-page .home-masthead {
  margin-bottom: clamp(44px, 7vw, 92px);
}

.article-editorial-page {
  max-width: 1500px;
  margin-bottom: clamp(90px, 12vw, 150px);
}

.article-editorial-page .breadcrumbs {
  width: min(1240px, 100%);
  margin-bottom: 30px;
  color: var(--home-muted);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.article-editorial-hero {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(44px, 7vw, 112px);
  width: min(1240px, 100%);
}

.article-editorial-page .article-hero img {
  min-height: 620px;
  max-height: 780px;
  border-radius: 24px;
}

.article-hero-category {
  margin-bottom: 22px;
  font-size: 10px;
  letter-spacing: 0.18em;
}

.article-hero-copy h1 {
  max-width: 10.8em;
  font-size: clamp(54px, 6.8vw, 94px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.article-hero-dek {
  max-width: 46ch;
  margin-top: 28px;
  font-size: clamp(19px, 1.8vw, 24px);
  font-style: normal;
  line-height: 1.5;
}

.article-byline {
  margin-top: 36px;
}

.article-author-avatar {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  filter: saturate(0.9);
}

.article-byline strong a {
  color: inherit;
  text-decoration: none;
}

.article-byline strong a:hover {
  color: var(--home-accent);
}

.article-updated {
  gap: 8px 16px;
  margin-top: 17px;
  font-size: 10px;
  line-height: 1.5;
}

.article-updated span + span::before {
  margin-right: 16px;
  color: var(--home-border);
  content: "•";
}

.article-editorial-disclosure {
  width: min(1040px, 100%);
  padding: 24px 0;
  border-top: 1px solid var(--home-border-soft);
  border-bottom: 1px solid var(--home-border-soft);
  color: var(--home-muted);
  font-size: clamp(17px, 1.8vw, 22px);
}

.article-editorial-body {
  width: min(1020px, 100%);
}

.article-editorial-body .article-standfirst {
  margin-bottom: clamp(64px, 9vw, 110px);
  padding: clamp(36px, 5vw, 58px) 0;
  border-top: 1px solid var(--home-border-soft);
  border-bottom: 1px solid var(--home-border-soft);
}

.article-answer-label {
  margin: 0 0 18px !important;
  color: var(--home-accent) !important;
  font-family: var(--sans) !important;
  font-size: 10px !important;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2 !important;
  text-transform: uppercase;
}

.article-editorial-body .article-standfirst p:not(.article-answer-label) {
  max-width: 920px;
  color: var(--home-text);
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.4;
}

.article-editorial-body h2 {
  margin: clamp(64px, 8vw, 96px) 0 28px;
  font-size: clamp(40px, 5vw, 58px);
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.article-editorial-body h3 {
  margin-top: 54px;
  font-size: clamp(29px, 3.2vw, 38px);
}

.article-editorial-body p,
.article-editorial-body li {
  color: #342f2c;
  font-size: clamp(19px, 1.75vw, 22px);
  line-height: 1.66;
}

.article-editorial-body p {
  margin-bottom: 26px;
}

.article-editorial-body .article-rich-content blockquote {
  position: relative;
  width: min(930px, 100%);
  margin: clamp(58px, 8vw, 96px) auto;
  padding: 48px clamp(20px, 5vw, 64px);
  border-top: 1px solid var(--home-border-soft);
  border-right: 0;
  border-bottom: 1px solid var(--home-border-soft);
  border-left: 0;
  color: var(--home-text);
  font-family: var(--serif);
  font-size: clamp(32px, 4.4vw, 54px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-align: center;
}

.article-editorial-body .article-rich-content blockquote::before {
  display: block;
  margin-bottom: -4px;
  color: var(--home-accent);
  content: "“";
  font-size: 52px;
  line-height: 0.7;
}

.article-editorial-body .article-callout,
.article-editorial-body .article-shop-notes {
  margin: clamp(46px, 7vw, 76px) 0;
  padding: clamp(30px, 4vw, 46px);
  border-color: #ded4c8;
  border-radius: 14px;
  background: #f4efe7;
}

.article-inline-image {
  width: min(820px, 100%);
  margin: clamp(54px, 8vw, 92px) auto;
}

.article-editorial-body .article-inline-image img {
  border-radius: 14px;
}

.article-inline-image figcaption {
  padding-top: 12px;
  color: var(--home-muted);
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
}

.article-editorial-body hr {
  margin: clamp(58px, 8vw, 90px) 0;
  border: 0;
  border-top: 1px solid var(--home-border-soft);
}

.article-editorial-body .faq-item {
  padding: 26px 0;
}

.article-editorial-body .faq-item summary {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 500;
}

.publication-footer {
  position: relative;
  left: 50%;
  width: 100vw;
  margin: 0 0 0 -50vw;
  padding: clamp(64px, 8vw, 104px) clamp(24px, 5vw, 72px) 28px;
  background: #27221f;
  color: #f8f4ed;
}

.publication-footer-main {
  width: min(1240px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(170px, 0.5fr) minmax(280px, 0.9fr);
  gap: clamp(42px, 7vw, 100px);
  margin: 0 auto;
}

.publication-footer-brand > a {
  color: inherit;
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 60px);
  letter-spacing: -0.025em;
  line-height: 1;
  text-decoration: none;
}

.publication-footer-brand > span {
  display: block;
  margin: 13px 0 9px;
  color: #dc7054;
  font-size: 20px;
}

.publication-footer-brand > p,
.publication-footer-newsletter > p:not(.eyebrow) {
  max-width: 410px;
  margin: 0;
  color: #cfc4ba;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
}

.publication-footer-nav {
  display: grid;
  align-content: start;
  gap: 11px;
}

.publication-footer-nav > p,
.publication-footer-newsletter .eyebrow {
  margin: 0 0 8px;
  color: #dc7054;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.publication-footer-nav a {
  color: #f8f4ed;
  font-size: 13px;
  text-decoration: none;
}

.publication-footer-nav a:hover {
  color: #dc7054;
}

.publication-footer-newsletter h2 {
  margin: 0 0 14px;
  color: #f8f4ed;
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 400;
  line-height: 1.04;
}

.publication-footer-newsletter > a {
  display: inline-flex;
  gap: 10px;
  margin-top: 24px;
  border-bottom: 1px solid #dc7054;
  padding-bottom: 6px;
  color: #f8f4ed;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.publication-footer-bottom {
  width: min(1240px, 100%);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  margin: clamp(54px, 7vw, 86px) auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #aa9f96;
  font-size: 10px;
  line-height: 1.5;
}

.publication-footer-bottom p {
  margin: 0;
}

.publication-footer-bottom a {
  color: inherit;
  text-decoration: none;
}

.publication-footer-bottom a:hover {
  color: #f8f4ed;
}

.public-about-main,
.about-page {
  background: var(--home-bg);
}

.about-page {
  padding-top: 0;
}

.about-page .home-masthead {
  margin-top: 0;
}

:where(.public-site-main, .public-home-main, .public-about-main, .public-recipes-main) a:focus-visible,
:where(.public-site-main, .public-home-main, .public-about-main, .public-recipes-main) button:focus-visible,
:where(.public-site-main, .public-home-main, .public-about-main, .public-recipes-main) summary:focus-visible {
  outline: 2px solid var(--home-accent);
  outline-offset: 4px;
}

@media (max-width: 920px) {
  .article-editorial-hero {
    width: min(780px, 100%);
  }

  .article-editorial-page .article-hero img {
    min-height: 0;
    max-height: none;
  }

  .article-hero-copy h1 {
    max-width: 12em;
  }

  .article-editorial-body,
  .article-editorial-disclosure {
    width: min(780px, 100%);
  }
}

@media (max-width: 860px) {
  .home-promo-bar {
    min-height: 40px;
    font-size: 13px;
  }

  .home-promo-bar > span:first-child {
    display: none;
  }

  .home-masthead {
    padding-top: 22px;
  }

  .home-nav-row {
    padding-top: 11px;
  }

  .home-nav a {
    padding: 13px 12px;
  }

  .home-issue-image img {
    height: auto;
  }

  .site-card-grid.three,
  .publication-footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .publication-footer-newsletter {
    grid-column: 1 / -1;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .publication-footer-bottom {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 640px) {
  .home-promo-bar strong {
    font-weight: 500;
  }

  .article-editorial-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .article-editorial-page .article-hero,
  .article-hero-copy {
    width: 100%;
    min-width: 0;
  }

  .article-editorial-page .article-hero img {
    aspect-ratio: 4 / 3;
    height: auto;
    min-height: 0;
  }

  .public-library-main > .site-page-header,
  .public-library-main > .page-header {
    padding-top: 58px;
  }

  .public-library-main > .site-page-header h1,
  .public-library-main > .page-header h1 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .site-card-grid.three,
  .site-card-grid.two,
  .publication-footer-main {
    grid-template-columns: 1fr;
  }

  .article-reader-page .home-masthead {
    margin-bottom: 34px;
  }

  .article-hero-copy h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .article-hero-dek {
    font-size: 19px;
  }

  .article-updated span + span::before {
    display: none;
  }

  .article-editorial-body .article-standfirst {
    padding: 32px 0;
  }

  .article-editorial-body .article-standfirst p:not(.article-answer-label) {
    font-size: clamp(24px, 7.8vw, 32px);
  }

  .article-editorial-body p,
  .article-editorial-body li {
    font-size: 19px;
    line-height: 1.62;
  }

  .article-editorial-body .article-rich-content blockquote {
    margin: 52px auto;
    padding: 38px 4px;
    font-size: clamp(29px, 8.5vw, 40px);
  }

  .publication-footer {
    padding-right: 22px;
    padding-left: 22px;
  }

  .publication-footer-main {
    gap: 42px;
  }

  .publication-footer-newsletter {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Homepage lead story: one clear, high-impact editorial invitation. */
.home-page .home-latest-issue-lead {
  margin-top: clamp(34px, 4.5vw, 62px);
}

.home-page .home-editorial-grid.home-editorial-grid-single {
  width: min(1240px, 100%);
}

.home-page .home-issue-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(350px, 0.9fr);
  min-height: clamp(520px, 48vw, 650px);
  overflow: hidden;
  border: 1px solid #ded4c8;
  border-radius: 22px;
  background: #f2ece4;
  box-shadow: 0 20px 55px rgba(47, 36, 29, 0.08);
}

.home-page .home-issue-image {
  min-height: 100%;
  overflow: hidden;
  border-radius: 0;
  background: #e9dfd5;
}

.home-page .home-issue-image img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center center;
  transition: transform 420ms ease;
}

.home-page .home-issue-image:hover img {
  transform: scale(1.018);
}

.home-page .home-issue-copy {
  align-content: center;
  gap: clamp(22px, 2.7vw, 34px);
  padding: clamp(42px, 5.5vw, 76px) clamp(34px, 4.6vw, 66px);
  background: #f2ece4;
  text-align: left;
}

.home-page .home-issue-overline {
  justify-content: flex-start;
  gap: 12px;
  padding: 0;
  border: 0;
}

.home-page .home-issue-copy .eyebrow,
.home-page .home-issue-kicker {
  justify-self: start;
  width: auto;
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.16em;
  line-height: 1.4;
  white-space: normal;
}

.home-page .home-issue-copy .eyebrow {
  border-radius: 999px;
  padding: 7px 10px 6px;
  background: #d9684f;
  color: #fff;
}

.home-page .home-issue-kicker {
  color: #594d46;
}

.home-page .home-issue-kicker::before {
  content: "";
  display: inline-block;
  width: 18px;
  margin: 0 10px 3px 0;
  border-top: 1px solid #b6a89e;
}

.home-page .home-issue-copy h1 {
  justify-self: start;
  max-width: 12ch;
  margin: 0;
  font-size: clamp(46px, 4.8vw, 66px);
  font-weight: 500;
  letter-spacing: -0.032em;
  line-height: 0.98;
  text-align: left;
  text-wrap: balance;
}

.home-page .home-issue-copy h1 a {
  text-decoration-thickness: 1px;
  text-underline-offset: 7px;
}

.home-page .home-issue-copy h1 a:hover {
  color: #a84632;
  text-decoration: underline;
}

.home-feature-summary {
  max-width: 44ch;
  padding-left: 18px;
  border-left: 2px solid #d9684f;
}

.home-feature-summary-label {
  margin: 0 0 8px !important;
  color: #9d3f2d !important;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.home-page .home-issue-dek {
  max-width: none;
  justify-self: start;
  color: #4f453f;
  font-family: var(--serif);
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.5;
  text-align: left;
}

.home-feature-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  align-items: center;
}

.home-page .home-issue-cta {
  justify-self: start;
  min-height: 46px;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin: 0;
  border: 1px solid #241c18;
  border-radius: 999px;
  padding: 13px 18px 12px;
  background: #241c18;
  color: #fff;
  line-height: 1;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.home-page .home-issue-cta:hover {
  border-color: #a84632;
  background: #a84632;
  color: #fff;
  transform: translateY(-1px);
}

.home-feature-action-row time {
  color: #6f625a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-page .home-latest-issue-lead + .home-feed-section {
  margin-top: clamp(64px, 7vw, 94px);
}

@media (max-width: 900px) {
  .home-page .home-issue-feature {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    min-height: 510px;
  }

  .home-page .home-issue-copy {
    gap: 21px;
    padding: 38px 30px;
  }

  .home-page .home-issue-copy h1 {
    width: 100%;
    max-width: none;
    font-size: clamp(40px, 5.4vw, 46px);
    letter-spacing: -0.025em;
    line-height: 1.02;
  }

  .home-page .home-issue-overline {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .home-page .home-issue-copy .eyebrow {
    padding: 0;
    background: transparent;
    color: #a84632;
    white-space: nowrap;
  }

  .home-page .home-issue-kicker {
    font-size: 9px;
    white-space: nowrap;
  }

  .home-page .home-issue-kicker::before {
    display: none;
  }

  .home-page .home-issue-dek {
    font-size: 16px;
  }
}

@media (max-width: 760px) {
  .home-page .home-issue-feature {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }

  .home-page .home-issue-image {
    min-height: 0;
  }

  .home-page .home-issue-image img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .home-page .home-issue-copy {
    padding: 38px clamp(24px, 7vw, 46px) 44px;
  }

  .home-page .home-issue-copy h1 {
    max-width: 12ch;
    font-size: clamp(42px, 10vw, 58px);
    letter-spacing: -0.03em;
    line-height: 0.98;
  }
}

@media (max-width: 480px) {
  .home-page .home-issue-overline {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .home-page .home-issue-kicker::before {
    display: none;
  }

  .home-page .home-issue-copy {
    gap: 20px;
    padding: 32px 22px 38px;
  }

  .home-page .home-issue-copy h1 {
    font-size: clamp(39px, 11.5vw, 48px);
  }

  .home-feature-action-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Masthead refinement: newspaper structure with a softer editorial finish. */
.home-masthead {
  gap: 0;
  padding: clamp(22px, 2.8vw, 34px) 0 0;
  border-bottom: 0;
}

.home-wordmark {
  font-size: clamp(37px, 4vw, 50px);
  font-weight: 500;
  letter-spacing: 0.125em;
  line-height: 1;
}

.home-heart {
  width: min(170px, 32vw);
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin: 11px 0 8px;
  font-size: 16px;
}

.home-heart::before,
.home-heart::after {
  content: "";
  flex: 1 1 auto;
  border-top: 1px solid #d8c9bd;
}

.home-tagline {
  max-width: none;
  margin: 0 0 20px;
  font-size: clamp(14px, 1.25vw, 16px);
  line-height: 1.3;
  white-space: nowrap;
}

.home-nav-row {
  min-height: 58px;
  padding: 0;
  border-top: 1px solid #d8d0c8;
  border-bottom: 1px solid #d8d0c8;
}

.home-nav a,
.home-menu-toggle,
.home-utility-links a {
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.home-nav a {
  letter-spacing: 0.115em;
}

.home-nav-subscribe {
  min-height: 36px;
  border-color: #342823;
  padding: 8px 15px 7px;
  background: #342823;
}

@media (max-width: 860px) {
  .home-masthead {
    padding-top: 20px;
  }

  .home-wordmark {
    font-size: clamp(35px, 5vw, 40px);
    letter-spacing: 0.13em;
  }

  .home-heart {
    width: 146px;
    margin-top: 10px;
    margin-bottom: 7px;
  }

  .home-tagline {
    max-width: none;
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.35;
    white-space: nowrap;
  }

  .home-nav-row {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    grid-template-areas:
      "menu search subscribe"
      "nav nav nav";
    gap: 0;
    min-height: 57px;
    padding: 0 3px;
  }

  .home-menu-toggle {
    grid-area: menu;
    min-height: 56px;
    justify-self: start;
    padding: 0;
    font-size: 11px;
    letter-spacing: 0.15em;
  }

  .home-menu-icon {
    width: 22px;
  }

  .home-nav {
    grid-area: nav;
    margin-top: 0;
  }

  .home-utility-links {
    display: contents;
  }

  .home-utility-links > a:first-child {
    grid-area: search;
    justify-self: center;
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    padding: 0;
    font-size: 10px;
    letter-spacing: 0.15em;
  }

  .home-utility-links > .home-nav-subscribe {
    grid-area: subscribe;
    justify-self: end;
    min-height: 36px;
    padding: 8px 14px 7px;
    font-size: 10px;
    letter-spacing: 0.13em;
  }
}

@media (max-width: 520px) {
  .home-masthead {
    padding-top: 18px;
  }

  .home-wordmark {
    max-width: 340px;
    font-size: clamp(31px, 9vw, 38px);
    letter-spacing: 0.105em;
    line-height: 1.02;
  }

  .home-heart {
    width: 126px;
    margin: 9px 0 7px;
  }

  .home-tagline {
    max-width: 31ch;
    margin-bottom: 16px;
    font-size: 13px;
    white-space: normal;
  }

  .home-nav-row {
    min-height: 55px;
    padding: 0;
  }

  .home-menu-toggle,
  .home-utility-links > a:first-child {
    min-height: 54px;
  }

  .home-menu-toggle {
    font-size: 10px;
  }

  .home-menu-icon {
    width: 19px;
  }

  .home-utility-links > a:first-child,
  .home-utility-links > .home-nav-subscribe {
    font-size: 9px;
  }

  .home-utility-links > .home-nav-subscribe {
    min-height: 34px;
    padding: 7px 11px 6px;
  }
}

/* Site-wide article reading rhythm: compact, legible, and consistent. */
.article-reader-page .home-masthead {
  margin-bottom: clamp(34px, 5vw, 62px);
}

.article-hero-copy h1 {
  max-width: 12em;
  font-size: clamp(48px, 5.8vw, 78px);
  line-height: 1.04;
}

.article-hero-dek {
  margin-top: 22px;
  font-size: clamp(18px, 1.55vw, 21px);
  line-height: 1.48;
}

.article-editorial-disclosure {
  width: min(860px, 100%);
  margin: clamp(36px, 5vw, 58px) auto clamp(42px, 6vw, 66px);
  padding: 20px 0;
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.55;
}

.article-editorial-body {
  width: min(780px, 100%);
}

.article-editorial-body > section {
  margin-bottom: clamp(40px, 5vw, 56px);
}

.article-editorial-body .article-standfirst {
  margin-bottom: clamp(42px, 6vw, 64px);
  padding: clamp(26px, 3.5vw, 40px) 0;
}

.article-editorial-body .article-standfirst p:not(.article-answer-label) {
  max-width: 30em;
  margin-bottom: 14px;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.46;
}

.article-editorial-body .article-standfirst p:last-child {
  margin-bottom: 0;
}

.article-editorial-body h2 {
  margin: clamp(44px, 6vw, 68px) 0 18px;
  font-size: clamp(32px, 3.4vw, 46px);
  letter-spacing: -0.02em;
  line-height: 1.14;
  text-wrap: balance;
}

.article-editorial-body h3 {
  margin: 34px 0 12px;
  font-size: clamp(24px, 2.3vw, 31px);
  line-height: 1.22;
  text-wrap: balance;
}

.article-editorial-body p,
.article-editorial-body li {
  font-size: clamp(17px, 1.25vw, 19px);
  line-height: 1.62;
}

.article-editorial-body p {
  margin-bottom: 16px;
  text-wrap: pretty;
}

.article-editorial-body .article-rich-content ul,
.article-editorial-body .article-rich-content ol {
  margin: 8px 0 22px;
  padding-left: 25px;
}

.article-editorial-body .article-rich-content li,
.article-editorial-body .editorial-red-list li {
  margin-bottom: 7px;
}

.article-editorial-body .article-rich-content li:last-child,
.article-editorial-body .editorial-red-list li:last-child {
  margin-bottom: 0;
}

.article-editorial-body .article-callout,
.article-editorial-body .article-shop-notes {
  margin: clamp(26px, 4vw, 40px) 0;
  padding: clamp(20px, 3vw, 28px);
}

.article-editorial-body .article-callout > :last-child,
.article-editorial-body .article-shop-notes > :last-child {
  margin-bottom: 0;
}

.article-editorial-body .article-rich-content blockquote {
  margin: clamp(40px, 6vw, 62px) auto;
  padding: clamp(30px, 4vw, 40px) clamp(10px, 3vw, 34px);
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.28;
}

.article-inline-image {
  margin: clamp(36px, 5vw, 56px) auto;
}

.article-editorial-body hr {
  margin: clamp(40px, 6vw, 60px) 0;
}

.article-editorial-body .faq-item {
  padding: 20px 0;
}

.article-editorial-body .faq-item summary {
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.3;
}

@media (max-width: 640px) {
  .article-reader-page .home-masthead {
    margin-bottom: 28px;
  }

  .article-hero-copy h1 {
    font-size: clamp(36px, 10vw, 48px);
    line-height: 1.06;
  }

  .article-hero-dek {
    margin-top: 16px;
    font-size: 17px;
  }

  .article-editorial-disclosure {
    margin-top: 30px;
    margin-bottom: 38px;
    padding: 17px 0;
    font-size: 16px;
  }

  .article-editorial-body .article-standfirst {
    margin-bottom: 42px;
    padding: 24px 0;
  }

  .article-editorial-body .article-standfirst p:not(.article-answer-label) {
    font-size: clamp(22px, 6.4vw, 26px);
    line-height: 1.42;
  }

  .article-editorial-body h2 {
    margin: 42px 0 16px;
    font-size: clamp(30px, 7vw, 34px);
    line-height: 1.16;
  }

  .article-editorial-body h3 {
    margin: 30px 0 10px;
    font-size: clamp(23px, 5.5vw, 27px);
  }

  .article-editorial-body p,
  .article-editorial-body li {
    font-size: 17px;
    line-height: 1.58;
  }

  .article-editorial-body p {
    margin-bottom: 14px;
  }

  .article-editorial-body .article-rich-content blockquote {
    margin: 36px auto;
    padding: 28px 4px;
    font-size: clamp(25px, 7vw, 31px);
  }

  .article-inline-image {
    margin: 34px auto;
  }
}

/* Library pages use the same restrained scale as the article reader. */
.public-library-main > .site-page-header,
.public-library-main > .page-header {
  padding: clamp(46px, 6vw, 78px) 0 clamp(32px, 4.5vw, 52px);
}

.public-library-main > .site-page-header h1,
.public-library-main > .page-header h1 {
  max-width: 900px;
  margin: 8px 0 14px;
  font-size: clamp(42px, 5.2vw, 68px);
  line-height: 1.04;
}

.public-library-main > .site-page-header > p:last-child,
.public-library-main > .page-header > div:first-child > p:last-child {
  max-width: 640px;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.48;
}

.public-library-main .site-card-body h3 {
  font-size: clamp(25px, 2.2vw, 32px);
  line-height: 1.1;
}

.public-library-main .site-card-body > p {
  font-size: 16px;
  line-height: 1.48;
}

@media (max-width: 640px) {
  .public-library-main > .site-page-header,
  .public-library-main > .page-header {
    padding-top: 38px;
    padding-bottom: 34px;
  }

  .public-library-main > .site-page-header h1,
  .public-library-main > .page-header h1 {
    max-width: 13em;
    font-size: clamp(34px, 8vw, 42px);
    line-height: 1.06;
  }

  .public-library-main > .site-page-header > p:last-child,
  .public-library-main > .page-header > div:first-child > p:last-child {
    max-width: 34em;
    font-size: 16px;
  }

  .public-library-main .site-card-body h3 {
    font-size: 25px;
  }
}
