/* The Austinian — local draft POC
   Daylight Hill Country paper. Barton water + live oak. Not a bagel clone. */

:root {
  --ink: #f8f1e3;
  --ink-2: #fff8ed;
  --ink-3: #f0e6d4;
  --ink-4: #e3d6c0;
  --limestone: #231e16;
  --limestone-dim: #534b3e;
  --limestone-mute: #7a7163;
  --copper: #2b7a72;
  --copper-bright: #1c655e;
  --copper-dim: #4a9086;
  --ember: #c46a28;
  --ember-dim: #a35418;
  --hill: #3f6e3c;
  --barton: #2f8fa3;
  --violet: #6a5a88;
  --rule: rgba(35, 30, 22, 0.18);
  --rule-strong: rgba(35, 30, 22, 0.38);
  --oak: #6b4f2a;
  --sans: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: "Fraunces", "Source Serif 4", Georgia, "Times New Roman", serif;
  --max: 42rem;
  --page: 46rem;
  --drawer: 420px;
  --banner-h: 0px;
  --header-h: 52px;
  --chips-h: 72px;
}

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

html, body {
  margin: 0;
  padding: 0;
  background: var(--ink);
  color: var(--limestone);
  font-family: var(--sans);
  font-optical-sizing: auto;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

/* faint grain — civic print, not bakery paper */
body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 400;
  opacity: 0.03;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.8  0 0 0 0 0.75  0 0 0 0 0.65  0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ember);
  color: var(--ink);
  padding: 8px 12px;
  z-index: 500;
}
.skip:focus { left: 8px; top: 8px; }

/* —— draft banner (every view) —— */
.draft-banner {
  position: sticky;
  top: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: var(--banner-h);
  background: var(--ink-2);
  border-bottom: 1px solid var(--rule-strong);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--limestone-dim);
}
.draft-banner .kicker {
  color: var(--ember);
  letter-spacing: 0.24em;
}

/* —— site header —— */
.site-header {
  position: sticky;
  top: var(--banner-h);
  z-index: 280;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 52px;
  padding: 6px 16px;
  background: rgba(248, 241, 227, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--limestone);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}
.brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border: 1px solid var(--rule);
}
.brand img.brand-mark {
  object-fit: contain;
  background: var(--ink-2);
}
.wordmark.has-star {
  display: flex;
  align-items: center;
  gap: 14px;
}
.wordmark.has-star .star {
  width: 0.42em;
  height: 0.42em;
  color: var(--copper);
  flex: 0 0 auto;
}
.brand-type {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.brand-type strong {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--limestone);
  line-height: 1.1;
}
.brand-type span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper-bright);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
  justify-content: flex-end;
  flex: 0 0 auto;
}

.btn {
  appearance: none;
  border: 1px solid var(--rule-strong);
  background: transparent;
  color: var(--limestone);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 2px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}
.btn:hover, .btn:focus-visible {
  border-color: var(--copper);
  color: var(--limestone);
  outline: none;
}
.btn-ghost {
  border: 1.5px solid var(--rule-strong);
  background: transparent;
  color: var(--limestone-dim);
}
.btn-fill {
  background: var(--hill);
  border-color: var(--hill);
  color: #f8f1e3;
}
.btn-fill:hover, .btn-fill:focus-visible {
  background: var(--copper-bright);
  border-color: var(--copper-bright);
  color: #f8f1e3;
}
.btn-secondary {
  opacity: 0.78;
  border-color: var(--rule);
  color: var(--limestone-mute);
  font-weight: 500;
}
.btn-secondary:hover, .btn-secondary:focus-visible {
  opacity: 1;
  color: var(--limestone-dim);
  border-color: var(--rule-strong);
}

/* mobile header wrap — do not overlap wordmark */

.header-actions { min-width: 0; }

@media (max-width: 720px) {
  :root { --header-h: 56px; }
  .site-header {
    flex-wrap: wrap;
    row-gap: 6px;
    min-height: unset;
    padding: 8px 12px;
  }
  .brand {
    flex: 1 1 auto;
    max-width: 100%;
    overflow: hidden;
  }
  .brand-type span { display: none; }
  .header-actions {
    flex: 1 1 100%;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 4px;
  }
  .header-actions .btn {
    padding: 7px 8px;
    font-size: 11px;
    letter-spacing: 0.08em;
  }
}

