/* ---- Dumb Clubhouse Archives Widget.html line 3 ---- */
#archives-outer {
  /* 2000px max width with a 4vw gutter on each side. The
     calc(100% - 8vw) width ensures there's always exactly 4vw
     of empty space between the viewport edge and the wrapper,
     even on smaller viewports where max-width isn't binding.
     On viewports wider than ~2173px, calc would exceed 2000
     and max-width takes over -- the remaining viewport space
     becomes auto-margin, producing even larger gutters on
     ultrawide displays. Inner content (grid, header, controls)
     inherits this bound automatically; no element uses negative
     margins, 100vw widths, or outward hover transforms that
     could spill past the wrapper. */
  max-width: 2000px;
  width: calc(100% - 8vw);
  margin: 0 auto;
  box-sizing: border-box;
}

/* ---- Dumb Clubhouse Archives Widget.html line 136 ---- */
/* ══════════════════════════════
   HEADER
══════════════════════════════ */
/* AFTER */
#archives-header {
  margin-bottom: 8px;
}

/* ── Top row: logo + controls ── */
#archives-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px 28px;
  gap: 24px;
}






#header-controls {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  min-width: 0;
}

#search-sort-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

#search-wrap {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}

#video-search {
  width: 100%;
  padding: 10px 16px 10px 38px;
  font-size: 13px;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  box-sizing: border-box;
  background: rgba(255,255,255,0.06);
  color: white;
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.18s, background 0.18s;
}
#video-search::placeholder { color: rgba(255,255,255,0.35); }
#video-search:focus {
  outline: none;
  border-color: rgba(247,94,28,0.6);
  background: rgba(247,94,28,0.06);
}

/* Connect-your-accounts notice, under the search row. Borderless and unshaded
   on purpose — same call as the perk tickers; no pill, no tinted box. */
#connect-accounts {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  padding: 2px 2px 0;
  box-sizing: border-box;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
#connect-accounts[hidden] { display: none; }
#connect-accounts .ca-icons { display: inline-flex; align-items: center; gap: 7px; flex: none; }
#connect-accounts .ca-icons a {
  display: block; width: 17px; height: 17px; line-height: 0;
  opacity: 0.75; transition: opacity 0.15s, transform 0.15s;
}
#connect-accounts .ca-icons a:hover { opacity: 1; transform: translateY(-1px); }
#connect-accounts .ca-icons svg { width: 100%; height: 100%; display: block; }
#connect-accounts .ca-text { min-width: 0; }
#connect-accounts .ca-text a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(247,94,28,0.55);
}
#connect-accounts .ca-text a:hover { color: #F75E1C; }

#sort-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s;
  white-space: nowrap;
}
#sort-toggle:hover {
  border-color: rgba(247,94,28,0.5);
  background: rgba(247,94,28,0.08);
}
#sort-toggle:focus { outline: none; }
#sort-toggle.flipped #sort-arrow {
  transform-origin: 10px 7px;
  transform: scaleY(-1);
}

/* ── Bottom row: filters ── */

#archives-header-bottom {
  padding: 0 28px;
}

#filter-track-wrap {
  display: flex;
  justify-content: center;
}

#filter-track {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  padding: 14px 0;
  gap: 8px;
}

.filter-link {
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
  border-radius: 20px;
  white-space: nowrap;
}
.filter-link:hover { color: rgba(255,255,255,0.85); }
.filter-link.active { color: #F75E1C; font-weight: 600; }

/* Top-row pills. [hidden] must still win (the Purchased chip starts hidden). */
.filter-chip {
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.12);
}
.filter-chip[hidden] { display: none; }
.filter-chip:hover { border-color: rgba(255,255,255,0.3); }
.filter-chip.active {
  background: rgba(247,94,28,0.1);
  border-color: rgba(247,94,28,0.5);
}

/* ── Shows dropdown ── */
#shows-menu-wrap { position: relative; }
#shows-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  background: none;
  color: rgba(255,255,255,0.5);
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
#shows-toggle:hover { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.3); }
#shows-toggle:focus { outline: none; }
#shows-toggle.active {
  color: #F75E1C;
  font-weight: 600;
  background: rgba(247,94,28,0.1);
  border-color: rgba(247,94,28,0.5);
}
#shows-caret { display: block; opacity: 0.7; }
#shows-clear { font-size: 15px; line-height: 1; opacity: 0.7; }
#shows-clear:hover { opacity: 1; }
#shows-clear[hidden] { display: none; }

#shows-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: #221c13;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 8px;
  z-index: 5000;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}
#shows-menu[hidden] { display: none; }
#shows-menu .filter-link {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}
#shows-menu .filter-link:hover { background: rgba(255,255,255,0.06); color: #fff; }
#shows-menu .filter-link.active { background: rgba(247,94,28,0.12); color: #F75E1C; }

