/* Please Allow Me — Polsia visual language */

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

:root {
  --bg: #FFFFFF;
  --bg-subtle: #F9F7F4;
  --text: #111111;
  --text-secondary: #666666;
  --text-tertiary: #999999;
  --border: #E5E5E5;
  --accent: #6667AB;
  --accent-dim: #EEEFF5;
  --ivory: #F9F7F4;
  --lavender: #F2F2F7;
  --charcoal: #444444;
  --max: 1180px;
}

html { font-size: 14px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .headline {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: none; }
::selection { background: var(--accent); color: #fff; }
img { max-width: 100%; height: auto; }
.screen-reader-text {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ─── TOPBAR ─── */
.topbar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.topbar__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
}
.topbar__logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--text);
  flex-shrink: 0;
}
.topbar__logo:hover { color: var(--text); }
.topbar__wordmark {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.1;
}
.topbar__tagline {
  display: block;
  margin-top: 5px;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-secondary);
  line-height: 1.3;
  max-width: 16rem;
}
.topbar__underline {
  display: block;
  width: 64px;
  height: 2px;
  background: var(--accent);
  margin-top: 5px;
}

.topbar__menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-left: auto;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.topbar__menu-btn:hover { color: var(--accent); }
.topbar__menu-icon {
  display: block;
  width: 16px;
  height: 1.5px;
  background: currentColor;
  position: relative;
  border-radius: 1px;
  box-shadow: 0 -5px 0 currentColor, 0 5px 0 currentColor;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}
.topbar.is-open .topbar__menu-icon {
  background: transparent;
  box-shadow: none;
}
.topbar.is-open .topbar__menu-icon::before,
.topbar.is-open .topbar__menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 1.5px;
  background: currentColor;
  border-radius: 1px;
}
.topbar.is-open .topbar__menu-icon::before { transform: rotate(45deg); }
.topbar.is-open .topbar__menu-icon::after { transform: rotate(-45deg); }

.topbar__nav {
  display: flex;
  align-items: stretch;
  gap: 0;
  height: 64px;
  margin-left: auto;
}
.topbar__nav a,
.topbar__nav .menu-item a {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0 14px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  height: 100%;
}
.topbar__nav a:hover,
.topbar__nav a.active,
.topbar__nav .current-menu-item a,
.topbar__nav .current_page_item a {
  color: var(--text);
  border-bottom-color: var(--accent);
}
.topbar__nav ul { list-style: none; display: flex; height: 100%; margin: 0; padding: 0; }
.topbar__subscribe {
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  color: var(--accent) !important;
  padding: 0 14px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  height: 100%;
}
.topbar__subscribe:hover { color: var(--text) !important; }
.topbar__brief {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.topbar__brief-note {
  font-size: 0.65rem;
  color: var(--text-tertiary);
  margin-right: 4px;
  white-space: nowrap;
}
.topbar__brief input[type="email"] {
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 5px 8px;
  font-size: 0.72rem;
  width: 150px;
  font-family: Inter, sans-serif;
}
.btn {
  background: var(--accent);
  color: #fff !important;
  border: none;
  border-radius: 3px;
  padding: 6px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  font-family: Inter, sans-serif;
  line-height: 1.2;
}
.btn:hover { opacity: 0.92; }
.btn--wide { width: 100%; padding: 12px 16px; font-size: 0.85rem; }

/* ─── SEARCH ─── */
.feed-search {
  max-width: var(--max);
  margin: 16px auto 0;
  padding: 0 24px;
  position: relative;
}
.feed-search__input {
  width: 100%;
  padding: 11px 40px 11px 14px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font: inherit;
  font-size: 0.85rem;
  background: #fff;
}
.feed-search__input:focus { outline: none; border-color: var(--accent); }
.feed-search__clear {
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 1.1rem;
  color: #666;
  padding: 0 6px;
  display: none;
}
.feed-search__clear.is-visible { display: block; }

/* ─── CATEGORY TABS ─── */
.tabs {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 20;
}
.tabs__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 28px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 28px), transparent 100%);
}
.tabs__inner::-webkit-scrollbar { display: none; }
.tabs__list {
  display: flex;
  align-items: stretch;
  gap: 8px;
  list-style: none;
  min-width: max-content;
}
.tab {
  padding: 7px 14px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
  font-family: inherit;
  line-height: 1.1;
}
.tab:hover { border-color: var(--charcoal); }
.tab.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.tab__label { line-height: 1.1; }
.tab__meta {
  font-size: 0.6rem;
  font-weight: 400;
  color: var(--text-tertiary);
}
.tab.active .tab__meta { color: rgba(255,255,255,0.75); }

