/* ── /next - Next cohort: dates, venue, format & pricing ──────────────
   Premium, calm pricing/logistics page. RTL Hebrew. The discount treatment
   is deliberately quiet (Apple/Nordstrom "regular vs current" clarity); the
   live first-cohort price is the single dominant number. CSS lives here per
   Chrome Workspaces (no inline styles / <style> blocks in the .vue). */

.nc-page {
  background: var(--bg-surface);
  color: var(--text-color);
}

/* ── Shared section scaffolding ──────────────────────────────── */
.nc-section {
  padding: var(--space-3xl) var(--space-xl);
}
.nc-section-alt {
  background: linear-gradient(180deg, #f6faff 0%, #eef5ff 100%);
}
.nc-section-inner {
  max-width: 1120px;
  margin: 0 auto;
}
.nc-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}
.nc-section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-color);
  margin-bottom: var(--space-lg);
}
.nc-section-lead {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 760px;
  margin-bottom: var(--space-2xl);
}

/* Accessibility: announce "regular"/"first-cohort" so the discount isn't
   conveyed by line/color alone. Visually hidden, screen-reader audible. */
.nc-vh {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.nc-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: var(--accent-warm);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 1px 2px rgba(123, 50, 14, 0.1), 0 4px 14px rgba(196, 85, 26, 0.18);
}
.nc-btn-primary:hover {
  background: var(--accent-warm-hover);
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(123, 50, 14, 0.14), 0 8px 22px rgba(196, 85, 26, 0.28);
}
.nc-btn-primary svg { flex: none; }
.nc-btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  background: transparent;
  color: var(--primary-color);
  border: 1.5px solid var(--border-default);
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.nc-btn-secondary:hover {
  border-color: var(--primary-color);
  background: var(--primary-light);
}

/* ── Hero ────────────────────────────────────────────────────── */
.nc-hero {
  padding: var(--space-3xl) var(--space-xl) var(--space-2xl);
  background:
    radial-gradient(900px 460px at 88% -8%, rgba(8, 148, 255, 0.10), transparent 60%),
    radial-gradient(720px 420px at 4% 108%, rgba(189, 50, 214, 0.07), transparent 58%),
    var(--bg-surface);
}
.nc-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(var(--space-xl), 4vw, var(--space-3xl));
  align-items: center;
}
.nc-hero-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.6vw, 52px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--text-color);
  margin: var(--space-sm) 0 var(--space-lg);
}
.nc-hero-lead {
  font-size: clamp(16px, 1.9vw, 20px);
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: var(--space-xl);
}

/* Facts band: full-width 3-up beneath the hero split (Apple spec-row rhythm),
   so the venue image can dominate the upper row without crowding the copy. */
.nc-hero-facts {
  max-width: 1180px;
  margin: var(--space-2xl) auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.nc-hero-fact {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  box-shadow: var(--shadow-sm);
}
.nc-hero-fact-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-tertiary);
  margin-bottom: 10px;
}
.nc-hero-fact-icon { color: var(--primary-color); font-size: 14px; }
.nc-hero-fact-value {
  display: block;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 600;
  color: var(--text-color);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.nc-hero-fact-sub {
  display: block;
  font-size: 13.5px;
  color: var(--text-secondary);
  margin-top: 3px;
}

.nc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
/* Venue figure: wide, clean, shadowless - the Mindspace photo is the hero
   object (Apple-store treatment). The venue wordmark sits in a tinted footer
   strip directly beneath the image, so image + logo read as one venue card.
   A hairline border (not a shadow) defines the card edge on the white hero. */
.nc-hero-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
}
.nc-hero-img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 480px;
  max-height: 620px;
  object-fit: cover;
}
.nc-hero-venue-credit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: var(--space-md) var(--space-lg);
  /* background: linear-gradient(180deg, #f6faff 0%, #eef5ff 100%); */
  border-top: 1px solid var(--border-light);
}
.nc-hero-venue-credit-text {
  font-size: 14px;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
}
.nc-hero-venue-credit-mark {
  height: 19px;
}
.nc-hero-venue-credit-divider {
  width: 1px;
  height: 22px;
  background: rgba(0, 60, 130, 0.18);
}
.nc-mindspace-logo {
  height: 32px;
  width: auto;
}

