/* ============================================================
   VENTURE CAFÉ 3.0 — PAGE LAYOUTS
   Section-level layouts that build on site.css tokens.
   ============================================================ */

/* ---- Homepage hero ---- */
.vc-home-hero { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.vc-home-hero-meta { margin-top: 12px; padding-top: 26px; border-top: 1px solid var(--vc-rule); display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 880px) { .vc-home-hero { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .vc-home-hero-meta { grid-template-columns: repeat(2, 1fr); } }

.vc-home-mission { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
@media (max-width: 820px) { .vc-home-mission { grid-template-columns: 1fr; } }
/* No intro/CTA on the left → stats span the full width. */
.vc-home-mission--stats-only { grid-template-columns: 1fr; }

.vc-home-cta { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: end; }
@media (max-width: 820px) { .vc-home-cta { grid-template-columns: 1fr; gap: 28px; } }

/* ---- Session rows (this week) ---- */
.vc-session-row {
  display: grid; grid-template-columns: 86px 132px 1fr auto 28px; gap: 20px; align-items: center;
  padding: 16px 4px; border-top: 1px solid var(--vc-rule); text-decoration: none; color: inherit;
  transition: background 0.14s, padding-left 0.18s;
}
.vc-session-row:last-child { border-bottom: 1px solid var(--vc-rule); }
.vc-session-row:hover { background: rgba(149,205,49,0.08); padding-left: 14px; }
.vc-session-row:hover .vc-session-thumb img { transform: scale(1.06); }
.vc-session-thumb { width: 86px; height: 60px; border-radius: 10px; overflow: hidden; flex: none; background: var(--vc-paper-warm); }
.vc-session-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.vc-session-time { font-size: 12px; letter-spacing: 0.06em; color: var(--vc-ink-soft); white-space: nowrap; }
.vc-session-main { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.vc-session-title { font-family: var(--vc-font-display); font-weight: 700; font-size: 17px; letter-spacing: -0.005em; }
.vc-session-desc { font-size: 13.5px; color: var(--vc-ink-soft); line-height: 1.45; }
.vc-session-arrow { color: var(--vc-mute); display: flex; justify-content: flex-end; transition: transform 0.16s, color 0.16s; }
.vc-session-row:hover .vc-session-arrow { color: var(--vc-green-deep); transform: translateX(4px); }
@media (max-width: 740px) {
  .vc-session-row { grid-template-columns: 1fr auto; gap: 8px 14px; }
  .vc-session-thumb { display: none; }
  .vc-session-time { grid-column: 1; order: -1; }
  .vc-session-main { grid-column: 1 / -1; order: 2; }
  .vc-session-tag { grid-column: 2; grid-row: 1; }
  .vc-session-arrow { display: none; }
}

/* ---- Testimonial dark cards ---- */
.vc-tcard { background: #232323; color: var(--vc-paper); border-radius: var(--vc-radius-lg); padding: 30px; display: flex; flex-direction: column; margin: 0; transition: transform 0.16s ease; }
.vc-tcard:hover { transform: translateY(-3px); }
.vc-tcard .qmark { font-family: var(--vc-font-display); font-weight: 900; font-size: 64px; line-height: 0.5; color: var(--vc-green); height: 34px; display: block; }
.vc-tcard blockquote { font-family: var(--vc-font-display); font-weight: 600; font-size: 19px; line-height: 1.32; letter-spacing: -0.005em; margin: 14px 0 0; flex: 1; }
.vc-tcard .who { display: flex; align-items: center; gap: 13px; margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.15); }
.vc-tcard .who img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex: none; }
.vc-tcard .who .n { font-family: var(--vc-font-display); font-weight: 700; font-size: 14.5px; }
.vc-tcard .who .r { font-family: var(--vc-font-mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 3px; }
.vc-program-row {
  display: grid; grid-template-columns: 104px 1.1fr 1.6fr auto; gap: 28px; align-items: center;
  padding: 18px 4px; border-top: 1px solid var(--vc-rule); text-decoration: none; color: inherit;
  transition: background 0.15s, padding-left 0.18s;
}
.vc-program-row:last-of-type { border-bottom: 1px solid var(--vc-rule); }
.vc-program-row:hover { background: rgba(149,205,49,0.06); padding-left: 14px; }
.vc-program-row:hover .vc-program-thumb img { transform: scale(1.06); }
.vc-program-thumb { width: 104px; height: 78px; border-radius: var(--vc-radius-sm); overflow: hidden; flex: none; background: var(--vc-paper-warm); }
.vc-program-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.vc-program-title { font-family: var(--vc-font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(18px,2vw,25px); letter-spacing: -0.005em; line-height: 1.05; }
.vc-program-desc { font-size: 14px; line-height: 1.55; color: var(--vc-ink-soft); }
.vc-program-meta { font-family: var(--vc-font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--vc-mute); white-space: nowrap; }
@media (max-width: 860px) {
  .vc-program-row { grid-template-columns: 84px 1fr; gap: 8px 18px; }
  .vc-program-title { grid-column: 2; }
  .vc-program-desc { grid-column: 1 / -1; }
  .vc-program-meta { grid-column: 1 / -1; }
}

/* ---- Network grid ---- */
.vc-net-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(24px, 3vw, 44px); align-items: center; }
@media (max-width: 920px) { .vc-net-grid { grid-template-columns: 1fr; } }
.vc-net-dir { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 28px; }
@media (max-width: 480px) { .vc-net-dir { grid-template-columns: 1fr; } }
.vc-net-region h5 { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--vc-green-deep); margin: 0 0 10px; padding-bottom: 8px; border-bottom: 1px solid var(--vc-rule); }
.vc-net-cafes { display: flex; flex-direction: column; gap: 5px; }
.vc-net-cafe { text-decoration: none; color: var(--vc-ink-soft); font-size: 14px; font-weight: 500; transition: color 0.13s; }
.vc-net-cafe:hover { color: var(--vc-green-deep); }
.vc-net-cafe.is-current { color: var(--vc-ink); font-weight: 700; }

/* ---- Events / calendar page ---- */
.vc-events-layout { display: grid; grid-template-columns: 280px 1fr; gap: clamp(24px, 3vw, 48px); align-items: start; grid-template-areas: "rail agenda"; }
.vc-filter-rail { grid-area: rail; }
.vc-cal-agenda { grid-area: agenda; }
/* mobile: single column — rail (filters) on top, then the event list */
@media (max-width: 880px) { .vc-events-layout { grid-template-columns: 1fr; grid-template-areas: "rail" "agenda"; } }
.vc-filter-rail { position: sticky; top: calc(var(--vc-nav-h) + 60px); display: flex; flex-direction: column; gap: 26px; }
@media (max-width: 880px) { .vc-filter-rail { position: static; } }
.vc-filter-block h4 { font-family: var(--vc-font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--vc-mute); margin: 0 0 14px; }
.vc-filter-list { display: flex; flex-direction: column; gap: 8px; }
.vc-filter-opt {
  display: flex; align-items: center; gap: 10px; cursor: pointer; padding: 8px 12px; border-radius: 10px;
  border: 1px solid var(--vc-rule); background: var(--vc-white); color: var(--vc-ink); font-size: 14px; transition: all 0.13s; text-align: left; width: 100%;
}
/* iOS Safari paints <button> text with the system tint (blue) unless colour is set. */
.vc-filter-opt:hover { border-color: var(--vc-ink); }
.vc-filter-opt.active { background: var(--vc-ink); color: var(--vc-paper); border-color: var(--vc-ink); }
.vc-filter-opt .swatch { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.vc-filter-opt .count { margin-left: auto; font-family: var(--vc-font-mono); font-size: 11px; opacity: 0.6; }

/* Filter summary chip — a collapsible dropdown control for a filter block.
   Hidden by default (desktop shows the always-open lists). The chip's inner
   styling is defined here unconditionally so it looks right wherever it shows;
   only the display toggling is width/opt-in specific (see below). */
.vc-filter-summary {
  display: none; align-items: center; gap: 12px; width: 100%; cursor: pointer;
  padding: 11px 15px; border-radius: 12px; border: 1px solid var(--vc-rule);
  background: var(--vc-white); color: var(--vc-ink); text-align: left;
}
.vc-filter-summary.is-set { border-color: var(--vc-ink); }
.vc-filter-summary-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.vc-filter-summary-label { font-family: var(--vc-font-mono); font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--vc-mute); }
.vc-filter-summary-value { font-family: var(--vc-font-display); font-weight: 700; font-size: 14px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.vc-filter-summary-caret { margin-left: auto; flex: none; display: inline-flex; color: var(--vc-mute); transition: transform 0.2s ease; }
.vc-filter-block.is-open .vc-filter-summary-caret { transform: rotate(180deg); }

/* Opt-in dropdown (e.g. Program type) — render as a chip on desktop too, while
   unflagged blocks (Location) keep their full list. Collapsed until .is-open. */
.vc-filter-block--dropdown h4 { display: none; }
.vc-filter-block--dropdown .vc-filter-summary { display: flex; }
.vc-filter-block--dropdown .vc-filter-list { display: none; margin-top: 10px; }
.vc-filter-block--dropdown.is-open .vc-filter-list { display: flex; }

/* Mobile: every filter collapses into its chip to save vertical space. */
@media (max-width: 880px) {
  .vc-filter-rail { gap: 12px; }
  .vc-filter-block h4 { display: none; }
  .vc-filter-summary { display: flex; }
  .vc-filter-list { display: none; margin-top: 10px; }
  .vc-filter-block.is-open .vc-filter-list { display: flex; }
}

/* Calendar block: search bar + rail cards + agenda footers */
/* Filtered-out rows/months/cards carry the [hidden] attribute; class selectors
   like .vc-event-row set display:grid, which would beat the UA [hidden] rule, so
   re-assert it (scoped to the block) for every toggled element. */
.block-calendar [hidden] { display: none !important; }
.vc-cal-search { padding: 14px; display: flex; gap: 12px; align-items: center; margin-bottom: 28px; flex-wrap: wrap; }
.vc-cal-search-field { position: relative; flex: 1; min-width: 220px; }
.vc-cal-search-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--vc-mute); display: inline-flex; }
.vc-cal-search .vc-input { padding-left: 44px; border: none; background: var(--vc-paper); }
.vc-cal-count { font-size: 12px; letter-spacing: 0.1em; color: var(--vc-mute); text-transform: uppercase; }
.vc-cal-clear { font-size: 12px; }
/* Upcoming / Past switch — a segmented control on the search card, shown only when
   the block's "Include past events" is on. Sits first so it reads as the view
   selector for everything below it; wraps to its own line on narrow screens. */
.vc-cal-modes { display: inline-flex; flex: none; gap: 2px; padding: 3px; background: var(--vc-paper-warm); border-radius: var(--vc-radius-pill); }
.vc-cal-mode { font-family: var(--vc-font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--vc-mute); background: none; border: 0; border-radius: var(--vc-radius-pill); padding: 9px 18px; cursor: pointer; transition: background 0.15s, color 0.15s; }
.vc-cal-mode:hover { color: var(--vc-ink); }
.vc-cal-mode.active { background: var(--vc-white); color: var(--vc-ink); box-shadow: var(--vc-shadow-sm); }
/* Load more — the agenda reveals events a batch at a time (see chrome.js). */
.vc-cal-more { display: flex; justify-content: center; margin-top: 28px; }
/* Powered-by-GatherUs banner: full-width, below the calendar list. */
.vc-cal-sync { display: flex; align-items: center; justify-content: space-between; gap: clamp(16px, 3vw, 40px); flex-wrap: wrap; padding: clamp(24px, 3vw, 34px) clamp(22px, 3vw, 40px); margin-top: clamp(28px, 4vw, 48px); }
.vc-cal-sync-text { max-width: 640px; }
.vc-cal-sync .vc-body { color: rgba(255,255,255,0.78); font-size: 15px; line-height: 1.5; margin: 12px 0 0; }
.vc-cal-sync-link { flex: none; }
@media (max-width: 560px) { .vc-cal-sync { flex-direction: column; align-items: flex-start; } }
.vc-cal-thisweek { padding: 3px 9px; font-size: 9.5px; }
.vc-cal-empty { text-align: center; padding: 56px; }
.vc-cal-empty .vc-body { margin-top: 8px; }
.vc-cal-empty .vc-btn { margin-top: 16px; }
.vc-cal-host { margin-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }

.vc-event-row {
  display: grid; grid-template-columns: 80px 104px 1fr auto; gap: 22px; align-items: center;
  background: var(--vc-white); border: 1px solid var(--vc-rule); border-radius: var(--vc-radius-md);
  padding: 16px 20px; text-decoration: none; margin-bottom: 12px;
  /* The card is always light, so pin dark text — otherwise it inherits the white
     text of a dark section background and goes invisible (white-on-white). */
  color: var(--vc-ink);
  transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.vc-event-row:hover { transform: translateY(-2px); border-color: var(--vc-ink); box-shadow: var(--vc-shadow-sm); }
.vc-event-row:hover .vc-event-thumb img { transform: scale(1.06); }
.vc-event-row.featured { border-color: var(--vc-green); border-width: 1.5px; background: linear-gradient(var(--vc-green-soft), var(--vc-white) 60%); }
.vc-event-date { text-align: center; flex: none; }
.vc-event-date .wd { font-family: var(--vc-font-mono); font-size: 9px; letter-spacing: 0.1em; color: var(--vc-green-deep); font-weight: 600; margin-bottom: 3px; }
.vc-event-date .d { font-family: var(--vc-font-display); font-weight: 800; font-size: 32px; line-height: 0.95; }
.vc-event-date .m { font-family: var(--vc-font-mono); font-size: 10px; letter-spacing: 0.14em; color: var(--vc-mute); }
.vc-event-thumb { width: 104px; height: 74px; border-radius: var(--vc-radius-sm); overflow: hidden; background: var(--vc-paper-warm); flex: none; }
.vc-event-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.vc-event-info h3 { font-family: var(--vc-font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.005em; margin: 0 0 7px; line-height: 1.2; }
.vc-event-tags { display: flex; gap: 10px; flex-wrap: wrap; font-family: var(--vc-font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--vc-mute); align-items: center; }
.vc-event-prog { display: inline-flex; align-items: center; gap: 6px; }
.vc-event-cta { flex: none; }
/* Event/session tags — pills in each row + a filter-chip bar above the list */
.vc-event-taglist { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.vc-tagpill { font-family: var(--vc-font-mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--vc-green-deep); background: var(--vc-green-soft); border-radius: var(--vc-radius-pill); padding: 3px 9px; line-height: 1.4; }
.vc-tagfilter { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 22px; }
.vc-tagchip { font-family: var(--vc-font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--vc-ink-soft); background: var(--vc-white); border: 1px solid var(--vc-rule); border-radius: var(--vc-radius-pill); padding: 7px 14px; cursor: pointer; transition: background 0.15s, color 0.15s, border-color 0.15s; }
.vc-tagchip:hover { border-color: var(--vc-ink); }
.vc-tagchip.is-active { background: var(--vc-ink); color: var(--vc-white); border-color: var(--vc-ink); }
.vc-tag-hidden { display: none !important; }
/* light chips on a dark section */
.vc-block--ink .vc-tagchip, .vc-block--dark .vc-tagchip { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.2); }
.vc-block--ink .vc-tagchip:hover, .vc-block--dark .vc-tagchip:hover { border-color: rgba(255,255,255,0.5); }
.vc-block--ink .vc-tagchip.is-active, .vc-block--dark .vc-tagchip.is-active { background: var(--vc-green); color: var(--vc-ink); border-color: var(--vc-green); }
@media (max-width: 720px) {
  .vc-event-row { grid-template-columns: 60px 1fr; gap: 8px 16px; }
  .vc-event-thumb { display: none; }
  .vc-event-cta { grid-column: 1 / -1; }
}
/* Compact rows inside the banner-1 "this week" card. Date + photo are full-height
   left columns; title and button stack in the third column. */
.vc-hero2-card--week .vc-event-row {
  grid-template-columns: 54px 78px 1fr;
  grid-template-rows: auto auto;
  align-items: stretch;
  gap: 0 12px;
  padding: 10px 12px;
  margin-bottom: 8px;
  overflow: hidden;
}
.vc-hero2-card--week .vc-event-taglist { display: none; }   /* too cramped for pills */
.vc-hero2-card--week .vc-event-date { grid-row: 1 / -1; grid-column: 1; display: flex; flex-direction: column; justify-content: center; }
.vc-hero2-card--week .vc-event-date .d { font-size: 26px; }
.vc-hero2-card--week .vc-event-thumb { display: block; grid-row: 1 / -1; grid-column: 2; width: 100%; height: 100%; min-height: 72px; }
.vc-hero2-card--week .vc-event-info { grid-row: 1; grid-column: 3; align-self: center; }
.vc-hero2-card--week .vc-event-info h3 { font-size: 15px; margin-bottom: 4px; }
.vc-hero2-card--week .vc-event-tags { font-size: 10px; gap: 6px; }
.vc-hero2-card--week .vc-event-tags span:not(:first-child) { display: none; } /* keep only the time */
.vc-hero2-card--week .vc-event-cta { grid-row: 2; grid-column: 3; justify-self: start; margin-top: 6px; }
.vc-month-head { font-family: var(--vc-font-mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--vc-green-deep); margin: 28px 0 14px; padding-bottom: 8px; border-bottom: 1px solid var(--vc-rule); display: flex; justify-content: space-between; }
.vc-month-head:first-child { margin-top: 0; }

/* ---- Partner tiers ---- */
.vc-tier-card { display: grid; grid-template-columns: 64px 1fr; gap: 24px; padding: 30px; border: 1px solid var(--vc-rule); border-radius: var(--vc-radius-lg); background: var(--vc-white); position: relative; overflow: hidden; }
.vc-tier-card.featured { background: var(--vc-ink); color: var(--vc-paper); border-color: var(--vc-ink); }
.vc-tier-rank { font-family: var(--vc-font-display); font-weight: 900; font-size: 40px; line-height: 1; letter-spacing: -0.03em; opacity: 0.18; }
.vc-tier-card.featured .vc-tier-rank { opacity: 0.4; color: var(--vc-green); }
.vc-tier-name { font-family: var(--vc-font-display); font-weight: 800; text-transform: uppercase; font-size: 24px; letter-spacing: -0.01em; }
.vc-tier-logos { display: flex; flex-wrap: wrap; gap: 10px 14px; margin-top: 16px; }
.vc-tier-logo { font-family: var(--vc-font-display); font-weight: 700; font-size: 15px; letter-spacing: -0.005em; color: var(--vc-ink-soft); padding: 7px 14px; border: 1px solid var(--vc-rule); border-radius: var(--vc-radius-pill); background: var(--vc-paper); }
.vc-tier-card.featured .vc-tier-logo { color: var(--vc-paper); border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.06); }
.vc-tier-mark { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }

/* ---- Case studies ---- */
.vc-case-card { display: grid; grid-template-columns: 1fr; background: var(--vc-white); border: 1px solid var(--vc-rule); border-radius: var(--vc-radius-lg); overflow: hidden; }
.vc-case-img { aspect-ratio: 16/9; background-size: cover; background-position: center; position: relative; }
.vc-case-stat { position: absolute; right: 16px; bottom: 16px; background: var(--vc-white); border-radius: var(--vc-radius-md); padding: 12px 18px; text-align: center; box-shadow: var(--vc-shadow-md); }
.vc-case-stat .n { font-family: var(--vc-font-display); font-weight: 900; font-size: 30px; line-height: 1; letter-spacing: -0.02em; }
.vc-case-stat .l { font-family: var(--vc-font-mono); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--vc-mute); margin-top: 4px; }
.vc-case-body { padding: 26px; display: flex; flex-direction: column; gap: 12px; }

/* ---- Members / venturer ---- */
.vc-price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
@media (max-width: 820px) { .vc-price-grid { grid-template-columns: 1fr; } }
.vc-price-card { display: flex; flex-direction: column; gap: 18px; padding: 32px; border: 1px solid var(--vc-rule); border-radius: var(--vc-radius-lg); background: var(--vc-white); position: relative; }
.vc-price-card.popular { border: 2px solid var(--vc-green); box-shadow: var(--vc-shadow-md); }
.vc-price-badge { position: absolute; top: -13px; left: 32px; background: var(--vc-green); color: var(--vc-ink); font-family: var(--vc-font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; padding: 5px 12px; border-radius: var(--vc-radius-pill); }
.vc-price-amt { font-family: var(--vc-font-display); font-weight: 900; font-size: 44px; line-height: 1; letter-spacing: -0.03em; }
.vc-price-per { font-family: var(--vc-font-mono); font-size: 12px; color: var(--vc-mute); }
.vc-perk { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--vc-ink-soft); }
.vc-perk svg { flex: none; margin-top: 3px; color: var(--vc-green-deep); }

/* ---- Member dashboard ---- */
.vc-dash-grid { display: grid; grid-template-columns: 240px 1fr; gap: 32px; align-items: start; }
@media (max-width: 800px) { .vc-dash-grid { grid-template-columns: 1fr; } }
.vc-dash-nav { display: flex; flex-direction: column; gap: 4px; position: sticky; top: calc(var(--vc-nav-h) + 40px); }
@media (max-width: 800px) { .vc-dash-nav { position: static; flex-direction: row; flex-wrap: wrap; } }
.vc-dash-link { display: flex; align-items: center; gap: 10px; padding: 11px 15px; border-radius: 10px; text-decoration: none; color: var(--vc-ink-soft); font-weight: 600; font-size: 14.5px; transition: background 0.13s, color 0.13s; cursor: pointer; }
.vc-dash-link:hover { background: var(--vc-white); }
.vc-dash-link.active { background: var(--vc-ink); color: var(--vc-paper); }
.vc-gate { border: 1.5px dashed var(--vc-green); border-radius: var(--vc-radius-lg); padding: 40px; text-align: center; background: var(--vc-green-soft); }

/* ---- Forms ---- */
.vc-form-layout { display: grid; grid-template-columns: 320px 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
@media (max-width: 860px) { .vc-form-layout { grid-template-columns: 1fr; } }
.vc-form-aside { position: sticky; top: calc(var(--vc-nav-h) + 40px); }
@media (max-width: 860px) { .vc-form-aside { position: static; } }
.vc-form-card { background: var(--vc-white); border: 1px solid var(--vc-rule); border-radius: var(--vc-radius-lg); padding: clamp(24px, 3vw, 40px); }
.vc-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 560px) { .vc-form-row { grid-template-columns: 1fr; } }
.vc-form-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 26px; }

/* ---- About ---- */
.vc-team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 720px) { .vc-team-grid { grid-template-columns: repeat(2, 1fr); } }
.vc-team-card { display: flex; flex-direction: column; gap: 4px; }
.vc-team-photo { aspect-ratio: 1; border-radius: var(--vc-radius-md); margin-bottom: 12px; }
.vc-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 760px) { .vc-pillars { grid-template-columns: 1fr; } }

