/* ASMBLY 0.9.31.8.8.1.1 — Feed interaction, route layering and scroll-position integrity. */
:root{
  --asmbly-featured:#2f7cff;
  --asmbly-hype-standard:transparent;
  --asmbly-hype-spark:#8f6cff;
  --asmbly-hype-glow:#ffb43f;
  --asmbly-hype-pulse:#ff7a35;
  --asmbly-hype-surge:#ff3f78;
  --asmbly-hype-citywide:#fff4dc;
  --asmbly-feed-desktop-top:142px;
  --asmbly-feed-runtime-top:var(--asmbly-feed-desktop-top);
  --asmbly-feed-mobile-top:calc(56px + env(safe-area-inset-top,0px));
  --asmbly-feed-mobile-bottom:calc(72px + env(safe-area-inset-bottom,0px));
}

/* The shared navigation always owns the top layer. The Feed begins below it. */
body.asmbly-feed-mode .asmbly-topbar.asmbly-topbar-reset,
body.asmbly-list-mode .asmbly-topbar.asmbly-topbar-reset{
  z-index:10070!important;
}
body.asmbly-feed-mode .asmbly-topbar.asmbly-topbar-reset>* ,
body.asmbly-list-mode .asmbly-topbar.asmbly-topbar-reset>*{pointer-events:auto!important}
body.asmbly-feed-mode .asmbly-filters.asmbly-explore-controls-reset,
body.asmbly-list-mode .asmbly-filters.asmbly-explore-controls-reset{
  z-index:10065!important;
  pointer-events:auto!important;
}
body.asmbly-feed-mode #asmblyFeedView,
body.asmbly-list-mode #asmblyFeedView{
  display:block!important;
  visibility:visible!important;
  pointer-events:auto!important;
  position:fixed!important;
  inset:var(--asmbly-feed-runtime-top) 0 0!important;
  z-index:10040!important;
  overflow:hidden!important;
  padding:0!important;
  background:
    radial-gradient(circle at 18% 30%,rgba(255,122,53,.08),transparent 30%),
    radial-gradient(circle at 80% 74%,rgba(143,108,255,.07),transparent 33%),
    #0b0910!important;
}
body.asmbly-feed-mode #asmblyMap,
body.asmbly-list-mode #asmblyMap,
body.asmbly-feed-mode .asmbly-google-map,
body.asmbly-feed-mode .asmbly-map-fallback,
body.asmbly-list-mode .asmbly-google-map,
body.asmbly-list-mode .asmbly-map-fallback{visibility:hidden!important;pointer-events:none!important}
body.asmbly-map-mode #asmblyFeedView,body:not(.asmbly-feed-mode):not(.asmbly-list-mode) #asmblyFeedView{display:none!important}

/* Viewport-safe snap feed. One post equals the exact usable Feed viewport. */
.asmbly-video-feed{
  width:100%;height:100%;
  overflow-y:auto;overflow-x:hidden;
  scroll-snap-type:y mandatory;
  overscroll-behavior:contain;
  scrollbar-width:none;
  background:transparent;
}
.asmbly-video-feed::-webkit-scrollbar{display:none}
.asmbly-video-post{
  --hype-color:transparent;
  --hype-soft:0px;
  --hype-wide:0px;
  position:relative;
  width:min(1120px,100%);
  height:100%;min-height:100%;
  margin:0 auto;
  padding:12px clamp(14px,2vw,24px);
  display:grid;
  grid-template-rows:minmax(0,1fr) auto;
  gap:10px;
  scroll-snap-align:start;
  scroll-snap-stop:always;
  isolation:isolate;
  box-sizing:border-box;
}
.asmbly-video-post.hype-level-spark{--hype-color:var(--asmbly-hype-spark);--hype-soft:22px;--hype-wide:8px}
.asmbly-video-post.hype-level-glow{--hype-color:var(--asmbly-hype-glow);--hype-soft:34px;--hype-wide:12px}
.asmbly-video-post.hype-level-pulse{--hype-color:var(--asmbly-hype-pulse);--hype-soft:50px;--hype-wide:18px}
.asmbly-video-post.hype-level-surge{--hype-color:var(--asmbly-hype-surge);--hype-soft:68px;--hype-wide:24px}
.asmbly-video-post.hype-level-citywide{--hype-color:var(--asmbly-hype-citywide);--hype-soft:86px;--hype-wide:32px}