/* ── Location ────────────────────────────────────────────────── */
.nc-address-card {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-2xl);
}
.nc-address-icon { font-size: 26px; color: var(--primary-color); }
.nc-address-body { display: flex; flex-direction: column; }
.nc-address-name { font-size: 17px; font-weight: 600; color: var(--text-color); }
.nc-address-line { font-size: 14.5px; color: var(--text-secondary); margin-top: 2px; }

.nc-amenities {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-2xl);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.nc-amenity {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin: 0;
}
.nc-amenity-icon-wrap {
  flex: none;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
}
.nc-amenity-icon { font-size: 19px; color: var(--primary-color); }
.nc-amenity-text { display: flex; flex-direction: column; }
.nc-amenity-title { font-size: 15.5px; font-weight: 600; color: var(--text-color); }
.nc-amenity-desc { font-size: 13.5px; color: var(--text-secondary); line-height: 1.5; margin-top: 2px; }

.nc-gallery {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 150px;
  gap: var(--space-md);
}
.nc-gallery-item {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.nc-gallery-item--tall { grid-row: span 2; }
.nc-gallery-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.nc-gallery-item:hover .nc-gallery-img { transform: scale(1.04); }

/* ── Getting there ───────────────────────────────────────────── */
.nc-transit-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}
.nc-transit-map { position: sticky; top: 96px; }
.nc-map-frame {
  display: block;
  width: 100%;
  height: 380px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.nc-map-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  height: 380px;
  border: 1px dashed var(--border-default);
  border-radius: var(--radius-lg);
  background: var(--bg-secondary);
  color: var(--text-secondary);
  text-align: center;
  padding: var(--space-lg);
}
.nc-map-fallback i { font-size: 34px; color: var(--primary-color); }
.nc-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-md);
}
.nc-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border: 1.5px solid var(--border-default);
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  color: var(--text-color);
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.nc-map-btn i { color: var(--primary-color); font-size: 16px; }
.nc-map-btn:hover {
  border-color: var(--primary-color);
  background: var(--primary-light);
  transform: translateY(-1px);
}

.nc-transit-list { list-style: none; padding: 0; margin: 0; }
.nc-transit-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--border-light);
  margin: 0;
}
.nc-transit-item:last-child { border-bottom: 0; }
.nc-transit-icon-wrap {
  flex: none;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  box-shadow: var(--shadow-sm);
}
.nc-transit-icon-wrap i { font-size: 21px; color: var(--primary-color); }
.nc-transit-text { display: flex; flex-direction: column; }
.nc-transit-title { font-size: 17px; font-weight: 600; color: var(--text-color); margin-bottom: 4px; }
.nc-transit-desc { font-size: 14.5px; line-height: 1.65; color: var(--text-secondary); margin: 0; }
.nc-transit-note {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-tertiary);
  margin: 8px 0 0;
  font-style: italic;
}

/* ── Schedule & format ───────────────────────────────────────── */
.nc-schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.nc-schedule-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: var(--shadow-sm);
}
.nc-schedule-card--accent {
  border-color: var(--primary-border);
  background:
    radial-gradient(420px 220px at 100% 0%, rgba(8, 148, 255, 0.06), transparent 60%),
    var(--bg-surface);
}
.nc-schedule-card-icon { font-size: 28px; color: var(--primary-color); margin-bottom: var(--space-md); }
.nc-schedule-card-title {
  font-size: 19px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}
.nc-schedule-card-desc { font-size: 15px; line-height: 1.65; color: var(--text-secondary); margin: 0; }
.nc-schedule-days { list-style: none; padding: 0; margin: 0; }
.nc-schedule-days li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-md);
  padding: 10px 0;
  border-bottom: 1px dashed var(--border-light);
  margin: 0;
}
.nc-schedule-days li:last-child { border-bottom: 0; }
.nc-schedule-day { font-size: 15.5px; font-weight: 600; color: var(--text-color); }
.nc-schedule-hours {
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--primary-color);
  letter-spacing: 0.01em;
  direction: ltr;
}

/* ── Pricing ─────────────────────────────────────────────────── */
.nc-pricing-lead { max-width: 820px; margin-bottom: var(--space-2xl); }
.nc-pricing-lead strong { color: var(--text-color); font-weight: 600; }

.nc-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  align-items: stretch;
}
.nc-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.nc-plan:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* Bundle: quietly highlighted - slightly taller, brand-tinted hairline,
   soft lift. Not labelled "most popular" (no cohort data yet). */