/* —— masthead —— */
.masthead {
  position: relative;
  max-width: none;
  border-bottom: 2px solid var(--limestone);
  background: var(--ink-3);
}
.masthead img {
  display: block;
  width: 100%;
  height: 38vw;
  max-height: 420px;
  min-height: 220px;
  object-fit: cover;
  object-position: center 46%;
  filter: saturate(1.06) contrast(1.08) brightness(1.03);
}
.photo-credit {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 6px 10px 7px 12px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f8f1e3;
  background: rgba(35, 30, 22, 0.55);
  border: 0;
}
.photo-credit a { color: #f8f1e3; text-decoration: underline; text-underline-offset: 2px; }
.masthead-plate {
  max-width: var(--page);
  margin: 0 auto;
  padding: 18px 22px 12px;
  display: grid;
  gap: 8px;
  border-bottom: 2px solid var(--limestone);
}
.edition-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 16px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--limestone-dim);
}
.wordmark {
  font-family: var(--serif);
  font-size: clamp(44px, 9vw, 78px);
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: -0.035em;
  margin: 2px 0 0;
  color: var(--limestone);
  font-variation-settings: "opsz" 144, "SOFT" 20, "wght" 700;
}
.wordmark.has-star .star { color: var(--hill); }
.deck {
  margin: 2px 0 0;
  max-width: 36rem;
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: var(--limestone-dim);
}
.lede {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 4.2vw, 2.15rem);
  font-weight: 700;
  font-variation-settings: "opsz" 96, "SOFT" 18, "wght" 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 2px 0 4px;
  color: var(--limestone);
  max-width: 38ch;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 12px 0 18px;
  font-size: 12px;
  color: var(--limestone-mute);
  letter-spacing: 0.04em;
}
.meta-row strong { color: var(--copper-bright); font-weight: 600; }

/* —— sticky chips —— */
.chip-bar {
  position: sticky;
  top: calc(var(--banner-h) + var(--header-h));
  z-index: 260;
  background: rgba(248, 241, 227, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--rule-strong);
}
.chip-scroller {
  max-width: var(--page);
  margin: 0 auto;
  padding: 8px 22px 12px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 28px), transparent);
  scrollbar-width: none;
}
.chip-scroller::-webkit-scrollbar { display: none; }
.chip.is-off, .chip[hidden] { display: none !important; }
.section { scroll-margin-top: calc(var(--banner-h) + var(--header-h) + 52px); }
.chip {
  appearance: none;
  flex: 0 0 auto;
  border: 1px solid var(--rule);
  background: var(--ink-2);
  color: var(--limestone-dim);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 999px;
  white-space: nowrap;
}
.chip:hover { border-color: var(--barton); color: var(--limestone); }
.chip[aria-pressed="true"] {
  background: var(--hill);
  border-color: var(--hill);
  color: #f8f1e3;
}
.chip:focus-visible { outline: 1px solid var(--copper-bright); outline-offset: 2px; }

/* —— layout —— */
.wrap {
  max-width: var(--page);
  margin: 0 auto;
  padding: 4px 22px 88px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rail {
  display: grid;
  gap: 22px;
  margin-top: 28px;
  padding-top: 8px;
}

/* —— sections —— */
.section {
  margin: 0 0 32px;
  scroll-margin-top: calc(var(--banner-h) + var(--header-h) + var(--chips-h) + 16px);
}
.section[hidden], .section.is-hidden { display: none; }

.section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  border-top: none;
  padding: 16px 0 10px;
  margin-bottom: 6px;
}
.section-head::after {
  content: "";
  width: 52px;
  height: 3px;
  background: var(--hill);
  margin-top: 4px;
}
.section-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--limestone);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.section-head h2 .num {
  color: var(--barton);
  font-family: var(--sans);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
  font-size: 12px;
}
.section-note {
  font-size: 13px;
  line-height: 1.4;
  color: var(--limestone-mute);
  max-width: 36rem;
}

/* —— story cards —— */
.story {
  background: var(--ink-2);
  border: 0;
  border-top: 2px solid var(--limestone);
  border-bottom: 1px solid var(--rule-strong);
  border-radius: 0;
  margin: 0 0 10px;
  padding: 0 12px;
}
.story + .story { }
.story-toggle {
  appearance: none;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  padding: 14px 0 12px;
  font-family: inherit;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 16px;
}
.story-toggle:hover { background: transparent; }
.story-toggle:hover h3 { color: var(--copper-bright); }
.story-toggle:focus-visible {
  outline: 1px solid var(--copper);
  outline-offset: -1px;
}
.story-kicker {
  grid-column: 1;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper-bright);
  font-weight: 600;
}
.story-toggle h3 {
  grid-column: 1;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.32rem, 3.1vw, 1.85rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.016em;
  color: var(--limestone);
}
.story-source-line {
  grid-column: 1;
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--limestone-dim);
}
.expand-hint {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--limestone-mute);
  border: 1px solid var(--rule);
  padding: 5px 8px;
  border-radius: 2px;
  white-space: nowrap;
}
.story.is-open .expand-hint {
  color: var(--copper-bright);
  border-color: var(--copper);
}
.story-body {
  display: none;
  padding: 0 0 22px;
  border-top: none;
}
.story.is-open .story-body { display: block; }
.story.is-open { border-color: var(--rule); }