/* ---- News ---- */
.vc-news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .vc-news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .vc-news-grid { grid-template-columns: 1fr; } }
.vc-news-card { display: flex; flex-direction: column; background: var(--vc-white); border: 1px solid var(--vc-rule); border-radius: var(--vc-radius-md); overflow: hidden; text-decoration: none; color: inherit; transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s; }
.vc-news-card:hover { transform: translateY(-3px); box-shadow: var(--vc-shadow-md); border-color: var(--vc-ink); }
.vc-news-img { aspect-ratio: 16/10; }
.vc-news-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.vc-news-meta { font-family: var(--vc-font-mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--vc-mute); display: flex; gap: 10px; }

/* hide search btn on small */
@media (max-width: 600px) { .vc-hide-mobile { display: none; } }

/* ============================================================
   FOCUS AREAS / TOPICS
   ============================================================ */
.vc-topic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 26px); }
@media (max-width: 900px) { .vc-topic-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .vc-topic-grid { grid-template-columns: 1fr; } }
.vc-topic-card { position: relative; display: flex; flex-direction: column; border: 1px solid var(--vc-rule); border-radius: var(--vc-radius-lg); background: var(--vc-white); text-decoration: none; color: inherit; overflow: hidden; transition: transform 0.16s, box-shadow 0.16s, border-color 0.16s; }
.vc-topic-card:hover { transform: translateY(-3px); box-shadow: var(--vc-shadow-md); border-color: var(--vc-ink); }
.vc-topic-card:hover .vc-topic-photo img { transform: scale(1.05); }
.vc-topic-photo { aspect-ratio: 16/10; overflow: hidden; position: relative; background: var(--vc-paper-warm); }
.vc-topic-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.vc-topic-photo .accent { position: absolute; left: 0; right: 0; bottom: 0; height: 5px; }
.vc-topic-photo .badge { position: absolute; top: 12px; right: 12px; }
.vc-topic-body { display: flex; flex-direction: column; gap: 12px; padding: 22px 24px 24px; flex: 1; }
.vc-topic-name { font-family: var(--vc-font-display); font-weight: 800; text-transform: uppercase; font-size: 20px; letter-spacing: -0.01em; line-height: 1.05; }
.vc-topic-blurb { font-size: 14px; line-height: 1.55; color: var(--vc-ink-soft); flex: 1; }
.vc-topic-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 14px; border-top: 1px solid var(--vc-rule); margin-top: auto; }
.vc-topic-count { font-family: var(--vc-font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--vc-mute); }
.vc-topic-owned { font-family: var(--vc-font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; padding: 4px 9px; border-radius: var(--vc-radius-pill); }
.vc-topic-owned.open { background: var(--vc-green-soft); color: var(--vc-green-deep); }
.vc-topic-owned.taken { background: var(--vc-ink); color: var(--vc-paper); }

/* topic partner band */
.vc-topic-partner { display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center; padding: 26px 30px; border-radius: var(--vc-radius-lg); }
.vc-topic-partner.taken { background: var(--vc-ink); color: var(--vc-paper); }
.vc-topic-partner.open { background: var(--vc-green-soft); border: 1.5px dashed var(--vc-green-deep); }
.vc-topic-partner-logo { font-family: var(--vc-font-display); font-weight: 800; font-size: 28px; letter-spacing: -0.01em; padding: 14px 22px; border-radius: var(--vc-radius-md); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); }
@media (max-width: 720px) { .vc-topic-partner { grid-template-columns: 1fr; text-align: left; } }