.nc-plan--featured {
  border: 1px solid rgba(8, 148, 255, 0.35);
  box-shadow: var(--shadow-lg);
  margin-block: -12px;
}
.nc-plan-badge {
  position: absolute;
  top: 0;
  inset-inline-end: var(--space-lg);
  transform: translateY(-50%);
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  background: var(--primary-color);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 12px rgba(0, 113, 227, 0.28);
}

.nc-plan-head { min-height: 116px; }
.nc-plan-logo { height: 26px; width: auto; margin-bottom: var(--space-md); }
.nc-plan-bundle-title {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-color);
  letter-spacing: -0.02em;
}
.nc-plan-bundle-logos {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}
.nc-plan-bundle-logo { height: 19px; width: auto; }
.nc-plan-bundle-plus { font-size: 12px; color: var(--text-tertiary); }
.nc-plan-bundle-course-logo { width: 100%; max-width: 230px; }
.nc-plan-bundle-course-logo svg { width: 100%; height: auto; }
.nc-plan-who {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
}

/* Progressive price ladder: regular (struck) -> pilot (live). The drop from a
   muted, struck reference price to the bold live price is the value reveal
   (Apple/retail anchoring); the bundle's live price is tinted brand-blue as
   the climax/best price. */
.nc-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  padding: var(--space-md) 0 6px;
  border-top: 1px solid var(--border-light);
  margin-top: var(--space-md);
}
/* Step 1 - the regular price, struck and muted (the anchor). */
.nc-price-was-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}
.nc-price-was-label {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-tertiary);
}
.nc-price-was {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: #9a9cab;
  letter-spacing: -0.02em;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(154, 156, 171, 0.9);
}
/* Step 2 - the live pilot price (dominant). */
.nc-price-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--primary-color);
  margin-bottom: 0;
}
.nc-price-now {
  font-size: clamp(34px, 4.4vw, 46px);
  font-weight: 600;
  color: var(--text-color);
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-decoration: none;
}
.nc-price--best .nc-price-now { color: var(--primary-color); }
.nc-price-vat {
  font-size: 12.5px;
  color: var(--text-tertiary);
  letter-spacing: 0.01em;
  margin-top: 4px;
}
/* Saving as a pill - quiet but high perceived value. */
.nc-plan-saving {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(196, 85, 26, 0.1);
  color: var(--accent-warm);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: var(--space-sm) 0 0;
}
.nc-plan-bundle-note {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-tertiary);
  margin: 6px 0 0;
}

.nc-plan-includes {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
}
.nc-plan-includes li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-secondary);
  margin: 0;
}
.nc-plan-includes i { color: var(--primary-color); font-size: 13px; margin-top: 3px; flex: none; }

.nc-plan-divider { border: 0; border-top: 1px solid var(--border-light); margin: var(--space-lg) 0 var(--space-md); }
.nc-plan-openday {
  font-size: 13.5px;
  color: var(--text-secondary);
  margin: 0 0 var(--space-lg);
}
.nc-plan-openday strong { color: var(--text-color); font-weight: 600; }
.nc-plan-cta {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}
.nc-pricing-foot {
  font-size: 13.5px;
  color: var(--text-tertiary);
  text-align: center;
  max-width: 720px;
  margin: var(--space-2xl) auto 0;
  line-height: 1.6;
}

/* ── Bonuses ─────────────────────────────────────────────────── */
.nc-bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.nc-bonus-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: var(--shadow-sm);
}
.nc-bonus-icon { font-size: 30px; color: var(--primary-color); margin-bottom: var(--space-md); }
.nc-bonus-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.nc-bonus-desc { font-size: 14.5px; line-height: 1.65; color: var(--text-secondary); margin: 0; }

/* ── Responsive: 1024 (tablet) ───────────────────────────────── */
@media (max-width: 1024px) {
  .nc-section { padding: var(--space-2xl) var(--space-lg); }
  .nc-hero { padding: var(--space-2xl) var(--space-lg); }
  .nc-hero-inner { grid-template-columns: 1fr; gap: var(--space-xl); }
  .nc-hero-figure { order: -1; }
  .nc-hero-img { min-height: 340px; max-height: 460px; }
  .nc-transit-layout { grid-template-columns: 1fr; gap: var(--space-xl); }
  .nc-transit-map { position: static; }
  .nc-amenities { grid-template-columns: repeat(2, 1fr); }
  .nc-gallery { grid-template-columns: repeat(3, 1fr); }
  .nc-plan--featured { margin-block: 0; }
}