/* ─── INTRO / NEWSLETTER ─── */
.about-strip {
  background: var(--ivory);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.about-strip__inner,
.newsletter-band__inner,
.footer__inner,
.page-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
/* Main owns full column width so section shade + borders share one edge */
.main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 0 28px;
}
.about-strip__tagline {
  color: var(--text-secondary);
}
.about-strip__sep {
  color: var(--text-tertiary);
}
.about-strip__text {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 820px;
}
.about-strip__text strong { color: var(--text); font-weight: 500; }

.newsletter-cta {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 32px;
  margin: 28px 0 8px;
}
.newsletter-cta__eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.newsletter-cta__title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.newsletter-cta__copy {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  max-width: 560px;
}
.newsletter-cta__form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  flex-wrap: wrap;
}
.newsletter-cta__form input[type="email"] {
  flex: 1;
  min-width: 180px;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 10px 12px;
  font-size: 0.85rem;
  font-family: Inter, sans-serif;
}

/* ─── FEED SECTIONS ─── */
.feed-section {
  padding: 36px 24px 28px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: -1px; /* collapse adjacent section borders into one line */
}
.feed-section:nth-child(even) {
  background: var(--ivory);
}
.feed-section:first-child {
  border-top: none;
  margin-top: 0;
}
.feed-section.is-hidden { display: none; }

.feed-section__header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.feed-section__category {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.feed-section__count {
  font-size: 0.68rem;
  color: var(--text-tertiary);
}
.feed-section__time {
  margin-left: auto;
  font-size: 0.68rem;
  color: var(--text-tertiary);
}

.article-list { display: flex; flex-direction: column; }

/* Cluster = quiet resume + compact references (Polsia) */
.cluster {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.article-list > .cluster:last-child,
.article-list > .podcast-row:last-child {
  border-bottom: none;
}
.main > .feed-section:last-child {
  border-bottom: none;
}
.cluster__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 24px;
  align-items: start;
}
.cluster__title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.cluster__title-link { color: inherit; }
.cluster__title-link:hover { color: var(--accent); }
.cluster__dek {
  margin: 6px 0 0;
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 46rem;
}
.cluster__meta {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin: 2px 0 0;
  white-space: nowrap;
}
.cluster__outlet {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-tertiary);
}
.cluster__outlet:hover { color: var(--accent); }
.cluster__meta .article__tag {
  flex-shrink: 0;
}
.cluster__when {
  display: inline-block;
  min-width: 4.5rem;
  text-align: right;
  font-size: 0.75rem;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  color: var(--text-secondary);
}
.cluster__related {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  max-width: 46rem;
}
.cluster__related-item {
  margin: 0 0 4px;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--text-secondary);
}
.cluster__related-link { color: inherit; }
.cluster__related-link:hover .cluster__related-title { color: var(--accent); }
.cluster__related-outlet {
  font-weight: 600;
  color: var(--text);
  margin-right: 6px;
}
.cluster__related-title {
  font-weight: 400;
  color: var(--text-secondary);
}
/* hide old one-liner hooks */
.cluster__row, .cluster__line, .cluster__beat, .cluster__cites { display: none; }

.reddit-cites {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}
.reddit-cites__item {
  font-size: 0.72rem;
  color: var(--text-tertiary);
  line-height: 1.4;
  padding: 1px 0;
}
.reddit-cites__label {
  font-weight: 500;
  color: var(--text-tertiary);
  margin-right: 4px;
}
.reddit-cites__link {
  color: var(--text-secondary);
}
.reddit-cites__link:hover { color: var(--accent); }