/* events split: upcoming / past with source badges */
.vc-evt-source { font-family: var(--vc-font-mono); font-size: 9.5px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; padding: 3px 8px; border-radius: var(--vc-radius-pill); flex: none; }
.vc-evt-source.curated { background: var(--vc-accent-2); color: var(--vc-ink); }
.vc-evt-source.auto { background: var(--vc-paper-warm); color: var(--vc-mute); }
.vc-event-row.past { opacity: 0.92; }
.vc-event-row.past .vc-event-date .d { color: var(--vc-mute); }
.vc-topic-band { position: relative; height: clamp(260px, 36vw, 470px); overflow: hidden; background: var(--vc-paper-warm); }
.vc-topic-band img { width: 100%; height: 100%; object-fit: cover; }
.vc-topic-band .accent { position: absolute; left: 0; right: 0; top: 0; height: 6px; }

/* ---- Spaces ---- */
.vc-gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 170px; gap: 14px; }
.vc-gallery figure { margin: 0; overflow: hidden; border-radius: var(--vc-radius-md); position: relative; }
.vc-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.vc-gallery figure:hover img { transform: scale(1.05); }
.vc-gallery .tall { grid-row: span 2; }
.vc-gallery .wide { grid-column: span 2; }
@media (max-width: 760px) { .vc-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; } .vc-gallery .wide { grid-column: span 2; } }
.vc-amenities { display: flex; flex-wrap: wrap; gap: 10px; }
.vc-amenity { display: inline-flex; align-items: center; gap: 9px; padding: 11px 16px; background: var(--vc-white); border: 1px solid var(--vc-rule); border-radius: var(--vc-radius-pill); font-size: 14px; font-weight: 500; }
.vc-amenity .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--vc-green); flex: none; }
.vc-space-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 56px); align-items: center; }
@media (max-width: 820px) { .vc-space-split { grid-template-columns: 1fr; } }