/* ── Loading indicator ── */
#loading-indicator {
  padding: 8px 0 20px;
}
#loading-indicator.hidden { display: none; }

#skeleton-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

#archives-outer .skeleton-card{
  background: rgba(30,20,10,0.85);
  border: 1px solid rgba(247,94,28,0.2);
  border-radius: 16px;
  overflow: hidden;
}

#archives-outer .skeleton-thumb{
  width: 100%;
  aspect-ratio: 16/9;
  background: rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

.skeleton-info {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#archives-outer .skeleton-line{
  height: 12px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
#archives-outer .skeleton-line.meta{ width: 45%; height: 10px; }
#archives-outer .skeleton-line.title{ width: 85%; height: 14px; }
#archives-outer .skeleton-line.title-short{ width: 60%; height: 14px; }
#archives-outer .skeleton-line.desc{ width: 100%; height: 10px; }
#archives-outer .skeleton-line.desc-short{ width: 70%; height: 10px; }

.skeleton-badges {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}
.skeleton-badge {
  width: 72px;
  height: 22px;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

#archives-outer .skeleton-thumb::after,
#archives-outer .skeleton-line::after,
.skeleton-badge::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.04) 40%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 60%, transparent 100%);
  animation: shimmer 1.8s ease-in-out infinite;
}

@keyframes shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

#end-message { text-align: center; padding: 40px 0; font-size: 18px; color: #999; }
#end-message.hidden { display: none; }

/* ══════════════════════════════
   SPOKEN-WORD RESULTS  (#tsearch)
   No panels, no rules, no pills — just text on the background (Chris, 2026-08-10).
   Structure comes from spacing and weight instead, so the whole section reads as
   a transcript rather than as another grid of cards competing with the real one.

   The one thing a borderless list still has to do is say what's CLICKABLE. With
   no pill around the timestamp that job falls to colour: muted orange at rest,
   full orange + underline on hover. The matched word inside the line is full
   orange too, which is deliberate — orange means "this is why you're looking
   here", whether it's the word or the moment it's said.
══════════════════════════════ */
#tsearch { padding: 4px 0 30px; }
#tsearch[hidden] { display: none; }
#tsearch-head {
  display: flex; align-items: baseline; gap: 10px;
  padding: 0 2px; margin-bottom: 18px;
}
#tsearch-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 22px; letter-spacing: 0.5px; text-transform: uppercase; color: #fff;
}
#tsearch-count { font-size: 13px; color: rgba(255,255,255,0.45); }
/* Borderless like everything else here — a text link, not a button shape. */
#tsearch-more {
  display: block; margin: 4px 0 0; padding: 6px 2px;
  background: none; border: 0; cursor: pointer;
  font-family: inherit; font-size: 13px; font-weight: 600; color: #F9A77A;
}
#tsearch-more:hover { color: #F75E1C; text-decoration: underline; }
#tsearch-more[hidden] { display: none; }
/* Exhausted: it stops being an action and becomes a quiet status line. */
#tsearch-more:disabled { color: rgba(255,255,255,0.35); cursor: default; font-weight: 400; }
#tsearch-more:disabled:hover { color: rgba(255,255,255,0.35); text-decoration: none; }

/* Generous gap between episodes is the ONLY thing separating them now, so it
   has to be clearly bigger than the gap between moments inside one. */