/* ── Responsive: 767 (mobile) ────────────────────────────────── */
@media (max-width: 767px) {
  .nc-section { padding: var(--space-2xl) var(--space-md); }
  .nc-hero { padding: var(--space-xl) var(--space-md) var(--space-2xl); }
  .nc-hero-img { min-height: 260px; max-height: 360px; }
  .nc-hero-facts { grid-template-columns: 1fr; }
  .nc-hero-actions { flex-direction: column; align-items: stretch; }
  .nc-hero-actions .nc-btn-primary,
  .nc-hero-actions .nc-btn-secondary { justify-content: center; }
  .nc-schedule-grid { grid-template-columns: 1fr; }
  .nc-amenities { grid-template-columns: 1fr; }
  .nc-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
  .nc-plans { grid-template-columns: 1fr; }
  .nc-plan-head { min-height: 0; }
  .nc-bonus-grid { grid-template-columns: 1fr; }
  .nc-map-frame, .nc-map-fallback { height: 300px; }
  .nc-address-card { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .nc-gallery-img,
  .nc-plan,
  .nc-btn-primary,
  .nc-map-btn { transition: none; }
}

/* ── Teaser (Home + Course overview) ─────────────────────────────
   A premium two-column card: the venue body on the right (RTL reading
   start), the Mindspace venue photo + wordmark credit on the left - so the
   student sees where they will study before clicking through to /next. */
.nc-teaser { padding: var(--space-2xl) var(--space-xl); }
.nc-teaser-inner { max-width: 1080px; margin: 0 auto; }

.nc-teaser-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  margin-top: var(--space-2xl);
}

.nc-teaser-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.nc-teaser-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: var(--space-md);
  font-weight: 500;
}
.nc-teaser-heading {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--text-color);
  margin-bottom: var(--space-md);
}
.nc-teaser-lead {
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 var(--space-xl);
}
.nc-teaser-facts {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.nc-teaser-fact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--space-md) var(--space-lg);
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.nc-teaser-fact-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--text-tertiary);
}
.nc-teaser-fact-label i { color: var(--primary-color); font-size: 13px; }
.nc-teaser-fact-value { font-size: 15px; font-weight: 600; color: var(--text-color); letter-spacing: -0.02em; }
.nc-teaser-footer { display: flex; align-items: center; gap: var(--space-lg); }
.nc-teaser-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--accent-warm);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 15.5px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(123, 50, 14, 0.1), 0 4px 14px rgba(196, 85, 26, 0.18);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.nc-teaser-cta:hover {
  background: var(--accent-warm-hover);
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(123, 50, 14, 0.14), 0 8px 22px rgba(196, 85, 26, 0.28);
}

/* Venue figure: photo + wordmark credit read as one "מקום הלימודים" card,
   mirroring the /next hero figure. */
.nc-teaser-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  border-radius: 7px;
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  box-shadow:
    0 1px 2px rgba(0, 60, 130, 0.06),
    0 16px 40px rgba(0, 60, 130, 0.14);
}
.nc-teaser-img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  max-height: 360px;
  object-fit: cover;
}
.nc-teaser-venue-credit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: var(--space-md) var(--space-lg);
  /* background: linear-gradient(180deg, #f6faff 0%, #eef5ff 100%); */
  border-top: 1px solid var(--border-light);
}
.nc-teaser-venue-text {font-size: 13px;color: var(--text-secondary);display: block;text-align: center;}
.nc-teaser-venue-mark {
  height: 18px;
}
.nc-teaser-venue-divider {
  width: 1px;
  height: 20px;
  background: rgba(0, 60, 130, 0.18);
}

/* Tablet: keep two columns, tighten the gap and the photo height. */
@media (max-width: 1024px) {
  .nc-teaser-card { gap: var(--space-xl); }
  .nc-teaser-img { min-height: 240px; max-height: 300px; }
}

/* Mobile: stack, venue photo on top. */
@media (max-width: 767px) {
  .nc-teaser { padding: var(--space-xl) var(--space-md); }
  .nc-teaser-card { grid-template-columns: 1fr; gap: var(--space-xl); }
  .nc-teaser-figure { order: -1; }
  .nc-teaser-img { min-height: 220px; max-height: 260px; }
  .nc-teaser-facts { flex-direction: column; align-items: stretch; }
  .nc-teaser-footer { width: 100%; }
  .nc-teaser-cta { width: 100%; justify-content: center; }
}