/* ============================================================
   ARROW HERO — signature: two black downward chevrons over media
   ============================================================ */
.vc-arrowhero { position: relative; overflow: hidden; background: #0c0e11; isolation: isolate; }
.vc-arrowhero-media { position: absolute; inset: 0; z-index: 0; }
.vc-arrowhero-media img, .vc-arrowhero-media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.vc-arrowhero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,12,15,0.62) 0%, rgba(10,12,15,0.2) 52%, rgba(10,12,15,0.34) 100%); }
/* the two arrows: downward chevrons with fixed 45° sides (aspect-ratio 2:1 —
   half-width run over full-height drop = 45°). Both are pinned to the TOP and
   only ever grow downward, so their wide edge never leaves the top of the box;
   the container's overflow:hidden crops the point. Sized by width, so they scale
   freely without ever distorting the angle. */
.vc-arrow { position: absolute; left: 50%; transform: translateX(-50%); top: 0; aspect-ratio: 2 / 1; clip-path: polygon(0 0, 100% 0, 50% 100%); pointer-events: none; z-index: 1; }
.vc-arrow-top { width: 156%; background: linear-gradient(180deg, rgba(10,12,15,0.30) 0%, rgba(10,12,15,0.74) 70%, rgba(10,12,15,0.92) 100%); }
.vc-arrow-bottom { width: 120%; background: linear-gradient(180deg, rgba(10,12,15,0.32) 0%, rgba(10,12,15,0.88) 78%, rgba(10,12,15,0.99) 100%); }
.vc-arrowhero-inner { position: relative; z-index: 2; padding-block: clamp(72px, 12vh, 150px); }
.vc-arrowhero .vc-arrowhero-inner { color: var(--vc-paper); }
@media (max-width: 760px) { .vc-arrow-top { width: 230%; } .vc-arrow-bottom { width: 180%; } }

