/* Weekly city digest — magazine-column styling */

.wk-main { max-width: 860px; margin: 0 auto; padding: 18px 14px 60px; }

/* Breadcrumb */
.wk-breadcrumb {
  font-size: 13px; color: var(--muted); margin-bottom: 16px;
  display: flex; flex-wrap: wrap; gap: 6px; align-items: center;
}
.wk-breadcrumb a { color: var(--accent); text-decoration: none; }
.wk-breadcrumb a:hover { text-decoration: underline; }
.wk-breadcrumb span:last-child { color: var(--text); }

/* City tabs */
.wk-city-tabs {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-bottom: 18px; padding-bottom: 12px;
  border-bottom: 1px solid var(--surface-2);
}
.wk-city-tab {
  padding: 6px 14px; border-radius: 999px;
  border: 1.5px solid var(--surface-2); background: var(--surface);
  color: var(--text); font-size: 13px; text-decoration: none; font-weight: 600;
}
.wk-city-tab:hover { border-color: var(--accent-2); }
.wk-city-tab--active {
  background: var(--accent); color: #fff; border-color: var(--accent); cursor: default;
}

/* Header — override the global `header { display: flex }` from styles.css */
.wk-header {
  display: block; position: static; padding: 0; background: transparent;
  border: none; min-height: 0; margin-bottom: 28px;
}
.wk-eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700;
  color: var(--accent); text-transform: none; letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.wk-headline {
  font-size: 34px; line-height: 1.2; font-weight: 800; margin: 0 0 6px;
  color: var(--text);
}
.wk-dateline { font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.wk-intro {
  font-size: 17px; line-height: 1.7; color: var(--text);
  border-inline-start: 3px solid var(--accent-2); padding-inline-start: 14px;
  margin: 0;
}

/* Hero highlight */
.wk-hero {
  display: grid; grid-template-columns: 1fr; gap: 16px;
  background: var(--surface); border: 1px solid var(--surface-2);
  border-radius: 18px; padding: 16px; margin-bottom: 32px;
  box-shadow: 0 2px 10px rgba(174, 47, 52, 0.05);
}
@media (min-width: 640px) {
  .wk-hero { grid-template-columns: 1fr 1.2fr; align-items: center; }
}
.wk-hero-img {
  border-radius: 12px; overflow: hidden; aspect-ratio: 4/3;
  background: var(--surface-2);
}
.wk-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wk-hero-img--fallback {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, hsl(345, 80%, 78%), hsl(20, 90%, 82%));
  font-size: 88px;
}
.wk-hero-eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700;
  color: var(--accent-2); margin-bottom: 6px;
}
.wk-hero-title {
  font-size: 24px; line-height: 1.3; font-weight: 800; margin: 0 0 8px;
}
.wk-hero-meta { font-size: 14px; color: var(--muted); margin-bottom: 10px; }
.wk-hero-blurb {
  font-size: 16px; line-height: 1.6; color: var(--text);
  margin: 0 0 14px;
}
.wk-hero-cta {
  display: inline-block; padding: 10px 18px; border-radius: 999px;
  background: var(--accent); color: #fff; text-decoration: none;
  font-weight: 700; font-size: 14px;
}

/* Highlights row */
.wk-highlights { margin-bottom: 32px; }
.wk-highlights h2,
.wk-section h2,
.wk-all h2,
.wk-archive h2,
.wk-cta h2 {
  font-size: 22px; font-weight: 800; margin: 0 0 12px; color: var(--text);
}
.wk-highlights-grid {
  display: grid; grid-template-columns: 1fr; gap: 14px;
}
@media (min-width: 540px) { .wk-highlights-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 840px) { .wk-highlights-grid { grid-template-columns: repeat(3, 1fr); } }