.why {
  margin: 8px 0 14px;
  padding: 0 0 0 14px;
  border-left: 2px solid var(--barton);
  background: transparent;
  font-size: 16px;
  line-height: 1.45;
  color: var(--limestone);
}
.why strong {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper-bright);
  margin-bottom: 4px;
  font-family: var(--sans);
  font-weight: 700;
}
.blurb {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--limestone);
}
.blurb + .blurb { margin-top: -4px; }
.official {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  margin-right: 12px;
  font-size: 12px;
  color: var(--copper-bright);
  text-decoration: none;
  border-bottom: 1px solid var(--copper-dim);
}
.official:hover { color: var(--limestone); border-color: var(--limestone-dim); }
.pending {
  display: inline-block;
  margin: 0 0 10px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--limestone);
  border: 1px solid var(--rule-strong);
  padding: 4px 8px;
}

/* empty state */
.empty {
  border: 1px dashed var(--rule-strong);
  padding: 22px 18px;
  background: var(--ink-2);
}
.empty p {
  margin: 0;
  max-width: 38rem;
  color: var(--limestone-dim);
  font-size: 15px;
}

/* —— calendar —— */
.cal-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.view-toggle {
  display: inline-flex;
  border: 1px solid var(--rule);
  border-radius: 2px;
  overflow: hidden;
}
.view-toggle button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--limestone-dim);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 12px;
  cursor: pointer;
}
.view-toggle button[aria-pressed="true"] {
  background: var(--copper);
  color: #f6f0e4;
}
.view-toggle button:focus-visible { outline: 1px solid var(--copper-bright); outline-offset: -1px; }

.cal-list { display: grid; gap: 8px; }
.cal-list.is-hidden, .cal-grid.is-hidden { display: none; }

.cal-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 12px 14px;
  background: var(--ink-2);
  border: 1px solid var(--rule);
  border-left: 2px solid var(--copper);
}
.cal-item time {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper-bright);
  font-weight: 600;
}
.cal-item h3 {
  margin: 0 0 4px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}
.cal-item p { margin: 0; font-size: 13px; color: var(--limestone-dim); }
.cal-item a { color: var(--copper-bright); text-decoration: none; }
.cal-item a:hover { color: var(--limestone); }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule-strong);
}
.cal-dow, .cal-cell {
  background: var(--ink-2);
  min-height: 88px;
  padding: 8px;
}
.cal-dow {
  min-height: 0;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--limestone-mute);
  text-align: center;
  padding: 8px 4px;
}
.cal-cell .d {
  display: block;
  font-size: 11px;
  color: var(--limestone-dim);
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.cal-cell.is-empty { background: var(--ink); }
.cal-cell ul { list-style: none; margin: 0; padding: 0; }
.cal-cell li {
  font-size: 11px;
  line-height: 1.3;
  margin-bottom: 6px;
  color: var(--limestone);
}
.cal-cell a { color: inherit; text-decoration: none; }
.cal-cell a:hover { color: var(--copper-bright); }

@media (max-width: 800px) {
  .cal-grid { grid-template-columns: 1fr; }
  .cal-dow { display: none; }
  .cal-cell { min-height: 0; }
  .cal-item { grid-template-columns: 1fr; }
}

/* —— sponsor —— */
.sponsor {
  border: 1px dashed var(--ember-dim);
  background: var(--ink-2);
  padding: 16px 16px 14px;
  margin: 16px 0;
  cursor: default;
  text-align: left;
  width: 100%;
  color: inherit;
  font-family: inherit;
  display: block;
  box-sizing: border-box;
}
.sponsor:hover, .sponsor:focus-visible {
  border-color: var(--ember);
  outline: none;
}
.sponsor .slot-kicker {
  color: var(--ember);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 8px;
}
.sponsor h3 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
}
.sponsor p { margin: 0; font-size: 13px; color: var(--limestone-dim); }
.sponsor a { color: var(--ember); }