/* hero content + floating event card */
.vc-hero2-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(28px, 4vw, 64px); align-items: center; }
@media (max-width: 900px) { .vc-hero2-grid { grid-template-columns: 1fr; } }
.vc-hero2-card { background: rgba(255,255,255,0.97); color: var(--vc-ink); border-radius: var(--vc-radius-lg); box-shadow: var(--vc-shadow-lg); overflow: hidden; backdrop-filter: blur(4px); }

/* ============================================================
   DICTIONARY DEFINITION
   ============================================================ */
.vc-def-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px, 4vw, 64px); align-items: center; }
@media (max-width: 880px) { .vc-def-grid { grid-template-columns: 1fr; } }
.vc-def { position: relative; border: 1px solid var(--vc-rule); border-radius: var(--vc-radius-lg); background: var(--vc-white); padding: clamp(28px, 3.5vw, 48px); overflow: hidden; }
.vc-def-stamp { position: absolute; top: 22px; right: 22px; display: inline-flex; align-items: center; gap: 7px; transform: rotate(6deg); border: 2px solid var(--vc-green); color: var(--vc-green-deep); border-radius: 8px; padding: 6px 11px; font-family: var(--vc-font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; }
.vc-def-top { display: inline-flex; align-items: center; gap: 12px; font-family: var(--vc-font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--vc-mute); margin-bottom: 16px; }
.vc-def-word { font-family: var(--vc-font-display); font-weight: 800; font-size: clamp(28px, 4vw, 44px); letter-spacing: -0.02em; line-height: 1.05; margin: 0; }
.vc-def-hl { position: relative; isolation: isolate; white-space: nowrap; }
.vc-def-hl::after { content: ""; position: absolute; left: -3px; right: -5px; bottom: 0.1em; height: 0.42em; background: var(--vc-green); opacity: 0.45; z-index: -1; transform: skewX(-12deg) rotate(-1.2deg); border-radius: 2px; }
.vc-speak { appearance: none; border: 1px solid var(--vc-rule); background: var(--vc-paper); width: 34px; height: 34px; border-radius: 50%; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; color: var(--vc-green-deep); transition: background 0.14s, transform 0.14s; flex: none; }
.vc-speak:hover { background: var(--vc-green-soft); transform: scale(1.07); }
.vc-speak.speaking { background: var(--vc-green); color: var(--vc-ink); }
.vc-def-phon { font-family: var(--vc-font-mono); font-size: 14px; color: var(--vc-mute); margin-top: 12px; }
.vc-def-pos { font-style: italic; color: var(--vc-ink-soft); font-size: 15px; margin: 18px 0 14px; }
.vc-def-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; counter-reset: def; }
.vc-def-list li { display: grid; grid-template-columns: 30px 1fr; gap: 14px; align-items: start; }
.vc-def-list li::before { counter-increment: def; content: counter(def); display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: var(--vc-ink); color: var(--vc-paper); font-family: var(--vc-font-mono); font-size: 13px; font-weight: 600; }
.vc-def-list .t { font-size: clamp(14px, 1.15vw, 15.5px); line-height: 1.5; color: var(--vc-ink); }
.vc-def-word-accent { color: var(--vc-green); }
.vc-def-dark .vc-def-word-accent { color: var(--vc-green); }
.vc-def-list .d { color: var(--vc-ink-soft); }
.vc-def-etym { margin-top: 24px; padding-top: 18px; border-top: 1px dashed var(--vc-rule); font-family: var(--vc-font-mono); font-size: 12px; letter-spacing: 0.04em; color: var(--vc-mute); }
.vc-def-etym b { color: var(--vc-green-deep); font-weight: 600; }
/* dark variant of the definition box */
.vc-def-dark { background: #232323; border-color: #232323; color: var(--vc-paper); }
.vc-def-dark .vc-def-top { color: rgba(255,255,255,0.55); }
.vc-def-dark .vc-def-word { color: var(--vc-paper); }
.vc-def-dark .vc-def-phon { color: rgba(255,255,255,0.5); }
.vc-def-dark .vc-def-pos { color: rgba(255,255,255,0.7); }
.vc-def-dark .vc-def-list .t { color: var(--vc-paper); }
.vc-def-dark .vc-def-list .d { color: rgba(255,255,255,0.62); }
.vc-def-dark .vc-def-list li::before { background: var(--vc-green); color: var(--vc-ink); }
.vc-def-dark .vc-def-etym { border-top-color: rgba(255,255,255,0.18); color: rgba(255,255,255,0.5); }
.vc-def-dark .vc-def-etym b { color: var(--vc-green); }
.vc-def-dark .vc-def-stamp { border-color: var(--vc-green); color: var(--vc-green); }
.vc-def-dark .vc-speak { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); color: var(--vc-green); }
.vc-def-dark .vc-def-hl::after { opacity: 0.85; }