.asmbly-feed-frame{
  min-height:0!important;height:auto!important;
  display:grid;
  grid-template-columns:minmax(300px,1.2fr) minmax(310px,.8fr);
  overflow:visible!important;
  border:1px solid rgba(255,255,255,.09)!important;
  border-radius:24px;
  background:rgba(20,17,26,.96)!important;
  box-shadow:0 22px 70px rgba(0,0,0,.48)!important;
}
.asmbly-feed-media-shell{
  position:relative;
  min-width:0;min-height:0;
  margin:14px;
  isolation:isolate;
}
.asmbly-feed-glow{
  position:absolute;
  inset:6% 7%;
  z-index:-2;
  border-radius:30px;
  background:var(--hype-color);
  filter:blur(var(--hype-soft));
  opacity:.62;
  transform:scale(1.02);
  pointer-events:none;
}
.hype-level-standard .asmbly-feed-glow{display:none}
.hype-level-pulse .asmbly-feed-glow{animation:asmbly-feed-pulse 3.2s ease-in-out infinite}
.hype-level-surge .asmbly-feed-glow{animation:asmbly-feed-pulse 2.4s ease-in-out infinite}
.hype-level-citywide .asmbly-feed-glow{
  background:radial-gradient(circle,#fff 0 10%,#ffd688 28%,#ff7a35 62%,rgba(255,63,120,.7) 100%);
  opacity:.78;
  animation:asmbly-feed-citywide 2s ease-in-out infinite;
}
@keyframes asmbly-feed-pulse{50%{opacity:.42;transform:scale(.985)}}
@keyframes asmbly-feed-citywide{50%{opacity:.56;transform:scale(1.025);filter:blur(calc(var(--hype-soft) * .82))}}

.asmbly-feed-media-stage{
  position:relative;
  width:100%;height:100%;min-height:0;
  overflow:hidden;
  display:grid;place-items:center;
  border-radius:20px;
  background:#08070b;
  box-shadow:
    0 0 var(--hype-soft) var(--hype-wide) color-mix(in srgb,var(--hype-color) 55%,transparent),
    inset 0 0 0 1px rgba(255,255,255,.08),
    0 14px 42px rgba(0,0,0,.4);
}
.hype-level-standard .asmbly-feed-media-stage{box-shadow:inset 0 0 0 1px rgba(255,255,255,.08),0 14px 42px rgba(0,0,0,.4)}
.asmbly-video-post.is-featured .asmbly-feed-media-stage{
  border:1px solid rgba(47,124,255,.42);
  box-shadow:
    0 0 28px 7px rgba(47,124,255,.30),
    0 0 var(--hype-soft) var(--hype-wide) color-mix(in srgb,var(--hype-color) 55%,transparent),
    inset 0 0 0 1px rgba(255,255,255,.08),
    0 14px 42px rgba(0,0,0,.45);
}
.asmbly-featured-label{
  position:absolute;top:12px;left:12px;z-index:8;
  background:rgba(47,124,255,.94);color:#fff;
  border:1px solid rgba(255,255,255,.24);
  box-shadow:0 8px 24px rgba(47,124,255,.32);
  border-radius:999px;padding:6px 10px;
  font:900 10px/1 system-ui,sans-serif;
  text-transform:uppercase;letter-spacing:.09em;
}
.asmbly-feed-media-backdrop{
  position:absolute;inset:-8%;
  background-position:center;background-size:cover;
  filter:blur(28px) saturate(.78) brightness(.45);
  opacity:.72;transform:scale(1.08);
}
.asmbly-feed-media{
  position:relative!important;inset:auto!important;
  z-index:2;
  width:100%!important;height:100%!important;
  max-width:100%;max-height:100%;
  object-fit:contain!important;
  object-position:center!important;
  background:transparent!important;
}
.asmbly-feed-media-fallback{
  position:absolute;inset:0;z-index:1;
  display:grid;place-items:center;
  color:rgba(255,211,125,.84);
  font:1000 clamp(30px,5vw,58px)/1 Outfit,Inter,system-ui,sans-serif;
  letter-spacing:-.05em;
  background:radial-gradient(circle at 20% 18%,rgba(255,178,62,.22),transparent 38%),radial-gradient(circle at 78% 72%,rgba(124,92,255,.28),transparent 44%),#111019;
}
.asmbly-feed-media-stage:not(.is-fallback):not(.media-failed) .asmbly-feed-media-fallback{display:none}
.asmbly-feed-media-stage.media-failed .asmbly-feed-media,.asmbly-feed-media-stage.media-failed .asmbly-feed-media-backdrop{display:none}

.asmbly-feed-content{
  min-width:0;min-height:0;
  padding:clamp(18px,2.2vw,30px);
  display:flex;flex-direction:column;justify-content:space-between;gap:18px;
  overflow:auto;
  color:#fff;
  border-left:1px solid rgba(255,255,255,.08);
}
.asmbly-feed-copy{min-width:0;display:grid;align-content:start;gap:9px}
.asmbly-feed-publisher{
  justify-self:start;display:inline-flex;align-items:center;
  max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
  border-radius:999px;padding:6px 10px;
  background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.15);
  color:#fff;font-size:11px;font-weight:900;
}
.publisher-creator{color:#ffc66f;border-color:rgba(255,180,63,.40)}
.publisher-content_partner{color:#8fe9de;border-color:rgba(61,214,196,.40)}
.asmbly-feed-copy h2{
  margin:2px 0 0!important;
  font:1000 clamp(28px,3.2vw,48px)/.96 Outfit,Inter,system-ui,sans-serif!important;
  letter-spacing:-.052em!important;
  text-wrap:balance;
}
.asmbly-feed-meta{margin:0;color:#ded7e5;font-size:13px;line-height:1.4;font-weight:750}
.asmbly-feed-caption{
  margin:0;color:#f2ebf4;font-size:14px;line-height:1.45;
  display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:3;overflow:hidden;
}
.asmbly-feed-disclosure{margin:0;font-size:10px;text-transform:uppercase;letter-spacing:.09em;color:#c6b9cb;font-weight:900}
.asmbly-feed-rail{
  display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:8px;
}
.asmbly-feed-rail button{
  min-width:0;min-height:48px;
  border:1px solid rgba(255,255,255,.10);border-radius:14px;
  background:rgba(255,255,255,.06);color:#fff;
  display:flex;align-items:center;justify-content:center;gap:7px;
  backdrop-filter:blur(10px);cursor:pointer;
}
.asmbly-feed-rail button span{font-size:18px;line-height:1}
.asmbly-feed-rail button b{font-size:10px;white-space:nowrap}
.asmbly-feed-rail button.active{color:#ffb43f;border-color:currentColor;background:rgba(255,180,63,.10)}
.asmbly-feed-rail button:focus-visible,.asmbly-feed-claimbar button:focus-visible{outline:3px solid #fff;outline-offset:2px}

.asmbly-feed-claimbar{
  min-height:58px;
  display:grid;grid-template-columns:minmax(0,1fr) minmax(132px,180px);gap:9px;
  margin:0;
}
.asmbly-feed-claimbar button{
  min-height:58px;border:0;border-radius:16px;
  font-weight:950;cursor:pointer;
}
.asmbly-feed-claimbar [data-feed-action=cta]{
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  padding:0 20px;background:#3dd6c4;color:#08201e;font-size:16px;
  box-shadow:0 10px 30px rgba(61,214,196,.20);
}
.asmbly-feed-claimbar small{font-size:12px;opacity:.72;white-space:nowrap}
.asmbly-feed-claimbar [data-feed-action=directions]{
  display:flex;align-items:center;justify-content:center;gap:8px;
  padding:0 16px;background:#24202b;color:#fff;
  border:1px solid rgba(255,255,255,.11);
}
.asmbly-feed-claimbar [data-feed-action=directions] span{display:grid;place-items:center}
.asmbly-feed-claimbar [data-feed-action=directions] svg{width:20px;height:20px;fill:none;stroke:currentColor;stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round}
.asmbly-feed-claimbar [data-feed-action=directions] b{font-size:13px}

.asmbly-feed-availability{margin-top:3px}
.asmbly-feed-availability>div{display:flex;justify-content:space-between;gap:10px;font-size:11px;font-weight:900;text-transform:uppercase;letter-spacing:.05em}
.asmbly-feed-availability i{display:block;height:5px;border-radius:999px;background:rgba(255,255,255,.14);overflow:hidden;margin-top:6px}
.asmbly-feed-availability i b{display:block;height:100%;background:#d6aa43}
.availability-limited .asmbly-feed-availability i b{background:#ff8a34}
.availability-last_spots .asmbly-feed-availability i b,.availability-sold_out .asmbly-feed-availability i b{background:#ff4e62}
.availability-last_spots .asmbly-feed-availability>div{color:#ff9aa4}

.asmbly-feed-loading{height:100%;display:grid;place-items:center;align-content:center;gap:16px;color:#fff}
.asmbly-feed-loading span{width:38px;height:38px;border:4px solid rgba(255,255,255,.18);border-top-color:#ffb43f;border-radius:50%;animation:asmbly-feed-spin .8s linear infinite}
@keyframes asmbly-feed-spin{to{transform:rotate(360deg)}}

/* List view uses the same contained media and soft signals. */
.asmbly-feed-head{max-width:1200px;margin:0 auto;padding:20px 24px;display:flex;justify-content:space-between;color:#fff}
.asmbly-feed-list-cards{height:100%;max-width:1200px;margin:0 auto;display:grid;align-content:start;gap:16px;padding:0 24px 40px;overflow:auto}
.asmbly-list-feed-card{
  --hype-color:transparent;
  display:grid;grid-template-columns:190px minmax(0,1fr);gap:18px;
  background:#18151e;border:1px solid rgba(255,255,255,.10);border-radius:20px;padding:12px;color:#fff;
}
.asmbly-list-feed-card.hype-level-spark{--hype-color:var(--asmbly-hype-spark)}
.asmbly-list-feed-card.hype-level-glow{--hype-color:var(--asmbly-hype-glow)}
.asmbly-list-feed-card.hype-level-pulse{--hype-color:var(--asmbly-hype-pulse)}
.asmbly-list-feed-card.hype-level-surge{--hype-color:var(--asmbly-hype-surge)}
.asmbly-list-feed-card.hype-level-citywide{--hype-color:var(--asmbly-hype-citywide)}
.asmbly-list-feed-card{box-shadow:-8px 0 30px -15px var(--hype-color)}
.asmbly-list-feed-card.is-featured{box-shadow:0 0 24px rgba(47,124,255,.22),-8px 0 30px -15px var(--hype-color);border-color:rgba(47,124,255,.36)}
.asmbly-list-media{min-height:142px;border-radius:14px;position:relative;display:grid;place-items:center;overflow:hidden;background:#09080d;box-shadow:0 0 26px color-mix(in srgb,var(--hype-color) 54%,transparent)}
.asmbly-list-media-backdrop{position:absolute;inset:-10%;background-size:cover;background-position:center;filter:blur(22px) brightness(.5);opacity:.7}
.asmbly-list-media img{position:relative;z-index:2;width:100%;height:100%;object-fit:contain}
.asmbly-list-media>b{position:relative;z-index:2;color:#ffd37d;font-size:24px}
.asmbly-list-media em,.asmbly-list-media .asmbly-hype-text{position:absolute;z-index:3;border-radius:999px;padding:5px 8px;font-size:10px;font-style:normal}
.asmbly-list-media em{top:8px;left:8px;background:var(--asmbly-featured)}
.asmbly-list-media .asmbly-hype-text{bottom:8px;left:8px;background:rgba(8,7,12,.84)}
.asmbly-list-feed-card h3{font-size:24px;margin:5px 0}.asmbly-list-feed-card p{color:#bdb4c2}.asmbly-list-feed-card button{margin-top:12px;border:0;border-radius:11px;background:#3dd6c4;color:#08201e;padding:10px 13px;font-weight:900}

/* Shared soft signal language on Map and legacy cards. */
.asmbly-marker-card,.asmbly-ecard,.asmbly-eitem{--hype-color:transparent}
.asmbly-marker-card.hype-level-spark,.asmbly-ecard.hype-level-spark,.asmbly-eitem.hype-level-spark{--hype-color:var(--asmbly-hype-spark)}
.asmbly-marker-card.hype-level-glow,.asmbly-ecard.hype-level-glow,.asmbly-eitem.hype-level-glow{--hype-color:var(--asmbly-hype-glow)}
.asmbly-marker-card.hype-level-pulse,.asmbly-ecard.hype-level-pulse,.asmbly-eitem.hype-level-pulse{--hype-color:var(--asmbly-hype-pulse)}
.asmbly-marker-card.hype-level-surge,.asmbly-ecard.hype-level-surge,.asmbly-eitem.hype-level-surge{--hype-color:var(--asmbly-hype-surge)}
.asmbly-marker-card.hype-level-citywide,.asmbly-ecard.hype-level-citywide,.asmbly-eitem.hype-level-citywide{--hype-color:var(--asmbly-hype-citywide)}
.asmbly-marker-card [class*=media],.asmbly-marker-card [class*=art],.asmbly-ecard [class*=media],.asmbly-ecard [class*=art],.asmbly-eitem [class*=media],.asmbly-eitem [class*=art]{box-shadow:0 0 28px color-mix(in srgb,var(--hype-color) 58%,transparent)}
.asmbly-marker-card.is-featured,.asmbly-ecard.is-featured,.asmbly-eitem.is-featured{border-color:rgba(47,124,255,.38)!important;box-shadow:0 0 24px rgba(47,124,255,.22)!important}

.asmbly-inventory-meter{display:grid;gap:4px;margin-top:7px;max-width:220px}.asmbly-inventory-meter i{display:block;height:4px;border-radius:99px;background:rgba(128,118,139,.2);overflow:hidden}.asmbly-inventory-meter i b{display:block;height:100%;background:#d6aa43}.asmbly-inventory-meter em{font-style:normal;font-size:10px;font-weight:900;color:#665d70}.asmbly-inventory-meter.inventory-limited i b{background:#ff8a34}.asmbly-inventory-meter.inventory-last_spots i b,.asmbly-inventory-meter.inventory-sold_out i b{background:#ff4e62}.asmbly-inventory-meter.inventory-last_spots em{color:#d72d47}.asmbly-inventory-meter.compact{max-width:110px;margin-top:4px}.asmbly-inventory-meter.compact em{font-size:8px;color:inherit}

/* Compact short-height desktops without pushing actions below the fold. */
@media(min-width:901px) and (max-height:760px){
  :root{--asmbly-feed-desktop-top:132px}
  .asmbly-video-post{padding-top:8px;padding-bottom:8px;gap:7px}
  .asmbly-feed-media-shell{margin:10px}
  .asmbly-feed-content{padding:16px;gap:10px}
  .asmbly-feed-copy{gap:6px}
  .asmbly-feed-copy h2{font-size:30px!important}
  .asmbly-feed-caption{display:none}
  .asmbly-feed-rail button{min-height:42px}
  .asmbly-feed-claimbar,.asmbly-feed-claimbar button{min-height:52px}
}

/* Mobile: one compact shell row, one contained post, and both primary actions in view. */
@media(max-width:900px){
  body.asmbly-feed-mode #asmblyFeedView,
  body.asmbly-list-mode #asmblyFeedView{
    inset:var(--asmbly-feed-mobile-top) 0 var(--asmbly-feed-mobile-bottom)!important;
    padding:0!important;
  }
  body.asmbly-feed-mode .asmbly-topbar.asmbly-topbar-reset,
  body.asmbly-list-mode .asmbly-topbar.asmbly-topbar-reset{
    position:fixed!important;
    min-height:var(--asmbly-feed-mobile-top)!important;
    height:var(--asmbly-feed-mobile-top)!important;
    padding:env(safe-area-inset-top,0px) 7px 0!important;
    background:#09090e!important;
  }
  .asmbly-mobile-one-row{
    grid-template-columns:32px minmax(112px,1fr) minmax(46px,58px) 36px 36px 36px!important;
    gap:4px!important;height:50px!important;
  }
  .asmbly-mobile-one-row-view{grid-template-columns:repeat(3,minmax(0,1fr))!important}
  .asmbly-mobile-one-row-view button{font-size:10px!important;padding:0 3px!important}
  .asmbly-video-post{width:100%;height:100%;min-height:100%;padding:6px 8px;gap:6px}
  .asmbly-feed-frame{grid-template-columns:1fr;grid-template-rows:minmax(0,1fr) auto;border-radius:18px}
  .asmbly-feed-media-shell{margin:6px 6px 0;min-height:0}
  .asmbly-feed-media-stage{border-radius:15px}
  .asmbly-feed-content{padding:10px 12px 11px;border-left:0;border-top:1px solid rgba(255,255,255,.08);gap:9px;overflow:visible}
  .asmbly-feed-copy{gap:5px}
  .asmbly-feed-publisher{padding:4px 8px;font-size:9px}
  .asmbly-feed-copy h2{font-size:clamp(22px,7vw,30px)!important;line-height:.98!important}
  .asmbly-feed-meta{font-size:10.5px;line-height:1.28;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden}
  .asmbly-feed-caption{font-size:11.5px;line-height:1.3;-webkit-line-clamp:1}
  .asmbly-feed-disclosure{font-size:8.5px}
  .asmbly-feed-availability{margin-top:1px}.asmbly-feed-availability>div{font-size:9px}.asmbly-feed-availability i{height:4px;margin-top:4px}
  .asmbly-feed-rail{gap:6px}
  .asmbly-feed-rail button{min-height:38px;border-radius:11px;gap:4px;padding:0 4px}
  .asmbly-feed-rail button span{font-size:15px}.asmbly-feed-rail button b{font-size:8.5px}
  .asmbly-feed-claimbar{grid-template-columns:minmax(0,1fr) 54px;min-height:50px;gap:6px}
  .asmbly-feed-claimbar button{min-height:50px;border-radius:13px}
  .asmbly-feed-claimbar [data-feed-action=cta]{padding:0 14px;font-size:14px}
  .asmbly-feed-claimbar small{font-size:10px}
  .asmbly-feed-claimbar [data-feed-action=directions]{width:54px;padding:0}
  .asmbly-feed-claimbar [data-feed-action=directions] b{display:none}
  .asmbly-featured-label{top:9px;left:9px;padding:5px 8px;font-size:8px}
  .asmbly-feed-list-cards{padding:0 10px 24px;gap:10px}
  .asmbly-feed-head{padding:14px 12px}
  .asmbly-list-feed-card{grid-template-columns:104px minmax(0,1fr);gap:11px;padding:9px;border-radius:16px}
  .asmbly-list-media{min-height:126px}.asmbly-list-feed-card h3{font-size:18px}
}

@media(max-width:390px){
  .asmbly-mobile-one-row{grid-template-columns:28px minmax(102px,1fr) 48px 34px 34px!important}
  .asmbly-mobile-one-row .asmbly-notification-trigger{display:none!important}
  .asmbly-feed-caption{display:none}
  .asmbly-feed-content{padding:8px 10px 9px}
  .asmbly-feed-copy h2{font-size:21px!important}
}

@media(max-height:650px) and (max-width:900px){
  .asmbly-feed-caption,.asmbly-feed-disclosure{display:none}
  .asmbly-feed-copy h2{font-size:20px!important}
  .asmbly-feed-meta{font-size:9.5px;-webkit-line-clamp:1}
  .asmbly-feed-rail button{min-height:34px}
  .asmbly-feed-claimbar,.asmbly-feed-claimbar button{min-height:46px}
}

@media(prefers-reduced-motion:reduce){.asmbly-feed-glow,.asmbly-feed-loading span{animation:none!important}}


/* 0.9.31.8.8.1.1 route and control hardening. */
body.asmbly-feed-mode .asmbly-topbar.asmbly-topbar-reset,
body.asmbly-list-mode .asmbly-topbar.asmbly-topbar-reset{position:fixed!important;inset:0 0 auto 0!important;pointer-events:auto!important}
body.asmbly-feed-mode .asmbly-filters.asmbly-explore-controls-reset,
body.asmbly-list-mode .asmbly-filters.asmbly-explore-controls-reset{position:fixed!important;z-index:10090!important;pointer-events:auto!important}
body.asmbly-feed-mode .asmbly-filters.asmbly-explore-controls-reset *,
body.asmbly-list-mode .asmbly-filters.asmbly-explore-controls-reset *{pointer-events:auto!important}
.asmbly-event-journey-nav{display:none!important}
body.asmbly-shell-today #asmblyFeedView,
body.asmbly-today-open #asmblyFeedView,
body.asmbly-shell-calendar #asmblyFeedView,
body.asmbly-shell-detail #asmblyFeedView,
body.asmbly-detail-active #asmblyFeedView,
body.asmbly-event-destination-open #asmblyFeedView,
body.asmbly-event-route #asmblyFeedView,
body.asmbly-shell-saved #asmblyFeedView,
body[data-asmbly-destination="saved"] #asmblyFeedView,
body[data-asmbly-destination="profile"] #asmblyFeedView{display:none!important;visibility:hidden!important;pointer-events:none!important}
body.asmbly-shell-today .asmbly-today-workspace,
body.asmbly-today-open .asmbly-today-workspace,
body.asmbly-shell-calendar .asmbly-calendar-shell,
body.asmbly-shell-detail .asmbly-event-destination,
body.asmbly-detail-active .asmbly-event-destination,
body.asmbly-event-destination-open .asmbly-event-destination{z-index:10060!important;pointer-events:auto!important}
.asmbly-video-feed{scroll-behavior:auto!important;overflow-anchor:none}
.asmbly-video-post{overflow-anchor:none}
@media(min-width:901px){
  body.asmbly-feed-mode .asmbly-filters.asmbly-explore-controls-reset,
  body.asmbly-list-mode .asmbly-filters.asmbly-explore-controls-reset{top:88px!important}
}

/* 0.9.31.8.8.1.3 — one Explore interaction plane, Saved library, and desktop Today rows. */
:root{
  --asmbly-explore-header-z:11000;
  --asmbly-explore-controls-z:11100;
  --asmbly-explore-view-z:1000;
  --asmbly-explore-sheet-z:13000;
}

/* The canonical header and controls are the only interactive chrome above Explore views. */
.asmbly-topbar.asmbly-topbar-reset{
  z-index:var(--asmbly-explore-header-z)!important;
  pointer-events:auto!important;
}
.asmbly-filters.asmbly-explore-controls-reset{
  z-index:var(--asmbly-explore-controls-z)!important;
  pointer-events:auto!important;
  isolation:isolate!important;
}
.asmbly-filters.asmbly-explore-controls-reset,
.asmbly-filters.asmbly-explore-controls-reset *{
  pointer-events:auto!important;
}
#asmblyFeedView{
  z-index:var(--asmbly-explore-view-z)!important;
}
#asmblyFeedView[hidden],
#asmblyDiscoverView[hidden],
.asmbly-today-workspace[hidden],
.asmbly-saved-workspace[hidden],
.asmbly-calendar-shell[hidden]{
  display:none!important;
  visibility:hidden!important;
  pointer-events:none!important;
}

/* The date/filter dialog must sit above Feed, Map, List, drawers, and the header. */
.asmbly-explore-filter-sheet{
  position:fixed!important;
  inset:0!important;
  z-index:var(--asmbly-explore-sheet-z)!important;
  pointer-events:none!important;
  visibility:hidden!important;
}
.asmbly-explore-filter-sheet.open{
  pointer-events:auto!important;
  visibility:visible!important;
}
.asmbly-explore-filter-sheet.open .asmbly-filter-sheet-backdrop,
.asmbly-explore-filter-sheet.open .asmbly-filter-sheet-card,
.asmbly-explore-filter-sheet.open .asmbly-filter-sheet-card *{
  pointer-events:auto!important;
}

/* Inactive Explore views are fully removed from hit testing. */
body.asmbly-map-mode #asmblyFeedView,
body.asmbly-shell-today #asmblyFeedView,
body.asmbly-shell-calendar #asmblyFeedView,
body.asmbly-shell-saved #asmblyFeedView,
body.asmbly-shell-detail #asmblyFeedView,
body.asmbly-event-destination-open #asmblyFeedView{
  display:none!important;
  visibility:hidden!important;
  pointer-events:none!important;
}
body.asmbly-feed-mode .asmbly-google-map,
body.asmbly-list-mode .asmbly-google-map,
body.asmbly-feed-mode .asmbly-map-fallback,
body.asmbly-list-mode .asmbly-map-fallback{
  visibility:hidden!important;
  pointer-events:none!important;
}
body.asmbly-map-mode .asmbly-google-map,
body.asmbly-map-mode .asmbly-map-fallback{
  visibility:visible!important;
  pointer-events:auto!important;
}

/* Saved is a routed library, not a drawer over an arbitrary map. */
.asmbly-saved-workspace{
  position:fixed;
  inset:var(--asmbly-consumer-shell-h,96px) 0 0;
  z-index:10050;
  display:grid;
  grid-template-rows:auto minmax(0,1fr);
  overflow:hidden;
  color:#f7f2f8;
  background:
    radial-gradient(850px 520px at 12% 0%,rgba(255,178,62,.12),transparent 62%),
    radial-gradient(900px 620px at 92% 12%,rgba(124,92,255,.15),transparent 58%),
    #09090e;
}
.asmbly-saved-workspace-header{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  padding:28px clamp(20px,4vw,64px) 20px;
  border-bottom:1px solid rgba(255,255,255,.09);
  background:rgba(9,9,14,.92);
}
.asmbly-saved-workspace-header small{
  color:#ffb43f;
  font-size:10px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.12em;
}
.asmbly-saved-workspace-header h1{
  margin:4px 0 3px;
  color:#fff;
  font:1000 clamp(34px,4vw,58px)/.95 Outfit,Inter,sans-serif;
  letter-spacing:-.055em;
}
.asmbly-saved-workspace-header p{margin:0;color:rgba(255,255,255,.58);font-weight:700}
.asmbly-saved-workspace-actions{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.asmbly-saved-view-toggle{display:flex;gap:3px;padding:4px;border:1px solid rgba(255,255,255,.12);border-radius:14px;background:rgba(255,255,255,.05)}
.asmbly-saved-view-toggle button,.asmbly-saved-workspace-actions>[data-saved-open-map]{min-height:42px;border:0;border-radius:10px;padding:0 14px;font-weight:950;cursor:pointer}
.asmbly-saved-view-toggle button{background:transparent;color:rgba(255,255,255,.62)}
.asmbly-saved-view-toggle button.active{background:#fff;color:#111}
.asmbly-saved-workspace-actions>[data-saved-open-map]{background:#ffb43f;color:#171008}
.asmbly-saved-workspace-scroll{overflow:auto;overscroll-behavior:contain;scrollbar-gutter:stable}
.asmbly-saved-workspace-content{max-width:1480px;margin:0 auto;padding:24px clamp(20px,4vw,64px) 90px}
.asmbly-saved-workspace .asmbly-saved-tabs{position:sticky;top:0;z-index:4;padding:8px 0 14px;background:linear-gradient(180deg,#09090e 62%,rgba(9,9,14,.84),transparent)}
.asmbly-saved-library-grid{display:grid;gap:28px}
.asmbly-saved-library-grid>section{min-width:0}
.asmbly-saved-library-grid>section>header{display:flex;align-items:flex-end;justify-content:space-between;gap:18px;margin:0 0 12px}
.asmbly-saved-library-grid>section>header small{display:block;color:#ffb43f;font-size:9px;font-weight:950;text-transform:uppercase;letter-spacing:.12em}
.asmbly-saved-library-grid>section>header h3{margin:2px 0 0;color:#fff;font-size:24px;letter-spacing:-.045em}
.asmbly-saved-library-grid>section>header>span{min-width:30px;height:30px;display:grid;place-items:center;border-radius:999px;background:rgba(255,255,255,.08);font-size:11px;font-weight:950}
.asmbly-saved-card-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}
.asmbly-saved-workspace .asmbly-saved-card{margin:0;grid-template-columns:92px minmax(0,1fr);min-height:116px;border-radius:20px;background:#15151d}
.asmbly-saved-workspace .asmbly-saved-card .saved-art{width:92px;height:92px}
body.asmbly-saved-layout-list .asmbly-saved-card-grid{grid-template-columns:1fr 1fr}
body.asmbly-saved-layout-list .asmbly-saved-workspace .asmbly-saved-card{grid-template-columns:112px minmax(0,1fr)}
body.asmbly-shell-saved .asmbly-filters.asmbly-explore-controls-reset,
body.asmbly-shell-saved .asmbly-panel,
body.asmbly-shell-saved .asmbly-entity-legend{
  display:none!important;
  pointer-events:none!important;
}
body.asmbly-shell-saved .asmbly-google-map,
body.asmbly-shell-saved .asmbly-map-fallback{
  visibility:hidden!important;
  pointer-events:none!important;
}

/* Today is chronological top-to-bottom, with Events filling each row left-to-right. */
@media(min-width:1281px){
  .asmbly-today-discovery-grid,
  .asmbly-today-event-bucket>div{
    display:grid!important;
    grid-template-columns:repeat(4,minmax(0,1fr))!important;
    grid-auto-flow:row!important;
    grid-auto-columns:auto!important;
    overflow:visible!important;
    gap:16px!important;
  }
}
@media(min-width:901px) and (max-width:1280px){
  .asmbly-today-discovery-grid,
  .asmbly-today-event-bucket>div{
    display:grid!important;
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
    grid-auto-flow:row!important;
    grid-auto-columns:auto!important;
    overflow:visible!important;
    gap:14px!important;
  }
}
@media(min-width:641px) and (max-width:900px){
  .asmbly-today-discovery-grid,
  .asmbly-today-event-bucket>div{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    grid-auto-flow:row!important;
    grid-auto-columns:auto!important;
    overflow:visible!important;
  }
}

@media(max-width:1100px){.asmbly-saved-card-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:820px){
  .asmbly-saved-workspace{inset:var(--asmbly-consumer-shell-h,60px) 0 var(--asmbly-feed-mobile-bottom,0)}
  .asmbly-saved-workspace-header{align-items:flex-start;padding:18px 14px 14px}
  .asmbly-saved-workspace-header p{display:none}
  .asmbly-saved-workspace-content{padding:14px 12px 96px}
  .asmbly-saved-card-grid,body.asmbly-saved-layout-list .asmbly-saved-card-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .asmbly-saved-workspace .asmbly-saved-card,body.asmbly-saved-layout-list .asmbly-saved-workspace .asmbly-saved-card{grid-template-columns:72px minmax(0,1fr);min-height:96px}
  .asmbly-saved-workspace .asmbly-saved-card .saved-art{width:72px;height:72px}
}
@media(max-width:520px){
  .asmbly-saved-workspace-header{display:grid;gap:12px}
  .asmbly-saved-workspace-actions{width:100%;justify-content:space-between}
  .asmbly-saved-card-grid,body.asmbly-saved-layout-list .asmbly-saved-card-grid{grid-template-columns:1fr}
}

/* ASMBLY 0.9.31.8.8.1.3 — true List renderer and Explore/Today route separation. */
body.asmbly-list-mode #asmblyFeedView{
  overflow-y:auto!important;
  overflow-x:hidden!important;
  padding:0 0 56px!important;
}
body.asmbly-list-mode #asmblyFeedView.asmbly-list-render{
  display:block!important;
  background:#0b0a10!important;
}
body.asmbly-list-mode .asmbly-video-feed{display:none!important}
body.asmbly-list-mode .asmbly-feed-head{
  width:min(1280px,calc(100% - 40px));
  max-width:none;
  margin:0 auto;
  padding:28px 0 18px;
  align-items:end;
}
body.asmbly-list-mode .asmbly-feed-head>div{display:grid;gap:4px}
body.asmbly-list-mode .asmbly-feed-head span{
  color:#ffb43f;font-size:10px;font-weight:950;letter-spacing:.13em;text-transform:uppercase
}
body.asmbly-list-mode .asmbly-feed-head h2{margin:0;color:#fff;font-size:clamp(27px,3vw,42px);letter-spacing:-.05em;line-height:1}
body.asmbly-list-mode .asmbly-feed-head>b{color:#aaa1ae;font-size:12px}
body.asmbly-list-mode .asmbly-feed-list-cards{
  width:min(1280px,calc(100% - 40px));
  max-width:none;
  height:auto!important;
  min-height:0!important;
  margin:0 auto;
  padding:0 0 80px!important;
  display:flex!important;
  flex-direction:column!important;
  gap:14px!important;
  overflow:visible!important;
}
body.asmbly-list-mode .asmbly-list-feed-card{
  width:100%!important;
  min-width:0!important;
  min-height:190px;
  grid-template-columns:210px minmax(0,1fr) minmax(220px,280px)!important;
  align-items:stretch;
  gap:22px!important;
  padding:14px!important;
  border-radius:24px!important;
  background:linear-gradient(135deg,#18151f,#111018)!important;
}
body.asmbly-list-mode .asmbly-list-media{width:210px;min-height:160px!important;aspect-ratio:4/3}
body.asmbly-list-mode .asmbly-list-copy{min-width:0;display:flex;flex-direction:column;justify-content:center;gap:7px}
body.asmbly-list-mode .asmbly-list-publisher{display:flex;align-items:center;gap:9px;flex-wrap:wrap}
body.asmbly-list-mode .asmbly-list-publisher>span{color:#ffbd53;font-size:10px;font-weight:950;letter-spacing:.08em;text-transform:uppercase}
body.asmbly-list-mode .asmbly-list-publisher small{color:#a79bab;font-size:9px;font-weight:850;letter-spacing:.08em;text-transform:uppercase}
body.asmbly-list-mode .asmbly-list-feed-card h3{margin:0!important;font-size:clamp(23px,2.2vw,34px)!important;line-height:1!important;letter-spacing:-.045em!important}
body.asmbly-list-mode .asmbly-list-feed-card p{margin:0!important;font-size:13px;line-height:1.45}
body.asmbly-list-mode .asmbly-list-caption{max-width:68ch;color:#d5cbd8;font-size:13px;line-height:1.45;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
body.asmbly-list-mode .asmbly-list-actions{display:grid;grid-template-rows:auto auto 1fr;align-content:center;gap:9px;padding:8px 0}
body.asmbly-list-mode .asmbly-list-actions>button{margin:0!important;min-height:48px;width:100%;border-radius:14px!important}
body.asmbly-list-mode .asmbly-list-actions>button.primary{display:flex;justify-content:space-between;align-items:center;background:#3dd6c4!important;color:#08201e!important;font-size:15px!important}
body.asmbly-list-mode .asmbly-list-actions>button.primary small{font-size:10px;opacity:.72}
body.asmbly-list-mode .asmbly-list-actions>button:not(.primary){background:#292530!important;color:#fff!important;border:1px solid rgba(255,255,255,.1)!important}
body.asmbly-list-mode .asmbly-list-actions>div{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:7px;align-self:end}
body.asmbly-list-mode .asmbly-list-actions>div button{margin:0!important;min-height:38px;padding:7px!important;background:rgba(255,255,255,.06)!important;color:#fff!important;border:1px solid rgba(255,255,255,.1)!important;font-size:10px!important}

/* Today always owns its own route; its event buckets use the full row width. */
.asmbly-today-discovery-section,
#asmblyTodayHappening,
.asmbly-today-event-bucket{width:100%!important;max-width:none!important;min-width:0!important}
.asmbly-today-event-bucket>div{
  width:100%!important;
  display:grid!important;
  grid-template-columns:repeat(4,minmax(0,1fr))!important;
  grid-auto-flow:row!important;
  grid-auto-columns:auto!important;
  align-items:stretch!important;
  overflow:visible!important;
}
.asmbly-today-event-bucket .asmbly-today-discovery-card{width:100%!important;min-width:0!important;max-width:none!important}

@media(max-width:1100px){
  body.asmbly-list-mode .asmbly-list-feed-card{grid-template-columns:170px minmax(0,1fr) 210px!important;gap:16px!important}
  body.asmbly-list-mode .asmbly-list-media{width:170px}
  .asmbly-today-event-bucket>div{grid-template-columns:repeat(3,minmax(0,1fr))!important}
}
@media(max-width:820px){
  body.asmbly-list-mode .asmbly-feed-head,body.asmbly-list-mode .asmbly-feed-list-cards{width:calc(100% - 24px)}
  body.asmbly-list-mode .asmbly-feed-head{padding:18px 0 12px}
  body.asmbly-list-mode .asmbly-list-feed-card{grid-template-columns:104px minmax(0,1fr)!important;min-height:142px;gap:12px!important;padding:10px!important}
  body.asmbly-list-mode .asmbly-list-media{width:104px;min-height:122px!important;grid-row:1/3}
  body.asmbly-list-mode .asmbly-list-feed-card h3{font-size:19px!important}
  body.asmbly-list-mode .asmbly-list-caption{display:none}
  body.asmbly-list-mode .asmbly-list-actions{grid-column:2;grid-template-columns:minmax(0,1fr) 48px;grid-template-rows:auto;gap:7px;padding:0}
  body.asmbly-list-mode .asmbly-list-actions>button{min-height:42px}
  body.asmbly-list-mode .asmbly-list-actions>button:not(.primary){font-size:0!important}
  body.asmbly-list-mode .asmbly-list-actions>button:not(.primary):after{content:'↗';font-size:16px}
  body.asmbly-list-mode .asmbly-list-actions>div{display:none}
  .asmbly-today-event-bucket>div{grid-template-columns:repeat(2,minmax(0,1fr))!important}
}
@media(max-width:540px){
  .asmbly-today-event-bucket>div{grid-template-columns:1fr!important}
}


/* ASMBLY 0.9.31.8.9.1 — Today cards, Event detail and mobile Feed action integrity. */

/* Today: the discovery root is a full-width stack of chronological buckets. */
#asmblyTodayHappening.asmbly-today-discovery-grid{
  display:block!important;
  width:100%!important;
  max-width:none!important;
  overflow:visible!important;
  padding:0!important;
  scroll-snap-type:none!important;
}
#asmblyTodayHappening .asmbly-today-event-bucket{
  display:block!important;
  width:100%!important;
  min-width:0!important;
  max-width:none!important;
  margin:0 0 24px!important;
}
#asmblyTodayHappening .asmbly-today-event-bucket:last-child{margin-bottom:0!important}
#asmblyTodayHappening .asmbly-today-event-bucket>h3{
  margin:0 0 12px!important;
  color:#fff!important;
  font:900 15px/1.2 Outfit,Inter,system-ui,sans-serif!important;
  letter-spacing:-.02em!important;
}
#asmblyTodayHappening .asmbly-today-event-bucket>div{
  display:grid!important;
  grid-template-columns:repeat(4,minmax(0,1fr))!important;
  grid-auto-flow:row!important;
  grid-auto-columns:auto!important;
  align-items:stretch!important;
  gap:16px!important;
  width:100%!important;
  min-width:0!important;
  overflow:visible!important;
}
#asmblyTodayHappening .asmbly-today-discovery-card{
  display:grid!important;
  grid-template-rows:minmax(176px,42%) minmax(0,1fr)!important;
  width:100%!important;
  min-width:0!important;
  max-width:none!important;
  min-height:360px!important;
  border-radius:22px!important;
}
#asmblyTodayHappening .asmbly-today-discovery-art{
  width:100%!important;
  height:auto!important;
  min-height:176px!important;
  background-size:contain!important;
  background-repeat:no-repeat!important;
  background-position:center!important;
  background-color:#0b0a10!important;
}
#asmblyTodayHappening .asmbly-today-discovery-copy{
  display:flex!important;
  flex-direction:column!important;
  min-width:0!important;
  padding:14px!important;
}
#asmblyTodayHappening .asmbly-today-discovery-copy h3{
  display:-webkit-box!important;
  -webkit-box-orient:vertical!important;
  -webkit-line-clamp:2!important;
  overflow:hidden!important;
  font-size:19px!important;
}
#asmblyTodayHappening .asmbly-today-discovery-copy p{
  min-height:0!important;
  display:-webkit-box!important;
  -webkit-box-orient:vertical!important;
  -webkit-line-clamp:2!important;
  overflow:hidden!important;
}
#asmblyTodayHappening .asmbly-today-discovery-copy>div{
  margin-top:auto!important;
  padding-top:13px!important;
}

@media(min-width:1024px) and (max-width:1439px){
  #asmblyTodayHappening .asmbly-today-event-bucket>div{grid-template-columns:repeat(3,minmax(0,1fr))!important}
}
@media(min-width:680px) and (max-width:1023px){
  #asmblyTodayHappening .asmbly-today-event-bucket>div{grid-template-columns:repeat(2,minmax(0,1fr))!important}
}
@media(max-width:679px){
  #asmblyTodayHappening .asmbly-today-event-bucket>div{grid-template-columns:1fr!important;gap:12px!important}
  #asmblyTodayHappening .asmbly-today-discovery-card{
    grid-template-columns:112px minmax(0,1fr)!important;
    grid-template-rows:minmax(156px,auto)!important;
    min-height:156px!important;
  }
  #asmblyTodayHappening .asmbly-today-discovery-art{height:100%!important;min-height:156px!important}
  #asmblyTodayHappening .asmbly-today-discovery-copy{padding:12px!important}
}

/* Desktop Event detail: expose the action toolbar and fit the first screen coherently. */
@media(min-width:901px){
  body.asmbly-event-route .asmbly-desktop-event-destination,
  body.asmbly-event-destination-open .asmbly-desktop-event-destination,
  body.asmbly-shell-detail .asmbly-desktop-event-destination,
  body.asmbly-detail-active .asmbly-desktop-event-destination{
    padding-top:var(--asmbly-consumer-shell-h,86px)!important;
    min-height:100vh!important;
  }
  body.asmbly-event-route .asmbly-desktop-event-toolbar,
  body.asmbly-event-destination-open .asmbly-desktop-event-toolbar,
  body.asmbly-shell-detail .asmbly-desktop-event-toolbar,
  body.asmbly-detail-active .asmbly-desktop-event-toolbar{
    display:flex!important;
    position:sticky!important;
    top:var(--asmbly-consumer-shell-h,86px)!important;
    z-index:10950!important;
    width:100%!important;
    max-width:none!important;
    min-height:66px!important;
    margin:0!important;
    padding:10px max(24px,calc((100vw - 1380px)/2))!important;
    background:rgba(246,245,248,.94)!important;
    border-bottom:1px solid rgba(31,23,42,.10)!important;
    backdrop-filter:blur(18px)!important;
  }
  .asmbly-desktop-event-toolbar-button{
    min-height:44px!important;
    box-shadow:0 6px 20px rgba(31,23,42,.06)!important;
  }
  .asmbly-desktop-event-main{
    width:min(1380px,calc(100% - 48px))!important;
    padding:14px 0 72px!important;
  }
  .asmbly-desktop-event-intro{
    grid-template-columns:minmax(320px,.76fr) minmax(0,1.24fr)!important;
    gap:34px!important;
    min-height:calc(100vh - var(--asmbly-consumer-shell-h,86px) - 92px)!important;
    align-items:start!important;
    padding:0 0 20px!important;
  }
  .asmbly-desktop-event-media-column{height:calc(100vh - var(--asmbly-consumer-shell-h,86px) - 104px)!important;min-height:460px!important}
  .asmbly-desktop-event-flyer-frame{
    position:sticky!important;
    top:calc(var(--asmbly-consumer-shell-h,86px) + 76px)!important;
    width:100%!important;
    height:100%!important;
    max-height:720px!important;
    min-height:0!important;
    aspect-ratio:auto!important;
    border-radius:24px!important;
  }
  .asmbly-desktop-event-summary{
    min-height:0!important;
    padding:4px 0 12px!important;
  }
  .asmbly-desktop-event-summary h1{
    margin:10px 0 8px!important;
    font-size:clamp(42px,4.4vw,68px)!important;
    line-height:.94!important;
  }
  .asmbly-desktop-event-hook{font-size:18px!important;margin-bottom:8px!important}
  .asmbly-desktop-event-presented,.asmbly-desktop-event-curated{font-size:14px!important;margin:3px 0!important}
  .asmbly-desktop-event-facts{gap:8px!important;margin:20px 0 12px!important}
  .asmbly-desktop-event-fact{
    min-height:66px!important;
    grid-template-columns:38px minmax(0,1fr)!important;
    gap:11px!important;
    padding:10px 13px!important;
    border-radius:16px!important;
  }
  .asmbly-desktop-event-fact>span{width:36px!important;height:36px!important;border-radius:12px!important;font-size:15px!important}
  .asmbly-desktop-event-fact b{font-size:15px!important}
  .asmbly-desktop-event-fact em{font-size:12px!important}
  .asmbly-desktop-event-primary-action{
    grid-template-columns:minmax(140px,.58fr) minmax(220px,1.42fr)!important;
    gap:12px!important;
    padding:10px 11px 10px 14px!important;
    border-radius:18px!important;
  }
  .asmbly-desktop-event-primary-action button{min-height:52px!important;font-size:16px!important;border-radius:14px!important}
  .asmbly-desktop-event-utilities{gap:8px!important;margin-top:12px!important}
  .asmbly-desktop-event-utilities button{min-height:54px!important;border-radius:15px!important;padding:7px 6px!important;font-size:11px!important}
  .asmbly-desktop-event-utilities button span{font-size:17px!important}
  .asmbly-desktop-hype-module{margin-top:12px!important;padding:12px 14px!important}
}
@media(min-width:901px) and (max-height:760px){
  .asmbly-desktop-event-main{width:min(1320px,calc(100% - 36px))!important;padding-top:8px!important}
  .asmbly-desktop-event-intro{gap:24px!important}
  .asmbly-desktop-event-media-column{min-height:390px!important}
  .asmbly-desktop-event-summary h1{font-size:clamp(36px,4vw,54px)!important}
  .asmbly-desktop-event-facts{margin:12px 0 8px!important;gap:6px!important}
  .asmbly-desktop-event-fact{min-height:58px!important;padding:8px 11px!important}
  .asmbly-desktop-event-utilities button{min-height:48px!important}
}

/* Mobile Feed: restore the familiar right-side social action rail. */
@media(max-width:900px){
  .asmbly-feed-frame{position:relative!important}
  .asmbly-feed-content{
    position:static!important;
    padding-right:66px!important;
  }
  .asmbly-feed-rail{
    position:absolute!important;
    right:10px!important;
    bottom:12px!important;
    z-index:12!important;
    width:46px!important;
    display:flex!important;
    flex-direction:column!important;
    align-items:stretch!important;
    gap:8px!important;
    pointer-events:none!important;
  }
  .asmbly-feed-rail button{
    width:46px!important;
    min-width:46px!important;
    height:46px!important;
    min-height:46px!important;
    padding:0!important;
    display:flex!important;
    flex-direction:column!important;
    align-items:center!important;
    justify-content:center!important;
    gap:1px!important;
    border-radius:999px!important;
    background:rgba(12,10,16,.78)!important;
    border:1px solid rgba(255,255,255,.16)!important;
    box-shadow:0 7px 24px rgba(0,0,0,.34)!important;
    pointer-events:auto!important;
  }
  .asmbly-feed-rail button span{font-size:18px!important}
  .asmbly-feed-rail button b{font-size:8px!important;line-height:1!important}
  .asmbly-feed-rail button:nth-child(n+2) b{position:absolute!important;width:1px!important;height:1px!important;overflow:hidden!important;clip:rect(0 0 0 0)!important;white-space:nowrap!important}
  .asmbly-feed-copy h2{padding-right:4px!important}
}
@media(max-width:390px), (max-height:680px) and (max-width:900px){
  .asmbly-feed-rail{right:8px!important;bottom:8px!important;gap:6px!important;width:42px!important}
  .asmbly-feed-rail button{width:42px!important;min-width:42px!important;height:42px!important;min-height:42px!important}
  .asmbly-feed-content{padding-right:58px!important}
}

/* 0.9.31.8.11.3.5 — Feed Programming content classes */
.asmbly-video-post.asmbly-feed-programmed{--program-accent:#43cdb8}.asmbly-video-post.asmbly-feed-programmed.class-featured{--program-accent:#2f7cff}.asmbly-video-post.asmbly-feed-programmed.class-sponsored{--program-accent:#ff7b46}.asmbly-video-post.asmbly-feed-programmed.class-advertisement{--program-accent:#c249d4}.asmbly-video-post.asmbly-feed-programmed .asmbly-feed-glow{background:radial-gradient(circle at 50% 52%,color-mix(in srgb,var(--program-accent) 34%,transparent),transparent 64%);opacity:.8}.asmbly-feed-program-label{display:inline-flex;width:max-content;padding:5px 8px;border-radius:999px;background:color-mix(in srgb,var(--program-accent) 15%,transparent);border:1px solid color-mix(in srgb,var(--program-accent) 34%,transparent);color:var(--program-accent);font-size:10px;font-weight:950;letter-spacing:.09em;text-transform:uppercase;margin-bottom:10px}.asmbly-feed-story .asmbly-feed-caption,.asmbly-feed-promo .asmbly-feed-caption{display:-webkit-box;-webkit-line-clamp:4;-webkit-box-orient:vertical;overflow:hidden;max-width:48ch}.asmbly-feed-story .asmbly-feed-rail,.asmbly-feed-promo .asmbly-feed-rail{align-self:end}.asmbly-feed-story .asmbly-feed-claimbar,.asmbly-feed-promo .asmbly-feed-claimbar{grid-template-columns:1fr}.asmbly-feed-story .asmbly-feed-claimbar>button,.asmbly-feed-promo .asmbly-feed-claimbar>button{border:1px solid color-mix(in srgb,var(--program-accent) 55%,#15131d);box-shadow:inset 0 0 0 1px color-mix(in srgb,var(--program-accent) 16%,transparent)}.asmbly-feed-promo .asmbly-featured-label{background:var(--program-accent);color:#fff}.asmbly-feed-programmed.class-editorial .asmbly-featured-label{display:none}