/* Promoted cards — same chrome as .story, ember/copper wash, not dashed sponsor */
.story.story-promoted {
  background:
    linear-gradient(180deg, rgba(196, 106, 40, 0.18) 0%, rgba(255, 236, 214, 0.55) 42%, var(--ink-2) 100%);
  border-top: 2px solid var(--ember);
  border-bottom: 1px solid rgba(196, 106, 40, 0.38);
}
.story.story-promoted.is-open {
  border-top-color: var(--ember);
  border-bottom-color: rgba(196, 106, 40, 0.38);
}
.story.story-promoted .story-kicker {
  color: var(--ember);
}
.story.story-promoted .why {
  border-left-color: var(--ember);
}
.story.story-promoted .official { color: var(--ember); }
.story.story-promoted .ad-logo-wrap { margin: 10px 0 8px; }
.story.story-promoted .ad-logo-wrap img {
  max-height: 48px;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

.promoted-mount[hidden] { display: none !important; }
.promoted-mount:not([hidden]) { display: block; margin: 10px 0; }


.aside {
  border: 0;
  background: transparent;
  padding: 8px 0 4px;
}
.aside h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hill);
}
.aside p, .aside li {
  font-size: 13px;
  color: var(--limestone-dim);
  margin: 0 0 8px;
  line-height: 1.45;
}
.aside ul { margin: 0; padding-left: 16px; }
.aside li { margin-bottom: 6px; }

/* —— early subscribe nudge (after masthead) —— */
.sub-nudge {
  max-width: var(--page);
  margin: 0 auto;
  padding: 14px 22px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
  background: var(--ink-2);
  border-bottom: 1px solid var(--rule);
  border-top: 3px solid var(--hill);
  overflow: visible;
}
.sub-nudge-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1 1 200px;
}
.sub-nudge-copy strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--limestone);
  letter-spacing: -0.01em;
}
.sub-nudge-copy span {
  font-size: 13px;
  line-height: 1.4;
  color: var(--limestone-dim);
}
.sub-nudge-cta {
  flex: 0 0 auto;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .sub-nudge { padding: 14px 14px 16px; }
  .sub-nudge-cta { width: 100%; justify-content: center; min-height: 44px; }
}

/* —— subscribe —— */
.subscribe {
  border: 0;
  border-top: 2px solid var(--hill);
  padding: 28px 0 12px;
  background: transparent;
}
#subscribe.subscribe {
  border: 1px solid var(--rule);
  border-top: 3px solid var(--hill);
  padding: 22px 18px 18px;
  background: var(--ink-2);
  border-radius: 2px;
}
.subscribe .sub-kicker {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hill);
}
.subscribe h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--limestone);
  text-transform: none;
}
#subscribe.subscribe h3 {
  font-size: clamp(24px, 5vw, 30px);
  line-height: 1.15;
}
.subscribe p,
.subscribe .sub-value {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--limestone-dim);
}
.subscribe form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#subscribe-form {
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}
.sub-email-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 8px;
  width: 100%;
  min-width: 0;
  overflow: visible;
}
.sub-email-row input[type="email"] {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
}
.sub-email-row button[type="submit"] {
  flex: 0 0 auto;
  align-self: stretch;
  white-space: nowrap;
  min-height: 48px;
  padding: 12px 20px;
  background: var(--hill);
  border: 1px solid var(--hill);
  color: #f8f1e3;
  box-shadow: none;
  overflow: visible;
}
@media (max-width: 420px) {
  .sub-email-row {
    flex-wrap: wrap;
  }
  .sub-email-row input[type="email"] {
    flex: 1 1 100%;
  }
  .sub-email-row button[type="submit"] {
    width: 100%;
  }
}
.sub-mix {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}
.sub-mix-legend {
  display: block;
  width: 100%;
  margin: 0 0 8px;
  padding: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--limestone-dim);
}
.sub-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--rule);
  background: var(--ink-2);
  color: var(--limestone-dim);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
}
.sub-chip:hover { border-color: var(--barton); color: var(--limestone); }
.sub-chip:has(input:checked) {
  background: var(--hill);
  border-color: var(--hill);
  color: #f8f1e3;
}
.sub-chip input[type="checkbox"] {
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: var(--copper);
  flex: 0 0 auto;
}
#subscribe-form > button[type="submit"] {
  align-self: flex-start;
}
#subscribe-form .sub-email-row button[type="submit"] {
  align-self: stretch;
}
.subscribe input[type="email"],
.subscribe input[type="url"] {
  flex: 1 1 200px;
  min-width: 0;
  background: var(--ink-2);
  border: 1px solid var(--rule-strong);
  color: var(--limestone);
  font-family: var(--sans);
  font-size: 16px;
  padding: 12px 14px;
  border-radius: 2px;
}
.subscribe input:focus {
  outline: none;
  border-color: var(--barton);
}
.subscribe button {
  background: var(--hill);
  border: 1px solid var(--hill);
  color: #f8f1e3;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 18px;
  cursor: pointer;
  border-radius: 2px;
  line-height: 1.2;
}
.subscribe button:hover,
.subscribe button:focus-visible {
  background: var(--copper-bright);
  border-color: var(--copper-bright);
  color: #f8f1e3;
  outline: none;
}
.subscribe .sub-consent {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--limestone-mute);
}
.subscribe .sub-consent a {
  color: var(--copper-bright);
  text-underline-offset: 2px;
}
.subscribe .note {
  margin-top: 10px;
  font-size: 13px;
  color: var(--copper-bright);
  min-height: 1.2em;
}
.subscribe .note.is-fail {
  color: var(--ember-dim);
}
.subscribe .phase-note {
  color: var(--limestone-mute);
  min-height: 0;
  font-size: 12px;
  line-height: 1.45;
}
.subscribe .phase-note a {
  color: var(--copper-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}
#subscribe,
.tip-scout {
  scroll-margin-top: calc(var(--header-h) + var(--chips-h) + 12px);
}
.tip-scout .tip-scout-always {
  margin-top: 6px;
  min-height: 0;
  font-size: 12px;
  color: var(--limestone-mute);
}

/* —— drawers —— */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 38, 28, 0.35);
  z-index: 360;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}