.ts-video { padding: 0 2px; margin-bottom: 30px; }
.ts-video-title {
  display: inline-block; color: #fff; text-decoration: none !important;
  font-weight: 600; font-size: 15.5px; line-height: 1.3;
}
.ts-video-title:hover { color: #F75E1C; }
.ts-video-lib {
  font-size: 11.5px; letter-spacing: 0.04em; text-transform: uppercase;
  color: rgba(255,255,255,0.32); margin: 3px 0 9px;
}

/* One row per moment: the timestamp is the link, the line is the context. */
.ts-moment {
  display: flex; align-items: baseline; gap: 14px;
  padding: 4px 0; color: rgba(255,255,255,0.72);
  text-decoration: none !important; font-size: 13.5px; line-height: 1.5;
}
.ts-moment:hover { color: #fff; }
.ts-moment:hover .ts-at { color: #F75E1C; text-decoration: underline; }
.ts-at {
  flex: none; min-width: 56px;
  font-variant-numeric: tabular-nums; font-size: 12.5px; font-weight: 600;
  color: #F9A77A; transition: color .15s;
}
/* The worker marks the query terms with <b>; everything else it returns is
   escaped, so this is the only markup that reaches the DOM. */
.ts-line b { color: #F75E1C; font-weight: 600; }

@media (max-width: 640px) {
  #tsearch-title { font-size: 19px; }
  .ts-video { margin-bottom: 24px; }
  .ts-moment { gap: 10px; font-size: 13px; }
  .ts-at { min-width: 52px; }
}

/* ── Grid ── */
#multi-video-library {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 8px 0 20px;
}

/* ── Video card ── */
.video-item {
  background: rgba(30,20,10,0.85);
  border: 1px solid rgba(247,94,28,0.2);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
  text-decoration: none !important;
  color: white;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  user-select: none;
}
.video-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  border-color: rgba(247,94,28,0.55);
  text-decoration: none !important;
}

/* ── Thumbnail ── */
.video-thumbnail-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  flex-shrink: 0;
}
.video-thumbnail {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.video-thumbnail.loaded { opacity: 1; }
.video-thumbnail.uncropped { object-fit: contain; position: absolute; z-index: 1; }
.blurred-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(20px);
  transform: scale(1.1);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.blurred-bg.loaded { opacity: 1; }

/* ── Play button ──
   Frosted-glass circle, matching the site's Plyr player + AirPlay/Chromecast
   remote transport buttons (was a solid brand-orange fill). */
.play-btn-overlay {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: transform 0.2s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.45);
}
.play-btn-overlay svg { margin-left: 3px; }
.video-item:hover .play-btn-overlay { transform: translate(-50%,-50%) scale(1.15); }

/* ── Owned card (bought on Gumroad) ── a small corner badge; links to the
   streamable course page instead of the sales page. */
.owned-badge {
  position: absolute; top: 10px; left: 10px; z-index: 3;
  background: #F75E1C; color: #fff;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em; font-size: 12px;
  padding: 3px 9px; border-radius: 999px; line-height: 1.3;
  box-shadow: 0 2px 8px rgba(0,0,0,.35);
}
.video-item.is-owned { position: relative; }
.collection-cta {
  position: absolute; left: 50%; bottom: 10px; transform: translateX(-50%); z-index: 3;
  background: rgba(20,14,7,.82); color: #fff; backdrop-filter: blur(4px);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; font-size: 13px;
  padding: 5px 14px; border-radius: 999px; white-space: nowrap;
}
.video-item.is-collection:hover .collection-cta { background: #F75E1C; }

/* Collection modal — pick a title to watch from an owned box-set. */
.coll-modal {
  /* Above the Clubhouse player's in-app modals (z 2147483000) — this widget
     also runs embedded in one, and the picker is appended to <body>. */
  position: fixed; inset: 0; z-index: 2147483600; display: none;
  align-items: center; justify-content: center; padding: 24px;
  background: rgba(8,6,3,.82); backdrop-filter: blur(6px);
}
.coll-modal.open { display: flex; }
.coll-panel {
  position: relative; width: 100%; max-width: 900px; max-height: 86vh; overflow-y: auto;
  background: #17130d; border: 1px solid rgba(255,255,255,.1); border-radius: 16px;
  padding: 26px 26px 30px; box-shadow: 0 24px 70px rgba(0,0,0,.6);
}
.coll-close {
  position: absolute; top: 12px; right: 14px; background: none; border: 0; cursor: pointer;
  color: #fff; font-size: 30px; line-height: 1; opacity: .6; padding: 4px 8px;
}
.coll-close:hover { opacity: 1; color: #F75E1C; }
.coll-eyebrow {
  font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .12em;
  font-weight: 700; font-size: 12px; color: #F75E1C; margin: 0 0 4px;
}
.coll-heading {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 26px;
  color: #fff; margin: 0 0 18px; line-height: 1.05;
}
.coll-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.coll-card { text-decoration: none; color: #fff; display: block; }
.coll-thumb {
  position: relative; aspect-ratio: 16/9; border-radius: 10px; overflow: hidden;
  background: linear-gradient(135deg,#2a2218,#15120d);
}
.coll-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.coll-card:hover .coll-thumb { outline: 2px solid #F75E1C; }
.coll-card .play-btn-overlay {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 42px; height: 42px; border-radius: 50%; background: rgba(247,94,28,.92);
  display: flex; align-items: center; justify-content: center;
}
.coll-card-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 16px;
  margin-top: 8px; line-height: 1.15;
}
@media (max-width: 600px) { .coll-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; } }

/* Gated videos get NO special treatment (2026-08-11) — no blur, no padlock,
   no "Members Only" overlay, and no signup redirect. A card the viewer can't
   watch is identical to one they can, right down to the link; Squarespace's
   paywall handles the gate on arrival. The old .is-locked blur and .lock-*
   overlay styles were removed with the markup that used them. */

/* ── Card body ── */
.video-info {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
#archives-outer .video-metadata{
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin: 0;
}
#archives-outer .video-title{
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 1.35;
  color: white;
  text-decoration: none !important;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-description {
  margin: 0px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.48);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none !important;
}

/* ── Animations ── */
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}
.video-item { animation: fadeInUp 0.4s ease-out; }

/* ── Responsive ── */
/* mobile dropdown — hidden on desktop */
#mobile-filter-wrap { display: none; }

/* tablet: step 4 → 3 columns before header restructures */
@media (max-width: 1100px) {
  #multi-video-library { grid-template-columns: repeat(3,1fr); gap: 20px; }
  #skeleton-grid { grid-template-columns: repeat(3,1fr); gap: 20px; }
}
/* smaller tablet: 3 → 2 columns */
@media (max-width: 860px) {
  #multi-video-library { grid-template-columns: repeat(2,1fr); gap: 16px; }
  #skeleton-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
}

@media (max-width: 768px) {
  #archives-header-top {
    flex-direction: column;
    align-items: stretch;
    padding: 6px 0 16px;
    gap: 16px;
  }
  #header-controls { width: 100%; align-items: stretch; gap: 10px; }
  #search-sort-row { width: 100%; flex-direction: row; gap: 8px; }
  #search-wrap { flex: 1; min-width: 0; }
  #video-search { width: 100%; max-width: none; box-sizing: border-box; font-size: 16px; }
  #sort-toggle { width: auto; flex-shrink: 0; justify-content: center; padding: 10px 14px; }
  #archives-header-bottom { padding: 0 0 6px; display: flex; justify-content: stretch; width: 100%; }
  #filter-track-wrap { display: none; }
  #mobile-filter-wrap { display: flex; width: 100%; }
  #mobile-filter-select {
    width: 100%;
    max-width: none;
    padding: 10px 36px 10px 16px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    border: 1.5px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    background: rgba(255,255,255,0.06);
    color: white;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
    box-sizing: border-box;
  }
  #mobile-filter-select:focus { outline: none; border-color: rgba(247,94,28,0.6); }
  #multi-video-library { grid-template-columns: repeat(2,1fr); gap: 12px; }
  #skeleton-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
}
@media (max-width: 480px) {
  #multi-video-library { grid-template-columns: 1fr; }
  #skeleton-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════
   STOREFRONT SHOWCASE (default view: All, Newest, no search)
   Mirrors the Dumb Store / Dumb Video widgets. Any filter, search or sort
   hides it and shows the plain grid.
══════════════════════════════ */
#ac-showcase { display: none; font-family: 'Poppins', sans-serif; }
#ac-showcase.is-on { display: block; }
.ac-sec { padding: 30px 0 0; }
.ac-sec-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin: 0 0 14px; }
.ac-sec-title {
  font-family: 'Barlow Condensed', 'Poppins', sans-serif; font-size: 30px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px; line-height: 1; color: #fff; margin: 0;
}
.ac-sec-more {
  background: none; border: none; padding: 0; cursor: pointer; white-space: nowrap;
  font-family: 'Barlow Condensed', 'Poppins', sans-serif; font-size: 16px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; color: #F75E1C;
}
.ac-sec-more:hover { text-decoration: underline; }
#ac-all-head { display: none; padding-top: 36px; margin-bottom: 6px; }
#ac-all-head.is-on { display: flex; }