.empty-row {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  padding: 12px 0;
}
.empty-state {
  padding: 36px 0 28px;
  text-align: left;
}
.empty-state__text {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.empty-state__link a {
  font-size: 0.85rem;
  font-weight: 500;
}

.about-strip__archive {
  margin-left: 6px;
  font-weight: 500;
  white-space: nowrap;
}
.about-strip--archive .about-strip__eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 6px;
}
.about-strip--archive .about-strip__title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.85rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--text);
}
.day-nav {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

.archive-days {
  list-style: none;
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 24px 48px;
}
.archive-days__item {
  border-bottom: 1px solid var(--border);
}
.archive-days__link {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 12px 0;
  color: var(--text);
}
.archive-days__link:hover { color: var(--accent); }
.archive-days__date {
  font-size: 0.92rem;
  font-weight: 500;
}
.archive-days__meta {
  font-size: 0.75rem;
  color: var(--text-tertiary);
}
.archive-days__item--today .archive-days__date { color: var(--accent); }

.footer__archive {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px 28px;
}
.footer__archive-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-tertiary);
  margin-bottom: 8px;
}
.footer__days {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  padding: 0;
  margin: 0;
}
.footer__days a {
  font-size: 0.75rem;
  color: var(--text-secondary);
}
.footer__days a:hover { color: var(--accent); }

/* ─── STATIC PAGES ─── */
.page-hero {
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--border);
}
.page-hero__eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.page-hero__title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--text);
}
.page-hero__lede {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 640px;
}
.page-body {
  padding: 40px 0 64px;
  max-width: 720px;
}
.page-body p { margin-bottom: 1em; color: var(--text-secondary); }
.page-body h2 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.5rem;
  margin: 1.6em 0 0.5em;
  color: var(--text);
}

/* ─── FOOTER ─── */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}
.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__brand { font-size: 0.9rem; font-weight: 600; color: var(--text); }
.footer__tagline {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-style: normal;
  font-size: 0.78rem;
  color: var(--text-tertiary);
  margin-top: 4px;
}
.footer__links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer__links a { font-size: 0.72rem; color: var(--text-secondary); }
.footer__links a:hover { color: var(--text); }

.newsletter-band {
  background: var(--lavender);
  border-top: 1px solid var(--border);
  padding: 22px 0;
  scroll-margin-bottom: 24px;
}
#pam-newsletter-email {
  scroll-margin-bottom: 120px; /* suggestions can sit over the brand footer below */
}
.newsletter-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  flex-wrap: wrap;
}
.newsletter-band__copy-wrap {
  min-width: 0;
}
.newsletter-band__title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.3;
}
.newsletter-band__copy {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 2px;
}
.newsletter-band__form {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 1 auto;
  max-width: 360px;
  width: 100%;
}
.newsletter-band__form input[type="email"] {
  flex: 1 1 auto;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 8px 10px;
  font-size: 0.8rem;
  font-family: Inter, sans-serif;
  background: #fff;
}
.newsletter-band__form .btn {
  flex: 0 0 auto;
  padding: 8px 14px;
  font-size: 0.78rem;
}
.newsletter-band__form.is-done {
  max-width: 420px;
}