/* ============================================================
   INTRO VIDEO
   ============================================================ */
.vc-video { position: relative; border-radius: var(--vc-radius-lg); overflow: hidden; background: #0c0e11; aspect-ratio: 16/10; box-shadow: var(--vc-shadow-md); }
.vc-video video, .vc-video img.poster { width: 100%; height: 100%; object-fit: cover; display: block; }
.vc-video-poster { position: absolute; inset: 0; cursor: pointer; border: 0; padding: 0; background: none; display: flex; align-items: center; justify-content: center; }
.vc-video-poster::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,14,17,0.1), rgba(12,14,17,0.5)); }
.vc-video-poster img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* play badge — theme primary circle with an ink ▶ (slightly nudged to optically centre) */
.vc-video-play { position: relative; z-index: 2; width: 92px; height: 92px; border-radius: 50%; background: var(--vc-primary); color: var(--vc-ink); font-size: 30px; line-height: 1; padding-left: 5px; display: flex; align-items: center; justify-content: center; box-shadow: 0 18px 50px rgba(0,0,0,0.4); transition: transform 0.18s cubic-bezier(.2,.7,.3,1.4); }
.vc-video-poster:hover .vc-video-play { transform: scale(1.08); }
@media (max-width: 560px) { .vc-video-play { width: 70px; height: 70px; font-size: 24px; } }
.vc-video-cap { position: absolute; left: 22px; right: 22px; bottom: 20px; z-index: 2; color: #fff; display: flex; flex-direction: column; gap: 4px; text-align: left; }
.vc-video-cap .vc-mono { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.82); }
.vc-video-cap .vc-h3 { color: #fff; }
/* injected provider iframe (embed mode) fills the frame */
.vc-video-frame { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 3; }
/* once playing, native controls show — the file <video> fills the frame */
.vc-video video { z-index: 1; }

/* ---- Program detail rows ---- */
.vc-prog-detail { border-top: 1px solid var(--vc-rule); padding: clamp(28px, 4vw, 48px) 0; }
.vc-prog-detail:last-child { border-bottom: 1px solid var(--vc-rule); }
.vc-prog-detail-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(24px, 4vw, 56px); align-items: start; }
@media (max-width: 760px) { .vc-prog-detail-inner { grid-template-columns: 1fr; gap: 20px; } }