.wk-highlight-card,
.wk-card {
  display: block; text-decoration: none; color: inherit;
  background: var(--surface); border: 1.5px solid var(--surface-2);
  border-radius: 14px; overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.1s;
}
.wk-highlight-card:hover,
.wk-card:hover {
  border-color: var(--accent-2);
  box-shadow: 0 4px 14px rgba(174, 47, 52, 0.08);
}
.wk-card-img {
  height: 140px; background: var(--surface-2) center/cover;
}
.wk-card-img--fallback {
  display: flex; align-items: center; justify-content: center; font-size: 56px;
  background: linear-gradient(135deg, hsl(345, 70%, 80%), hsl(20, 85%, 85%));
}
.wk-card-body { padding: 12px 14px; }
.wk-card-meta { font-size: 12px; color: var(--muted); margin-bottom: 4px; }
.wk-card-title {
  font-size: 15px; line-height: 1.35; font-weight: 700; margin: 0 0 6px;
}
.wk-card-venue { font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.wk-card-pills { display: flex; gap: 4px; flex-wrap: wrap; }
.wk-pill {
  display: inline-block; padding: 2px 8px; border-radius: 999px;
  font-size: 11px; font-weight: 600; background: var(--surface-2); color: var(--text);
}
.wk-pill--free { background: #d4f5e9; color: #006a62; }
.wk-pill--sold { background: #f5d4d4; color: #ae2f34; }
.wk-highlight-hook {
  font-size: 13px; line-height: 1.5; color: var(--text); margin: 0 0 6px;
}

/* Sections */
.wk-section { margin-bottom: 32px; }
.wk-section-lede {
  font-size: 15px; line-height: 1.6; color: var(--muted);
  margin: 0 0 14px;
}
.wk-section-grid {
  display: grid; grid-template-columns: 1fr; gap: 12px;
}
@media (min-width: 640px) { .wk-section-grid { grid-template-columns: repeat(2, 1fr); } }

/* All-events compact list */
.wk-all { margin-bottom: 36px; }
.wk-day { margin-bottom: 18px; }
.wk-day-title {
  font-size: 15px; font-weight: 700; color: var(--accent);
  margin: 0 0 8px; padding-bottom: 6px;
  border-bottom: 1px solid var(--surface-2);
}
.wk-compact-list { list-style: none; padding: 0; margin: 0; }
.wk-compact-row {
  border-bottom: 1px solid var(--surface-2);
}
.wk-compact-row:last-child { border-bottom: none; }
.wk-compact-row a {
  display: grid; grid-template-columns: 56px 1fr auto;
  gap: 10px; padding: 10px 0; align-items: center;
  text-decoration: none; color: var(--text);
}
.wk-compact-time { font-weight: 700; color: var(--accent); font-size: 14px; }
.wk-compact-title { font-size: 14px; }
.wk-compact-venue { display: none; font-size: 12px; color: var(--muted); }
@media (min-width: 640px) {
  .wk-compact-row a { grid-template-columns: 64px 1fr 1fr auto; }
  .wk-compact-venue { display: inline; }
}
.wk-compact-price { font-size: 12px; color: var(--muted); }

/* CTA */
.wk-cta {
  background: linear-gradient(135deg, #fff8f7, #ffe9e7);
  border: 1px solid #ffd5cf; border-radius: 18px;
  padding: 24px; margin: 32px 0; text-align: center;
}
.wk-cta p { font-size: 14px; line-height: 1.6; color: var(--text); margin: 6px 0 14px; }
.wk-cta .btn-primary {
  display: inline-block; padding: 12px 24px; border-radius: 999px;
  background: var(--accent); color: #fff; text-decoration: none;
  font-weight: 700; font-size: 14px;
}

/* Archive */
.wk-archive { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--surface-2); }
.wk-archive-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.wk-archive-list a {
  display: flex; gap: 10px; padding: 10px 12px; border-radius: 10px;
  background: var(--surface); border: 1px solid var(--surface-2);
  text-decoration: none; color: var(--text); align-items: center;
  flex-wrap: wrap;
}
.wk-archive-list a:hover { border-color: var(--accent-2); }
.wk-archive-date { font-size: 13px; font-weight: 700; color: var(--accent); min-width: 130px; }
.wk-archive-headline { font-size: 13px; color: var(--muted); flex: 1; }

/* Landing page (city picker) */
.wk-landing { max-width: 900px; margin: 0 auto; }
.wk-landing-header {
  display: block; position: static; padding: 24px 16px 32px;
  background: transparent; border: none; min-height: 0;
  text-align: center;
}
.wk-landing-header h1 {
  font-size: 36px; font-weight: 800; margin: 6px 0;
}
.wk-landing-header p {
  font-size: 16px; line-height: 1.6; color: var(--muted); max-width: 540px; margin: 8px auto 0;
}
.wk-landing-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 18px;
}
@media (min-width: 640px) { .wk-landing-grid { grid-template-columns: repeat(2, 1fr); } }
.wk-landing-card {
  display: block; text-decoration: none; color: inherit;
  background: var(--surface); border: 1.5px solid var(--surface-2); border-radius: 18px;
  overflow: hidden; transition: border-color 0.15s, box-shadow 0.15s;
}
.wk-landing-card:hover { border-color: var(--accent-2); box-shadow: 0 6px 18px rgba(174,47,52,0.08); }
.wk-landing-card--empty { opacity: 0.7; cursor: default; }
.wk-landing-card--empty:hover { border-color: var(--surface-2); box-shadow: none; }
.wk-landing-img { height: 160px; background: var(--surface-2) center/cover; }
.wk-landing-img--fallback {
  display: flex; align-items: center; justify-content: center; font-size: 72px;
  background: linear-gradient(135deg, hsl(345, 70%, 82%), hsl(20, 85%, 86%));
}
.wk-landing-body { padding: 16px 18px 20px; }
.wk-landing-body h2 { font-size: 22px; font-weight: 800; margin: 0 0 8px; }
.wk-landing-headline {
  font-size: 14px; line-height: 1.5; color: var(--text); margin: 0 0 10px;
}
.wk-landing-empty { font-size: 13px; color: var(--muted); margin: 0; }
.wk-landing-cta { font-size: 13px; font-weight: 700; color: var(--accent); }

/* Prev/Next pager — cross-issue linking */
.wk-pager {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin: 32px 0 16px;
}
.wk-pager-link {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 16px; border-radius: 14px;
  border: 1px solid var(--surface-2); background: var(--surface);
  text-decoration: none; color: var(--text);
  transition: border-color 0.15s, transform 0.15s;
}
.wk-pager-link:hover { border-color: var(--accent-2); transform: translateY(-2px); }
.wk-pager-next { text-align: end; }
.wk-pager-prev { text-align: start; }
.wk-pager-dir { font-size: 12px; font-weight: 700; color: var(--accent); }
.wk-pager-headline { font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.4; }
.wk-pager-spacer { display: block; }