/* Spotlight */
.ac-spot {
  display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); margin-top: 10px;
  border-radius: 22px; overflow: hidden; border: 1px solid rgba(247,94,28,0.45); color: #fff; text-decoration: none !important;
  background: radial-gradient(120% 140% at 100% 0%, rgba(247,94,28,0.3) 0%, rgba(30,20,10,0.92) 55%, #120e0b 100%);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.ac-spot-media { position: relative; aspect-ratio: 16 / 9; background: #0c0a09; overflow: hidden; }
.ac-spot-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ac-spot-media.poster .bg { filter: blur(24px) brightness(0.45); transform: scale(1.15); }
.ac-spot-media.poster .fg { object-fit: contain; padding: 14px; box-sizing: border-box; }
/* Banner teasers: a slide's highlight clip crossfades in over its art, in a
   full-width 16:9 frame (cropped to fill), centred in the art box. */
.tz-vid { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;  /* fills the frame, crops instead of bars (2026-09-25) */ opacity: 0; transition: opacity 0.8s ease; pointer-events: none; z-index: 1; background: #0c0a09; }
.tz-on .tz-vid { opacity: 1; }
.tz-slide .ac-spot-media img { transition: opacity 0.8s ease; }
.tz-on .fg { opacity: 0; }
/* Hover preview: the card's clip fades in over its 16:9 thumbnail. */
.video-thumbnail-container .hv-vid { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.35s ease; pointer-events: none; z-index: 1; background: #0c0a09; }
.video-thumbnail-container.hv-on .hv-vid { opacity: 1; }
.video-thumbnail-container.hv-on .play-btn-overlay { opacity: 0; }
.ac-spot-body { padding: 34px 38px; display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.ac-kicker {
  align-self: flex-start; padding: 5px 12px; border-radius: 20px; background: rgba(247,94,28,0.18);
  color: #ffb08c; font-size: 11px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase;
}
.ac-spot-name {
  font-family: 'Barlow Condensed', 'Poppins', sans-serif; font-weight: 700; text-transform: uppercase;
  font-size: clamp(28px, 3vw, 48px); line-height: 0.95; margin: 0; color: #fff;
}
.ac-spot-desc { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.7); margin: 0;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.ac-spot-cta {
  align-self: flex-start; background: #F75E1C; color: #fff; padding: 11px 24px; border-radius: 12px;
  font-family: 'Barlow Condensed', 'Poppins', sans-serif; font-weight: 700; font-size: 19px;
  letter-spacing: 1px; text-transform: uppercase; transition: transform 0.15s, box-shadow 0.15s;
}
.ac-spot:hover .ac-spot-cta { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(247,94,28,0.45); }

/* Rotating spotlight: slides stacked in one grid cell, cross-faded. */
.ac-spot-carousel { position: relative; display: grid; margin-top: 10px; }
.ac-spot-carousel > .ac-spot { grid-area: 1 / 1; margin-top: 0; opacity: 0; visibility: hidden; transition: opacity 0.6s ease, visibility 0s linear 0.6s; }
.ac-spot-carousel > .ac-spot.is-active { opacity: 1; visibility: visible; transition: opacity 0.6s ease, visibility 0s; }
.ac-spot-dots { position: absolute; left: 0; right: 0; bottom: -22px; display: flex; justify-content: center; gap: 8px; }
.ac-spot-dots button {
  width: 8px; height: 8px; padding: 0; border: none; border-radius: 999px; cursor: pointer;
  background: rgba(255,255,255,0.28); transition: width 0.25s, background 0.25s;
}
.ac-spot-dots button[aria-current] { width: 24px; background: #F75E1C; }
@media (prefers-reduced-motion: reduce) { .ac-spot-carousel > .ac-spot { transition: none; } }
/* Every slide takes the tallest slide's height; the art fills it. */
.ac-spot-carousel > .ac-spot { height: 100%; }
/* The banner art is always shown whole at 16:9 — never cropped to fit the
   slide. When the text runs taller, the text side grows and the art sits
   centred beside it on the card's gradient. */
@media (min-width: 769px) { .ac-spot-carousel .ac-spot-media { aspect-ratio: 16 / 9; height: auto; align-self: center; } }

/* Rails — bleed into the 4vw gutters and fade out at each end. */
.ac-rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(300px, 350px); gap: 18px; align-items: start;
  overflow-x: auto; scroll-snap-type: x mandatory;
  margin: 0 -4vw; padding: 4px 4vw 16px; scroll-padding: 0 4vw;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 4vw, #000 calc(100% - 4vw), transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 4vw, #000 calc(100% - 4vw), transparent 100%);
  scrollbar-width: thin; scrollbar-color: rgba(247,94,28,0.4) transparent;
}
.ac-rail > * { scroll-snap-align: start; }
/* Rails scroll SIDEWAYS only. overflow-x:auto silently makes overflow-y auto
   too, and the few px of hover lift / rank numbers made each rail vertically
   scrollable — the mouse wheel then scrolled inside the rail instead of the
   page. Proximity snap keeps trackpad swipes from feeling sticky. */
.ac-rail { overflow-y: hidden; scroll-snap-type: x proximity; overscroll-behavior-y: auto; }

.ac-rail .video-item { animation: none; height: 100%; }
.ac-rail.ranked { grid-auto-columns: minmax(360px, 410px); align-items: stretch; }
/* Ranked cards all share the row's height (titles vary in length). */
.ac-rank { display: flex; align-items: stretch; }
.ac-rank .ac-rank-num { align-self: flex-end; }
.ac-rank-num {
  font-family: 'Barlow Condensed', 'Poppins', sans-serif; font-weight: 700; font-size: 120px; line-height: 0.78;
  margin-right: -22px; color: transparent; -webkit-text-stroke: 2px rgba(247,94,28,0.8); user-select: none;
  width: 72px; flex: 0 0 72px; display: flex; justify-content: flex-end; white-space: nowrap; letter-spacing: -6px;
  position: relative; z-index: 0;
}
.ac-rank .video-item { flex: 1; min-width: 0; z-index: 1; }
.ac-hot {
  position: absolute; top: 10px; right: 10px; z-index: 3; background: #F75E1C; color: #fff;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  font-size: 12px; padding: 3px 9px; border-radius: 999px; line-height: 1.3; box-shadow: 0 2px 8px rgba(0,0,0,.35);
}
/* Continue Watching progress bar */
.ac-progress { position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: rgba(255,255,255,0.18); z-index: 3; }
.ac-progress i { display: block; height: 100%; background: #F75E1C; }

/* Promo cards — same look as the Dumb Store's Clubhouse / wishlist cards. */
.ac-promo, .ac-promo * { box-sizing: border-box; }
.ac-promo {
  display: flex; align-items: center; gap: 22px; margin-top: 30px; padding: 22px 26px;
  border-radius: 18px; border: 1px solid rgba(247,94,28,0.55);
  background: linear-gradient(100deg, rgba(247,94,28,0.32), rgba(30,20,10,0.9) 65%);
  font-family: 'Poppins', sans-serif; color: #fff;
}
.ac-promo-text { flex: 1; min-width: 0; }
.ac-promo-title {
  font-family: 'Barlow Condensed', 'Poppins', sans-serif; font-size: 26px; font-weight: 700;
  text-transform: uppercase; line-height: 1; margin: 0 0 6px;
}
.ac-promo-sub { font-size: 13.5px; line-height: 1.55; color: rgba(255,255,255,0.7); margin: 0; }
.ac-promo-tiers { display: flex; gap: 10px; margin-top: 10px; flex-wrap: wrap; }
.ac-promo-tier {
  padding: 6px 12px; border-radius: 10px; background: rgba(0,0,0,0.35); border: 1px solid rgba(255,255,255,0.15);
  font-family: 'Barlow Condensed', 'Poppins', sans-serif; font-size: 16px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase;
}
.ac-promo-tier b { color: #F75E1C; margin-right: 6px; }
.ac-promo-cta {
  flex: 0 0 auto; display: inline-block; background: #F75E1C; color: #fff !important; border: none; cursor: pointer;
  padding: 11px 22px; border-radius: 12px; font: 700 19px 'Barlow Condensed', 'Poppins', sans-serif;
  letter-spacing: 1px; text-transform: uppercase; text-decoration: none !important; white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.15s;
}
.ac-promo-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(247,94,28,0.45); }
/* Link-your-accounts panel (2026-09-25) -- same as the Dumb Video widget's.
   Own title class, NOT .ac-promo-title: the site-wide widget heading standard
   pins that one to 20px !important. The logos are plain badges, not links. */
.ac-link-title {
  font-family: 'Barlow Condensed', 'Poppins', sans-serif; font-weight: 700; text-transform: uppercase;
  font-size: clamp(34px, 4.2vw, 58px); line-height: 0.95; margin: 0 0 12px; color: #fff;
}
.ac-link .ac-promo-sub { font-size: 15px; max-width: 760px; }
.ac-link-logos { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.ac-link-logo {
  display: inline-flex; align-items: center; gap: 10px; padding: 9px 16px 9px 10px; border-radius: 14px;
  background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.15); color: #fff;
  font: 700 20px/1 'Barlow Condensed', 'Poppins', sans-serif; letter-spacing: 0.6px; text-transform: uppercase;
}
.ac-link-logo svg { width: 30px; height: 30px; flex: none; display: block; }
@media (max-width: 768px) {
  .ac-link-title { font-size: 32px; }
  .ac-link-logo { font-size: 17px; }
  .ac-link-logo svg { width: 26px; height: 26px; }
}
@media (max-width: 768px) {
  .ac-promo { flex-direction: column; align-items: stretch; gap: 12px; padding: 20px; }
  .ac-promo-cta { text-align: center; }
}

/* Browse by Show tiles */
.ac-show-tile {
  position: relative; display: block; aspect-ratio: 16 / 10; border-radius: 16px; overflow: hidden; padding: 0;
  border: 1px solid rgba(247,94,28,0.2); background: #0c0a09; cursor: pointer; text-align: left;
  transition: transform 0.2s, border-color 0.2s;
}
.ac-show-tile:hover { transform: translateY(-3px); border-color: rgba(247,94,28,0.6); }
.ac-show-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.ac-show-tile span {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 14px 14px; background: linear-gradient(transparent, rgba(0,0,0,0.9));
  font-family: 'Barlow Condensed', 'Poppins', sans-serif; font-size: 24px; font-weight: 700; text-transform: uppercase; line-height: 1; color: #fff;
}

@media (max-width: 768px) {
  .ac-spot { grid-template-columns: minmax(0, 1fr); }
  .ac-spot-body { padding: 22px 20px 24px; }
  .ac-sec-title { font-size: 24px; }
  .ac-rail { grid-auto-columns: 78vw; gap: 12px; }
  .ac-rail.ranked { grid-auto-columns: 86vw; }
  .ac-rank-num { font-size: 88px; margin-right: -16px; width: 54px; flex-basis: 54px; letter-spacing: -4px; }
}

/* ── Space under the site header (2026-09-21) ──────────────────────────────
   The site header is 100px tall on desktop AND tablet, but each page's
   Squarespace section starts at a slightly different spot, so the widget
   logos sat 5–21px below it on desktop and tucked UNDER it on tablet. These
   offsets put the logo a consistent 24px below the header on all three
   storefront widgets (measured on the live pages). Phones use a different
   header and are left alone; so is the Clubhouse app's modal (the outer's
   parent is the [data-di-embed] scroller there). */
@media (min-width: 1025px) { :not([data-di-embed]) > #archives-outer { margin-top: 12px; } }
@media (min-width: 769px) and (max-width: 1024px) { :not([data-di-embed]) > #archives-outer { margin-top: 31px; } }

/* ── One-row header (2026-09-24) ─────────────────────────────────────────
   Small logo far left, filters centred, search + sort far right. Falls
   back to logo+search on one line and filters under it below 1024px,
   and to logo+search / dropdown on phones. The sale banner (if any) spans
   the row under it. */
#archives-header { display: grid; grid-template-columns: minmax(0,1fr) auto minmax(260px,1fr); align-items: center; column-gap: 28px; padding: 14px 0 18px; }
#archives-header-top { display: contents; }
/* Page title — text, not a logo image (2026-09-24). Same face as the
   carousel headings, a step bigger. Identical in all 3 holy widgets. */
#archives-header-top .holy-title {
  grid-column: 1; grid-row: 1; justify-self: start; margin: 0; padding: 0;
  font-family: 'Barlow Condensed', 'Poppins', sans-serif; font-size: 38px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px; line-height: 1; color: #fff; white-space: nowrap;
}
@media (max-width: 768px) { #archives-header-top .holy-title { font-size: 28px; } }
#header-controls { grid-column: 3; grid-row: 1; justify-self: end; width: 100% !important; min-width: 200px; max-width: 380px; }
#archives-header-bottom { grid-column: 2; grid-row: 1; padding: 0 !important; }
#archives-header-bottom > [id$="filter-track-wrap"] > [id$="filter-track"] { padding: 0; }
@media (max-width: 1024px) {
  #archives-header { grid-template-columns: auto minmax(0,1fr); row-gap: 12px; }
  #header-controls { grid-column: 2; max-width: 420px; }
  #archives-header-bottom { grid-column: 1 / -1; grid-row: 2; }

}
@media (max-width: 768px) {
  #archives-header { padding: 8px 0 14px; }
  #archives-header-top { gap: 12px; }
  #header-controls { min-width: 0; max-width: none; }
  #sort-label { display: none; }
  #sort-toggle { padding: 10px 13px; }
}

/* ── Compact controls (2026-09-24): search is a magnifier that expands into
   the bar on click (grows leftward, stays open while it holds text); sort is
   an icon-only circle. Pure CSS: the input fills the circle, so a tap on the
   icon focuses it. */
#header-controls { width: auto !important; min-width: 0 !important; max-width: none !important; }
#search-sort-row { justify-content: flex-end; gap: 8px; }
#search-wrap { flex: 0 0 auto !important; width: 40px; transition: width 0.25s ease; }
#search-wrap:focus-within, #search-wrap.has-text { width: 260px; }
#video-search { height: 40px; padding: 0 14px 0 38px !important; cursor: pointer; }
#search-wrap:not(:focus-within):not(.has-text) #video-search::placeholder { color: transparent; }
#search-wrap:not(:focus-within):not(.has-text) #video-search { padding-right: 0 !important; }
#search-wrap:focus-within #video-search { cursor: text; }
#sort-toggle { width: 40px; height: 40px; padding: 0 !important; justify-content: center; flex: 0 0 40px; }
#sort-toggle #sort-label { display: none; }
@media (max-width: 768px) {
  #header-controls { flex: 1 1 auto !important; }
  #search-wrap:focus-within, #search-wrap.has-text { width: 100%; flex: 1 1 auto !important; }
}

/* ── Bare controls (2026-09-24): no pills/circles around filters, sort or the
   collapsed search — just text/icons. Active filter = orange text. The search
   field gets its outline back only while it's open. */
.filter-chip, #shows-toggle { border: none !important; background: none !important; box-shadow: none !important; }
.filter-chip.active, #shows-toggle.active { background: none !important; }
#sort-toggle { border: none !important; background-color: transparent !important; }
#sort-toggle:hover { background-color: rgba(255,255,255,0.06) !important; }
#search-wrap:not(:focus-within):not(.has-text) #video-search { border-color: transparent !important; background: transparent !important; }

/* Phone spotlight (2026-09-25): stacked slides share the tallest slide's
   height, and a long title widened the 1fr column -> image cropped and a big
   gap under it. Pin the column, size the image row to the image, and start
   the text right under it. */
@media (max-width: 768px) {
  .ac-spot-carousel .ac-spot.ac-spot { grid-template-columns: minmax(0, 1fr) !important; grid-template-rows: auto 1fr !important; }
  .ac-spot-carousel .ac-spot .ac-spot-body { justify-content: flex-start !important; }
}

/* Spotlight sizing (2026-09-25, Chris):
   desktop -- the image fills its column top to bottom; as the screen narrows
   it crops the sides instead of leaving bars above/below.
   phones  -- titles max 3 lines + "...", so one long name can't blow up the
   whole slideshow's height. */
@media (min-width: 769px) {
  .ac-spot-carousel .ac-spot .ac-spot-media { align-self: stretch !important; aspect-ratio: auto !important; height: auto !important; min-height: 0 !important; overflow: hidden; }
}
@media (max-width: 768px) {
  .ac-spot-carousel .ac-spot .ac-spot-name { display: -webkit-box !important; -webkit-box-orient: vertical; -webkit-line-clamp: 3; line-clamp: 3; overflow: hidden !important; }
}

/* One header row, 769px+ (2026-09-25) -- same as Store/Video: title | filters
   (wrap, never collide) | search+sort. Filter labels small caps, same in all 3. */
@media (min-width: 769px) {
  #archives-header { grid-template-columns: auto minmax(0, 1fr) auto !important; column-gap: 24px !important; }
  #archives-header-bottom { grid-column: 2 !important; grid-row: 1 !important; min-width: 0; }
  #header-controls { grid-column: 3 !important; grid-row: 1 !important; width: auto !important; min-width: 0 !important; }
  #archives-header-bottom > #filter-track-wrap { display: flex !important; justify-content: center; min-width: 0; }
  #filter-track { flex-wrap: wrap !important; justify-content: center; white-space: normal !important; width: auto !important; max-width: 100% !important; overflow: visible !important; row-gap: 4px; }
  #archives-header-top .holy-title { font-size: 34px !important; }
}
#filter-track > .filter-link, #shows-toggle { text-transform: none !important; letter-spacing: normal !important; font-size: 11px !important; }
/* Tile eyebrow = category, orange (2026-09-25). */
#archives-outer .video-metadata { color: #F75E1C !important; font-size: 10px; font-weight: 700; }

/* No separator characters between filters (2026-09-25). */
.filter-sep { display: none !important; }
#filter-track { column-gap: 6px !important; }

/* Sticky widget header (2026-09-25, Chris): once scrolling starts and this
   header reaches the site header, the two move as ONE unit -- the site header
   slides up and away while this header slides up into its place, pinned in a
   black bar until the page is back at the very top, where the reverse plays.
   Both legs share one duration/easing (the header's own transitions are
   restated here because this id rule would otherwise wipe them out -- that
   is what made the site header snap to black on these pages). The slide
   itself is a WAAPI animation in the script at the bottom of the file. */
html.holy-bar-ready #dumbHeader {
  transition: transform 0.3s cubic-bezier(.4,0,.2,1), height 0.35s cubic-bezier(.4,0,.2,1),
              background 0.35s cubic-bezier(.4,0,.2,1) !important;
}
html.holy-bar #dumbHeader { transform: translateY(-110%) !important; pointer-events: none; }
html.holy-bar #archives-header {
  position: fixed !important; top: 0; left: var(--hb-l, 0); right: var(--hb-r, 0); z-index: 10000;
  transition: padding 0.3s cubic-bezier(.4,0,.2,1);   /* tighten only while pinned: easing it back in flow crept the page 12px */
  margin: 0 !important; padding-top: 10px !important; padding-bottom: 10px !important;
  background: #000;
}
/* Full-bleed black strip behind the bar. NOT box-shadow + clip-path: the clip
   also cut off the bar's dropdown menus, which hang below it. */
html.holy-bar #archives-header::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: -100vmax; right: -100vmax;
  background: #000; z-index: -1; pointer-events: none;
}
/* Sliding back down into its slot: stay opaque and above the page. */
html.holy-bar-out #archives-header { position: relative; z-index: 10000; background: #000; }
html.holy-bar #archives-header [id$=PromoBanner] { display: none !important; }