/* ---- Search page ---- */
.vc-search-result { display: block; padding: 18px 20px; border: 1px solid var(--vc-rule); border-radius: var(--vc-radius-md); background: var(--vc-white); text-decoration: none; color: inherit; margin-bottom: 10px; transition: border-color 0.13s, transform 0.13s; }
.vc-search-result:hover { border-color: var(--vc-ink); transform: translateX(3px); }
.vc-search-kind { font-family: var(--vc-font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--vc-green-deep); }

/* ============================================================
   SINGLE ENTRY TEMPLATES — the automatic "template blocks" that
   single-*.php renders above the Page Builder (hero + body + stats).
   The hero reuses .vc-pagehero (dark) + .vc-hero2-grid + .vc-arrow.
   ============================================================ */
/* ---- Pre banner: "Part of <parent event>" strip ----
   The pre_banner page-builder block (blocks/pre-banner.php), placed above a dark
   banner on a sub-event page. Darker than the banner's #232323 so it reads as its
   own band inside the same dark zone, with no gap between the two. */
.vc-partof-bar { background: #141414; border-bottom: 1px solid rgba(255,255,255,0.1); }
.vc-partof-inner { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; padding-block: 13px; }

/* Sphere + label + parent name are one link to the parent page. */
.vc-partof-link { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.vc-partof-orb { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--vc-green); color: var(--vc-ink); display: inline-flex; align-items: center; justify-content: center; transition: transform 0.18s ease; }
/* Arrow points up: "there is something above this". Only the built-in arrow is
   rotated — a brand icon is drawn the right way up already. */
.vc-partof-orb > svg { display: block; transform: rotate(-90deg); }
.vc-partof-link:hover .vc-partof-orb { transform: translateY(-2px); }
/* A brand icon is two-tone (body + .vc-i-accent highlights in --vc-primary), but
   the sphere is already the accent green — so paint the whole glyph in ink, the
   same weight as the arrow. */
.vc-partof-orb .vc-icon { font-size: 15px; }
.vc-partof-orb .vc-icon svg,
.vc-partof-orb .vc-icon .vc-i-accent { fill: currentColor; }
.vc-partof-orb img { display: block; width: 15px; height: 15px; object-fit: contain; }
.vc-partof-label { font-family: var(--vc-font-mono); font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.vc-partof-name { font-family: var(--vc-font-display); font-weight: 800; font-size: 15px; letter-spacing: 0.01em; text-transform: uppercase; color: #fff; transition: color 0.18s ease; }
.vc-partof-link:hover .vc-partof-name { color: var(--vc-green); }

/* Parent dates + venue. Plain text, preceded by a hairline divider. */
.vc-partof-sub { display: inline-flex; align-items: center; gap: 18px; font-family: var(--vc-font-mono); font-size: 11px; color: rgba(255,255,255,0.45); }
.vc-partof-sub .div { flex: none; width: 1px; height: 18px; background: rgba(255,255,255,0.18); }

/* Right-hand link back to the parent page. */
.vc-partof-cta { margin-left: auto; display: inline-flex; align-items: center; gap: 8px; font-family: var(--vc-font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 2px; transition: color 0.18s ease, border-color 0.18s ease; }
.vc-partof-cta:hover { color: var(--vc-green); border-bottom-color: var(--vc-green); }

/* Sticky: once you scroll past it the strip parks under the site header and rides
   along, so you always know which event you are inside. --vc-header-h is measured
   live by chrome.js (the utility bar collapses on scroll); --vc-nav-h is the
   no-JS fallback. The block's .vc-pblock wrapper is only as tall as the strip
   itself, which would give sticky a zero-length range, so it is taken out of the
   box tree — that makes <main> the containing block and the strip stays put until
   the end of the page. A second pre_banner further down sticks at the same offset
   and, being later in the DOM, takes over the slot as it arrives. */
.vc-pblock:has(> .vc-partof-bar) { display: contents; }
/* scroll-margin lives here rather than on the (box-less) wrapper, so an anchor
   pointing at this block still lands clear of the header. */
.vc-partof-bar { position: sticky; top: var(--vc-header-h, 108px); z-index: 50; scroll-margin-top: 100px; }
/* Without JS there is no --vc-header-h, so fall back to the header's resting
   height: utility bar + nav on desktop, the collapsed nav row on smaller screens. */
@media (max-width: 1040px) { .vc-partof-bar { top: var(--vc-header-h, 72px); } }

/* Phones: two lines. The label stacks over the parent name beside the sphere, and
   the meta + link drop to a second line — at 15px the name alone would eat the
   width and shunt everything else off the strip. */
@media (max-width: 640px) {
	.vc-partof-inner { gap: 9px 14px; padding-block: 11px; }
	.vc-partof-link {
		flex: 1 1 100%;
		display: grid; grid-template-columns: auto minmax(0, 1fr);
		grid-template-areas: "orb label" "orb name";
		column-gap: 11px; row-gap: 1px; align-items: center;
	}
	/* No sphere → drop its column so the text starts at the container edge. */
	.vc-partof-link--bare { grid-template-columns: minmax(0, 1fr); grid-template-areas: "label" "name"; }
	.vc-partof-orb { grid-area: orb; width: 28px; height: 28px; }
	.vc-partof-orb .vc-icon { font-size: 14px; }
	.vc-partof-orb img { width: 14px; height: 14px; }
	.vc-partof-label { grid-area: label; font-size: 9.5px; letter-spacing: 0.16em; }
	.vc-partof-name { grid-area: name; font-size: 13.5px; line-height: 1.2; }
	/* Second line: dates left, link right. The divider is a column separator, so it
	   goes once the meta is no longer beside the name. */
	.vc-partof-sub { font-size: 10.5px; }
	.vc-partof-sub .div { display: none; }
	.vc-partof-cta { font-size: 10px; gap: 6px; padding-bottom: 1px; }
	.vc-partof-cta svg { width: 12px; height: 12px; }
}

.vc-entry-hero .vc-hero2-grid { align-items: center; }
.vc-entry-hero-media { border-radius: var(--vc-radius-lg); overflow: hidden; box-shadow: var(--vc-shadow-lg); }
.vc-entry-hero-media img { display: block; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }

/* Mono meta lines under the hero title (e.g. "Weekly · Thursdays"). */
.vc-entry-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.vc-entry-meta .vc-mono { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); }

/* Body section under the hero (prose + stats). */
.vc-entry-body .vc-prose { max-width: 760px; }
.vc-entry-body .vc-entry-stats + .vc-prose { margin-top: clamp(28px, 4vw, 44px); }

/* Stats strip (impact pillars, case studies). */
.vc-entry-stats { display: flex; flex-wrap: wrap; gap: clamp(20px, 4vw, 48px); }
.vc-entry-stat { display: flex; flex-direction: column; gap: 4px; }
.vc-entry-stat .n { font-family: var(--vc-font-display); font-weight: 900; font-size: clamp(32px, 4vw, 46px); line-height: 1; letter-spacing: -0.02em; color: var(--vc-ink); }
.vc-entry-stat .l { font-family: var(--vc-font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--vc-mute); }

/* ---- Single post: body + authors sidebar ---- */
.vc-post-layout { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: clamp(28px, 4vw, 64px); align-items: start; }
.vc-post-layout--solo { grid-template-columns: minmax(0,1fr); }
.vc-post-layout .vc-prose { max-width: 760px; }
.vc-post-authors { position: sticky; top: calc(var(--vc-nav-h, 72px) + 20px); border-top: 2px solid var(--vc-ink); padding-top: 16px; display: flex; flex-direction: column; gap: 20px; }
.vc-post-authors-title { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--vc-mute); margin: 0; }
.vc-author { display: flex; gap: 12px; align-items: flex-start; }
.vc-author-photo { flex: none; width: 48px; height: 48px; border-radius: 50%; overflow: hidden; background: var(--vc-paper-warm); }
.vc-author-photo img { width: 100%; height: 100%; object-fit: cover; }
.vc-author-text { display: flex; flex-direction: column; gap: 3px; }
.vc-author-name { font-weight: 700; font-size: 15px; color: var(--vc-ink); }
.vc-author-bio { font-size: 13px; line-height: 1.5; color: var(--vc-mute); }
@media (max-width: 860px) { .vc-post-layout { grid-template-columns: 1fr; } .vc-post-authors { position: static; } }

/* ---- Single product: package + buy panel ---- */
.vc-product-layout { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: clamp(28px, 4vw, 56px); align-items: start; }
.vc-product-layout--solo { grid-template-columns: minmax(0,1fr); }
.vc-product-features { list-style: none; margin: 18px 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.vc-product-feature { display: flex; gap: 12px; align-items: flex-start; }
.vc-product-feature-mark { flex: none; width: 24px; height: 24px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: var(--vc-primary-soft); color: var(--vc-primary-deep); font-size: 12px; font-weight: 700; }
.vc-product-feature-text { display: flex; flex-direction: column; gap: 2px; }
.vc-product-feature-title { font-weight: 700; color: var(--vc-ink); }
.vc-product-feature-desc { font-size: 14px; line-height: 1.5; color: var(--vc-mute); }
.vc-product-buy { position: sticky; top: calc(var(--vc-nav-h, 72px) + 20px); border: 1px solid var(--vc-rule); border-radius: var(--vc-radius-lg); padding: 24px; background: var(--vc-white); box-shadow: var(--vc-shadow-md); display: flex; flex-direction: column; gap: 18px; }
.vc-product-prices { display: flex; flex-direction: column; gap: 16px; }
.vc-product-price { display: flex; flex-direction: column; gap: 2px; }
.vc-product-price + .vc-product-price { border-top: 1px solid var(--vc-rule-soft); padding-top: 16px; }
.vc-product-price-amount { font-family: var(--vc-font-display); font-weight: 900; font-size: clamp(30px, 3.5vw, 40px); line-height: 1; letter-spacing: -0.02em; color: var(--vc-ink); }
.vc-product-price-period { font-family: var(--vc-font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--vc-mute); }
.vc-product-price-desc { font-size: 14px; color: var(--vc-ink-soft); margin-top: 4px; }
.vc-product-buy-btn { width: 100%; justify-content: center; text-align: center; }
@media (max-width: 860px) { .vc-product-layout { grid-template-columns: 1fr; } .vc-product-buy { position: static; } }

/* Product request form (product_mode = request) */
/* Big price above the form — larger than the payment layout's, with a divider so
   it reads as the headline of the panel before the "Request this" heading. */
.vc-product-request-price { display: flex; flex-direction: column; gap: 2px; padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid var(--vc-rule); }
.vc-product-request-price .vc-product-price-amount { font-size: clamp(40px, 5vw, 56px); }
.vc-product-request .vc-h3 { margin-bottom: 6px; }
.vc-product-request-lede { color: var(--vc-ink-soft); font-size: 14px; margin-bottom: 18px; }
.vc-product-request-note { display: block; margin-top: 10px; font-family: var(--vc-font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--vc-mute); }
.vc-product-request-done .vc-h3 { margin: 10px 0 8px; }
.vc-product-request-done p { color: var(--vc-ink-soft); font-size: 14px; }

/* Member account area ([vc_member_account] / page-member.php) */
.vc-member-account .vc-card { max-width: 820px; margin-left: auto; margin-right: auto; }
.vc-member-meta { display: flex; flex-wrap: wrap; gap: 10px 16px; align-items: center; margin: 4px 0 18px; }
.vc-member-status { font-family: var(--vc-font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 10px; border-radius: 999px; background: var(--vc-green-soft, #e6f4ea); color: var(--vc-green, #1a7f43); }
.vc-member-status--past_due { background: #fdece8; color: #b4470f; }
.vc-member-status--canceled { background: var(--vc-paper, #f3f3f3); color: var(--vc-mute); }
.vc-member-renews { font-size: 13px; color: var(--vc-ink-soft); }
.vc-member-actions { margin-top: 20px; }
.vc-member-tiers { list-style: none; margin: 8px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.vc-member-tiers a { display: inline-block; padding: 8px 14px; border: 1px solid var(--vc-rule); border-radius: var(--vc-radius, 10px); font-size: 14px; }