/* ─── EVENTS LIST ─── */
.event-row {
  display: grid;
  grid-template-columns: 118px 130px minmax(0, 1fr) 40px 92px;
  gap: 10px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.event-row:last-child { border-bottom: none; }
.event-row.is-filtered-out { display: none; }
.cluster.is-filtered-out { display: none; }
.event-row__dates {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.event-row__city {
  font-size: 0.72rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.event-row__main { min-width: 0; }
.event-row__name {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  margin: 0;
}
.event-row__venue {
  font-size: 0.72rem;
  color: var(--text-tertiary);
  margin-top: 2px;
}

.event-row__ics {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid #D0D0E0;
  border-radius: 3px;
  padding: 2px 6px;
  justify-self: end;
  white-space: nowrap;
}
.event-row__ics:hover {
  background: var(--accent-dim);
}
.event-row .article__tag { justify-self: end; }


.article__tag {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--text-secondary);
  white-space: nowrap;
  line-height: 1.4;
  cursor: pointer;
}
.article__tag:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.article__tag--stays { color: #5A6A4A; border-color: #D5DEC8; background: #F7F9F3; }
.article__tag--travel { color: #1A5C8A; border-color: #B3D4E8; background: #F3F8FC; }
.article__tag--cruise { color: #1F4E79; border-color: #B7C9DE; background: #F2F6FB; }
.article__tag--fb { color: #8A4B2D; border-color: #E5CDBD; background: #FBF6F2; }
.article__tag--wellness { color: #2F6B5A; border-color: #BFE0D4; background: #F3FAF7; }
.article__tag--luxury { color: #6B4E71; border-color: #D9C6DE; background: #F8F4F9; }
.article__tag--tech { color: #6667AB; border-color: #C8C8DC; background: #F4F4FA; }

.article__tag--trade-show { color: #1A5C8A; border-color: #B3D4E8; }
.article__tag--conference { color: #6667AB; border-color: #C8C8DC; }
.article__tag--summit { color: #3D2B1F; border-color: #C9B89E; }
.article__tag--mice { color: #5A3D8A; border-color: #D4C8E8; }

.events-note {
  font-size: 0.72rem;
  color: var(--text-tertiary);
  padding: 28px 0 8px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .article {
    grid-template-columns: 56px 90px 64px minmax(0, 1fr) 64px;
    gap: 8px;
  }
  .related { margin-left: 0; }
  .cluster__byline { margin-left: 0; width: 100%; }
  .topbar__brief-note { display: none; }
}

@media (max-width: 720px) {
  .cluster__top {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .cluster__meta {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .cluster__when {
    margin-left: auto;
    text-align: right;
  }
  .cluster__title {
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .topbar__brief { display: none; }
  .topbar__wordmark { font-size: 0.75rem; letter-spacing: 0.05em; }
  .topbar__nav a { padding: 0 10px; font-size: 0.72rem; }
  .article {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "signal time"
      "source source"
      "tag tag"
      "headline headline";
    gap: 4px 10px;
  }
  .article__signal { grid-area: signal; }
  .article__time { grid-area: time; text-align: right; }
  .article__source { grid-area: source; }
  .article__tag { grid-area: tag; margin: 2px 0 4px; }
  .article__headline {
    grid-area: headline;
    font-size: 1.15rem;
    line-height: 1.35;
  }
  .related { margin-left: 0; padding-left: 0; }

  .event-row {
    grid-template-columns: 1fr auto auto;
    grid-template-areas:
      "dates ics tag"
      "city city city"
      "main main main";
    gap: 4px 10px;
  }
  .event-row__dates { grid-area: dates; }
  .event-row__city { grid-area: city; }
  .event-row__main { grid-area: main; }
  .event-row__ics { grid-area: ics; justify-self: end; }
  .event-row .article__tag { grid-area: tag; justify-self: end; margin: 0; }
  .event-row__name { font-size: 1.15rem; }
  .related__item { flex-direction: column; gap: 2px; padding: 6px 0; }
  .related__time { margin-left: 0; }
  .cluster__line { font-size: 0.88rem; }
  .feed-section {
    padding-left: 16px;
    padding-right: 16px;
  }
  .topbar, .tabs__inner, .feed-search, .about-strip__inner,
  .newsletter-band__inner, .footer__inner, .page-wrap {
    padding-left: 16px;
    padding-right: 16px;
  }
  .newsletter-cta { padding: 22px 18px; }

  /* Mobile nav panel */
  .topbar {
    position: sticky;
    top: 0;
    z-index: 40;
  }
  .topbar__inner {
    flex-wrap: wrap;
    min-height: 56px;
    position: relative;
  }
  .topbar__menu-btn { display: inline-flex; }
  .topbar__nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 8px 0 12px;
    border-top: 1px solid var(--border);
    order: 3;
  }
  .topbar.is-open .topbar__nav { display: flex; }
  .topbar__nav ul {
    flex-direction: column;
    height: auto;
    width: 100%;
  }
  .topbar__nav a,
  .topbar__nav .menu-item a,
  .topbar__subscribe {
    height: auto;
    min-height: 44px;
    padding: 12px 4px;
    border-bottom: none;
    border-left: 2px solid transparent;
    font-size: 0.92rem !important;
  }
  .topbar__nav a:hover,
  .topbar__nav a.active,
  .topbar__nav .current-menu-item a,
  .topbar__nav .current_page_item a {
    border-bottom-color: transparent;
    border-left-color: var(--accent);
  }
  .topbar__subscribe {
    color: var(--accent) !important;
    font-weight: 600 !important;
  }

  /* River density */
  .cluster { padding: 14px 0; }
  .cluster__dek {
    -webkit-line-clamp: 2;
    font-size: 0.84rem;
  }
  .cluster__meta {
    gap: 6px 8px;
    margin-top: 6px;
  }
  .cluster__related { margin-top: 8px; }
  .cluster__related-item { font-size: 0.78rem; }

  /* Footer tap targets */
  .footer__links { gap: 12px 16px; }
  .footer__links a {
    font-size: 0.8rem;
    padding: 6px 0;
    display: inline-block;
  }
  .footer__days { gap: 8px 10px; }
  .footer__days a {
    font-size: 0.8rem;
    padding: 4px 0;
    display: inline-block;
  }

  .tabs { top: 56px; } /* sit under sticky topbar */
}

@media (max-width: 480px) {
  .topbar__wordmark {
    font-size: 0.72rem;
    letter-spacing: 0.04em;
  }
}

.principles {
  list-style: none;
  margin: 28px 0 36px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.principles li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
}
.principles__n {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.principles strong {
  display: block;
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 4px;
}

/* ─── Podcasts page ─── */
.podcast-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px 20px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.podcast-row:has(.podcast-row__art) {
  grid-template-columns: minmax(0, 1fr) 56px;
}
.podcast-row__art-link {
  display: block;
  flex-shrink: 0;
  line-height: 0;
}
.podcast-row__art {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--bg-subtle, #f3f3f5);
  display: block;
}
.podcast-row__art--empty {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: transparent;
  display: block;
}
.podcast-row__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  margin-bottom: 4px;
  font-size: 0.75rem;
  color: var(--text-tertiary);
}
.podcast-row__show { font-weight: 600; color: var(--text-secondary); }
.podcast-row__sep { color: var(--text-tertiary); }
.podcast-row__title {
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}
.podcast-row__title a { color: inherit; }
.podcast-row__title a:hover { color: var(--accent); }
.podcast-row__dek {
  margin: 6px 0 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-secondary);
  max-width: 46rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.podcast-row__listen {
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--text-tertiary);
}
.podcast-row__listen a { font-weight: 600; color: var(--accent); }
.podcast-show-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px 18px;
}
.podcast-show-card {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
}
.podcast-show-card__art {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--bg-subtle);
}
.podcast-show-card__art--empty {
  display: inline-block;
  border: 1px solid var(--border);
}
.podcast-show-card__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.podcast-show-card__meta {
  font-size: 0.72rem;
  color: var(--text-tertiary);
  margin-top: 2px;
}
.article__tag--ops { color: #5A6A4A; border-color: #D5DEC8; background: #F7F9F3; }
.article__tag--leadership { color: #6B4E71; border-color: #D9C6DE; background: #F8F4F9; }
.article__tag--deals { color: #8A4B2D; border-color: #E5CDBD; background: #FBF6F2; }

/* Mobile podcast overrides (must follow base podcast rules) */
@media (max-width: 720px) {
  .podcast-row:has(.podcast-row__art) {
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 12px;
  }
  .podcast-row__art,
  .podcast-row__art--empty {
    width: 44px;
    height: 44px;
  }
  .podcast-row__title {
    font-size: 0.98rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .podcast-row__dek {
    -webkit-line-clamp: 2;
    font-size: 0.82rem;
  }
  .podcast-show-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 10px;
  }
  .podcast-show-card__art,
  .podcast-show-card__art--empty {
    width: 44px;
    height: 44px;
  }
  .podcast-show-card__name { font-size: 0.82rem; }
}