.overlay.is-open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(var(--drawer), 100vw);
  background: var(--ink-2);
  border-left: 1px solid var(--rule-strong);
  z-index: 380;
  transform: translateX(100%);
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -16px 0 40px rgba(44,38,28,0.18);
}
.drawer.is-open { transform: translateX(0); }
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 12px;
  border-bottom: 1px solid var(--rule);
}
.drawer-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
}
.drawer-body {
  padding: 16px 18px 32px;
  overflow-y: auto;
  flex: 1;
}
.icon-btn {
  appearance: none;
  background: transparent;
  border: 1px solid var(--rule);
  color: var(--limestone);
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  border-radius: 2px;
}
.icon-btn:hover, .icon-btn:focus-visible { border-color: var(--copper); outline: none; }

.tier {
  border: 1px solid var(--rule);
  padding: 14px;
  margin-bottom: 10px;
  background: var(--ink);
}
.tier h3 {
  margin: 0 0 4px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tier p { margin: 0; font-size: 13px; color: var(--limestone-dim); }
.tier .price {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ember);
}

.source-filter {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--rule-strong);
  color: var(--limestone);
  font-family: var(--sans);
  font-size: 14px;
  padding: 10px 12px;
  margin-bottom: 12px;
  border-radius: 2px;
}
.source-filter:focus { outline: none; border-color: var(--copper); }
.source-list { list-style: none; margin: 0; padding: 0; }
.source-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
}
.source-list a {
  color: var(--copper-bright);
  text-decoration: none;
  font-size: 13px;
  word-break: break-all;
}
.source-list a:hover { color: var(--limestone); }
.source-list .name {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--limestone-dim);
  margin-bottom: 2px;
}
.source-list li.is-hidden { display: none; }

.footer {
  max-width: var(--page);
  margin: 0 auto;
  padding: 16px 22px 56px;
  border-top: 1px solid var(--rule);
  color: var(--limestone-mute);
  font-size: 12px;
}
.footer p { margin: 8px 0; }
.footer a {
  color: var(--limestone-mute);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer a:hover, .footer a:focus-visible {
  color: var(--copper-bright);
}

@media (max-width: 640px) {
  :root { --header-h: 56px; --chips-h: 64px; }
  .site-header, .chip-scroller, .masthead-plate, .wrap, .footer { padding-left: 14px; padding-right: 14px; }
  .site-header { padding-top: 4px; padding-bottom: 4px; gap: 8px; }
  .brand { gap: 8px; }
  .brand img { width: 32px; height: 32px; }
  .brand-type span { display: none; }
  .lede { max-width: none; font-size: 1.18rem; }
  .wordmark { font-size: clamp(36px, 11vw, 48px); }
  .brand-type strong { font-size: 14px; letter-spacing: 0.06em; }
  .expand-hint { display: none; }
  .header-actions .btn span.hide-sm { display: none; }
  .header-actions { gap: 5px; }
  .btn {
    font-size: 10px;
    letter-spacing: 0.08em;
    padding: 7px 9px;
  }
  .header-actions .btn-fill {
    font-size: 11px;
    padding: 8px 12px;
  }
  .header-actions .btn-secondary {
    display: none;
  }
  .masthead img {
    height: 210px;
    min-height: 180px;
    max-height: 240px;
    object-position: center 48%;
  }
  .masthead-plate { padding-top: 10px; padding-bottom: 8px; gap: 4px; }
  .edition-line { font-size: 10px; gap: 4px 10px; }
  .deck { display: none; }
  .chip-scroller { padding-top: 8px; padding-bottom: 12px; }
  .chip { padding: 6px 11px; font-size: 11px; }
  .story-toggle { padding: 12px 0 10px; }
  .story { padding: 0 10px; margin-bottom: 8px; }
  .section-head { padding-top: 12px; padding-bottom: 6px; }
  .date-filter { margin-bottom: 4px; padding-bottom: 2px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .drawer, .overlay { transition: none; }
}


/* editorial stills — quiet, not flashy */
.lead-art {
  margin: 0 0 28px;
  border: 0;
  border-bottom: 1px solid var(--rule);
  background: transparent;
}
.lead-art img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(1.06) contrast(1.03);
}
.lead-art img[src*="real-weekend"] { object-position: center 22%; }
.lead-art img[src*="real-shows"] { object-position: center 18%; }
.lead-art img[src*="real-sports"] { object-position: center 40%; }
.lead-art img[src*="real-kids"] { object-position: center 42%; }
.lead-art img[src*="real-openings"] { object-position: center 8%; }
.lead-art figcaption {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--limestone-mute);
  padding: 8px 12px 10px;
  border-top: 1px solid var(--rule);
}
.story-art {
  margin: 0;
  border-bottom: 1px solid var(--rule);
}
.story-art img {
  display: block;
  width: 100%;
  height: 168px;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(1.04) contrast(1.02);
}
.story.has-art .story-toggle { border-top: 0; }
.social-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 0 0 22px;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  background: var(--ink-2);
  font-size: 13px;
  color: var(--limestone-dim);
}
.social-strip strong { color: var(--limestone); font-weight: 600; }
.social-strip a { color: var(--copper-bright); }
.weekend-block { margin: 16px 0 8px; }
.weekend-block h3 {
  font-family: var(--serif);
  font-size: 18px;
  margin: 18px 0 8px;
}

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


/* nearby cities strip */
.nearby-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.nearby-card {
  background: var(--ink-2);
  border: 0;
  border-top: 2px solid var(--limestone);
  border-bottom: 1px solid var(--rule-strong);
  padding: 16px 12px;
  margin: 0 0 10px;
}
.nearby-card .place {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hill);
  font-weight: 700;
  margin: 0 0 8px;
}
.nearby-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 8px;
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.nearby-card p { margin: 0; font-size: 15px; color: var(--limestone-dim); line-height: 1.5; }
.nearby-card a { color: var(--copper-bright); text-decoration: none; }
.nearby-card a:hover { color: var(--limestone); }
.nearby-card.is-empty { border-top-color: var(--ink-4); }
.nearby-card.is-empty h3 { color: var(--limestone-mute); font-size: 18px; }
@media (max-width: 800px) {
  .nearby-grid { grid-template-columns: 1fr; }
}

/* —— subscriber mix —— */
.pref-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
}
.pref-row input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--copper);
  flex: 0 0 auto;
}
.pref-row label {
  font-size: 14px;
  line-height: 1.4;
  color: var(--limestone);
  cursor: pointer;
}
.pref-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.pref-actions .btn-save {
  background: var(--copper);
  border-color: var(--copper);
  color: #f6f0e4;
}
.pref-actions .btn-save:hover,
.pref-actions .btn-save:focus-visible {
  background: var(--copper-bright);
  border-color: var(--copper-bright);
  color: #f6f0e4;
}
.pref-lead {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--limestone-dim);
}

.chip[aria-disabled="true"],
.chip.is-dim {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.mix-status {
  max-width: var(--page);
  margin: 0 auto;
  padding: 2px 22px 8px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--limestone-mute);
}

.date-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  padding: 0 0 6px;
  background: transparent;
  border: 0;
}
.date-filter-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper-bright);
  font-weight: 700;
  margin-right: 4px;
}
.date-filter .chip {
  padding: 6px 9px;
  font-size: 10px;
}
.date-filter input[type="date"] {
  background: var(--ink);
  border: 1px solid var(--rule-strong);
  color: var(--limestone);
  font-family: var(--sans);
  font-size: 12px;
  padding: 6px 8px;
  border-radius: 2px;
}
.date-filter input[type="date"]:focus {
  outline: none;
  border-color: var(--copper);
}

.pref-empty {
  border: 1px dashed var(--rule-strong);
  background: var(--ink-2);
  padding: 18px 16px;
  margin-bottom: 10px;
}
.pref-empty .story-kicker {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper-bright);
  font-weight: 600;
  margin: 0 0 6px;
}
.pref-empty h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}
.pref-empty p {
  margin: 0;
  font-size: 14px;
  color: var(--limestone-dim);
  max-width: 38rem;
}

.story.is-hidden,
.story[hidden],
.cal-item.is-hidden,
.cal-item[hidden],
.pref-empty.is-hidden,
.pref-empty[hidden] {
  display: none;
}

@media (max-width: 640px) {
  .mix-status { padding-left: 14px; padding-right: 14px; }
}


/* 3-up stills under the masthead plate — graphics, not stickers */
.photo-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  background: var(--ink);
  border-bottom: 1px solid var(--rule-strong);
}
.photo-band figure {
  margin: 0;
  background: var(--ink-2);
}
.photo-band img {
  display: block;
  width: 100%;
  height: 140px;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
}
.photo-band figcaption {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--limestone-mute);
  padding: 6px 10px 8px;
  background: var(--ink-2);
}
@media (max-width: 640px) {
  .photo-band img { height: 110px; }
}

.art-credit {
  margin: 6px 0 0;
  font-size: 11px;
  color: var(--limestone-mute);
}
.nearby-card .card-art {
  margin: 0 0 12px;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.nearby-card .card-art img {
  display: block;
  width: 100%;
  height: 90px;
  object-fit: cover;
  object-position: center 45%;
  filter: saturate(1.04) contrast(1.02);
}


/* —— contact page —— */
.contact-plate { padding-bottom: 18px; }
.contact-wrap { grid-template-columns: 1fr; max-width: 720px; }
.contact-main { width: 100%; }
.contact-section { padding-top: 8px; }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}
.contact-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--limestone-dim);
}
.contact-field input,
.contact-field textarea {
  width: 100%;
  box-sizing: border-box;
  background: var(--ink);
  border: 1px solid var(--rule-strong);
  color: var(--limestone);
  font-family: var(--sans);
  font-size: 15px;
  padding: 11px 12px;
  border-radius: 2px;
  resize: vertical;
}
.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: var(--copper);
}
.contact-form .btn-save {
  align-self: flex-start;
  background: var(--copper);
  border-color: var(--copper);
  color: #f6f0e4;
}
.contact-form .btn-save:hover,
.contact-form .btn-save:focus-visible {
  background: var(--copper-bright);
}
.contact-form .btn-save:disabled {
  opacity: 0.6;
  cursor: wait;
}
.contact-form .note {
  margin: 0;
  font-size: 14px;
  color: var(--copper-bright);
  min-height: 1.2em;
}
.contact-form .note.is-fail {
  color: var(--ember-dim);
}


/* —— email teaser strip on the paper (full-bleed, no 600px frame) —— */
.teaser {
  background: transparent;
  border-bottom: none;
}
.teaser .section-head h2 { font-size: 13px; }
.teaser-cards {
  display: grid;
  gap: 0;
}
.teaser-card {
  padding: 20px 0 22px;
  border-top: 1px solid var(--rule);
}
.teaser-card h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 4px 0 8px;
  color: var(--limestone);
  font-weight: 600;
}
.teaser-card p {
  margin: 0;
  color: var(--limestone-dim);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.5;
}
.teaser-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 8px 0 28px;
}
.teaser-cta a.paper-btn {
  display: inline-block;
  background: var(--hill);
  color: #f8f1e3 !important;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 2px;
  font-size: 12px;
}
.teaser-cta .hint {
  font-size: 12px;
  color: var(--limestone-mute);
  margin: 0;
}
.pref-empty h3 { margin-top: 8px; }
.lead-art img[src*="kids-photo"] { object-position: 38% 28%; }

.ad-steps { margin: 0 0 16px; padding-left: 1.2em; }
.ad-steps li { margin: 0.35em 0; }
.ad-choice { display: flex; gap: 8px; align-items: flex-start; font-size: 15px; margin: 6px 0; color: var(--limestone); }
.ad-choice input { margin-top: 3px; }
.ad-days { display: none; }
.ad-attest { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; line-height: 1.4; }
.ad-attest input { margin-top: 4px; }
.ad-total { margin: 0; font-weight: 650; }
.ad-foot { font-size: 13px; color: var(--limestone-mute); }
.ad-legend { display: block; margin-bottom: 6px; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--limestone-dim); }
.ad-form fieldset { border: 0; margin: 0; padding: 0; }
.ad-form legend { margin-bottom: 6px; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--limestone-dim); }
.contact-wrap .is-hidden { display: none !important; }

.ad-cal {
  border: 1px solid var(--rule-strong);
  background: var(--ink-2);
  padding: 12px 10px 14px;
  border-radius: 2px;
}
.ad-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}
.ad-cal-nav h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  text-align: center;
  flex: 1;
}
.ad-cal-nav button {
  appearance: none;
  border: 1px solid var(--rule-strong);
  background: var(--ink);
  color: var(--limestone);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 10px;
  min-height: 40px;
  cursor: pointer;
  border-radius: 2px;
}
.ad-cal-weekdays,
.ad-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}
.ad-cal-weekdays span {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--limestone-mute);
  padding: 2px 0 6px;
}
.ad-cal-pad { min-height: 42px; }
.ad-cal-day {
  appearance: none;
  min-height: 42px;
  width: 100%;
  border: 1px solid var(--rule);
  background: var(--ink-3);
  color: var(--limestone);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  border-radius: 2px;
  cursor: pointer;
  padding: 6px 0;
}
.ad-cal-day.is-thu {
  background: rgba(43, 122, 114, 0.32);
  border-color: var(--copper);
  color: var(--copper-bright);
}
.ad-cal-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.ad-cal-num { line-height: 1.1; }
.ad-cal-dots {
  display: flex;
  gap: 3px;
  min-height: 6px;
}
.ad-cal-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c4bbb0;
}
.ad-cal-dot.is-open { background: var(--copper-bright); }
.ad-cal-left {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--copper-bright);
  line-height: 1;
}
.ad-cal-day.is-sold {
  background: #cfc6b8;
  border-color: #b7aea0;
  color: #8a8276;
  cursor: not-allowed;
  box-shadow: none;
}
.ad-cal-day.is-past {
  background: transparent;
  border-color: var(--rule);
  color: #9a9286;
  cursor: not-allowed;
  opacity: 0.55;
  box-shadow: none;
}
.ad-cal-day.is-past.is-thu {
  background: transparent;
  color: #9a9286;
  border-color: var(--rule);
}
.ad-cal-day.is-sold .ad-cal-left,
.ad-cal-day.is-sold .ad-cal-dot { color: #8a8276; background: #b7aea0; }
.ad-cal-day.is-selected {
  box-shadow: inset 0 0 0 2px var(--ember);
  background: #e8c9a4;
}
.ad-cal-day.is-thu.is-selected {
  background: var(--copper);
  color: #f6f0e4;
  box-shadow: inset 0 0 0 2px var(--teal, #2b7a72);
}
.ad-cal-day.is-selected:not(.is-sold) {
  cursor: pointer;
}
.ad-cal-caption {
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--limestone-dim);
  min-height: 1.2em;
}
.ad-cal-legend {
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: var(--limestone-dim);
}
.ad-thu-choice {
  margin-top: 10px;
  padding: 10px 10px 4px;
  border: 1px solid var(--copper-dim);
  background: rgba(43, 122, 114, 0.08);
}
.ad-thu-choice legend {
  color: var(--copper-bright);
}
@media (max-width: 390px) {
  .ad-cal { padding: 10px 6px 12px; }
  .ad-cal-day { min-height: 40px; font-size: 13px; }
  .ad-cal-weekdays, .ad-cal-grid { gap: 3px; }
}


.ad-icon-field .ad-icon-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}
.ad-icon-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.ad-icon-drop {
  position: relative;
  width: 96px;
  height: 96px;
  flex: 0 0 96px;
  border: 2px dashed var(--ember);
  background: rgba(196, 106, 40, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
}
.ad-icon-drop input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.ad-icon-drop-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ember);
  pointer-events: none;
  text-align: center;
  padding: 8px;
}
.ad-icon-drop img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ad-icon-url-wrap { flex: 1 1 180px; min-width: 0; }
.ad-icon-url-wrap .note { margin-top: 6px; }
.ad-preview-wrap {
  margin: 22px 0 8px;
  padding: 12px;
  border: 1px solid var(--rule);
  background: var(--ink);
}
.ad-preview-kicker {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ember);
}
.ad-preview-wrap .story-toggle { cursor: default; }

.btn.is-disabled,
.btn.is-disabled:hover,
.btn.is-disabled:focus-visible {
  background: #d8d0c4;
  border-color: #c4bbb0;
  color: #7a7163;
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.85;
}
.ad-buying-paused {
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 1px solid #c4bbb0;
  background: #ebe4d8;
  color: #534b3e;
  font-size: 15px;
  line-height: 1.45;
}
.ad-form.is-paused,
.ad-form.is-paused input,
.ad-form.is-paused textarea,
.ad-form.is-paused button,
.ad-form.is-paused .ad-cal-day,
.ad-form.is-paused .ad-icon-drop {
  pointer-events: none;
  opacity: 0.55;
}
.ad-form.is-paused .btn-save {
  background: #d8d0c4 !important;
  border-color: #c4bbb0 !important;
  color: #7a7163 !important;
}

.lead-art img[src*="local-photo"] { object-position: center 32%; }
.lead-art img[src*="shows-photo"] { object-position: center 28%; }
