
.tvsc-archive-hero-events{
  background:linear-gradient(135deg, rgba(0,111,177,.08), rgba(155,42,137,.08));
  border:1px solid var(--tvsc-border);
  border-radius:var(--tvsc-card-radius);
  padding:24px;
  margin-bottom:24px;
}
.tvsc-archive-hero-inner{
  display:grid;
  grid-template-columns:1fr auto;
  gap:20px;
  align-items:center;
}
.tvsc-kicker{
  margin:0 0 8px;
  color:var(--tvsc-primary);
  font-size:.85rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.tvsc-archive-intro{
  margin:0;
  max-width:72ch;
  color:var(--tvsc-muted);
}
.tvsc-archive-split{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(340px,.92fr);
  gap:24px;
  align-items:start;
}
.tvsc-archive-left,
.tvsc-archive-right{
  min-width:0;
}
.tvsc-filters-sticky{
  position:sticky;
  top:96px;
  z-index:10;
  margin-bottom:18px;
  max-height:calc(100vh - 116px);
  overflow:auto;
  padding-right:4px;
}
.tvsc-filter-panel,
.tvsc-archive-map-shell{
  background:var(--tvsc-surface);
  border:1px solid var(--tvsc-border);
  border-radius:var(--tvsc-card-radius);
  box-shadow:var(--tvsc-shadow);
}
.tvsc-filter-panel{
  padding:16px;
}
.tvsc-filter-panel-head,
.tvsc-archive-map-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.tvsc-filter-title{
  margin:0;
  font-size:1.05rem;
  line-height:1.2;
}
.tvsc-filter-toggle{
  display:none;
}
.tvsc-archive-search-form{
  display:grid;
  gap:12px;
  margin-top:14px;
}
.tvsc-archive-search-form input[type="text"]{
  width:100%;
  min-height:46px;
  padding:12px 14px;
  border:1px solid var(--tvsc-border);
  border-radius:12px;
  background:#fff;
  color:var(--tvsc-text);
  font:inherit;
}
.tvsc-archive-search-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.tvsc-btn-secondary,
.tvsc-btn-map{
  background:#fff;
  color:var(--tvsc-secondary);
  border-color:#cbd5e1;
}
.tvsc-btn-secondary:hover,
.tvsc-btn-map:hover{
  background:#f8fafc;
  text-decoration:none;
}
.tvsc-archive-summary{
  margin-top:14px;
  font-size:.95rem;
  color:var(--tvsc-muted);
}
.tvsc-archive-results-list{
  display:grid;
  gap:16px;
}
.tvsc-archive-event-card{
  display:grid;
  grid-template-columns:180px minmax(0,1fr);
}
.tvsc-archive-event-card .tvsc-card-media{
  min-height:100%;
}
.tvsc-archive-event-card .tvsc-card-media img{
  height:100%;
  aspect-ratio:auto;
}
.tvsc-archive-event-venue{
  margin-top:6px;
  color:var(--tvsc-secondary);
  font-weight:700;
}
.tvsc-archive-card-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}
.tvsc-map-sticky{
  position:sticky;
  top:96px;
}
.tvsc-archive-map-shell{
  padding:16px;
}
.tvsc-archive-map-count{
  color:var(--tvsc-muted);
  font-size:.92rem;
  font-weight:700;
}
.tvsc-archive-map{
  height:calc(100vh - 180px);
  min-height:480px;
  border-radius:14px;
  overflow:hidden;
  margin-top:14px;
  border:1px solid var(--tvsc-border);
  background:#e2e8f0;
}
.tvsc-pagination-wrap{
  margin-top:20px;
}
.tvsc-map-popup{
  min-width:220px;
  line-height:1.35;
}
.tvsc-map-popup-title{
  margin:0 0 8px;
  font-size:14px;
  font-weight:900;
}
.tvsc-map-popup-row{
  margin:4px 0;
  color:var(--tvsc-muted);
  font-size:13px;
}
.tvsc-archive-event-card.is-active{
  border-color:var(--tvsc-primary);
  box-shadow:0 0 0 2px rgba(0,111,177,.15), var(--tvsc-shadow);
}
.tvsc-marker-bounce{
  animation:tvscMarkerPulse 1.2s ease-out 1;
}
@keyframes tvscMarkerPulse{
  0% { transform:scale(1); }
  35% { transform:scale(1.12); }
  100% { transform:scale(1); }
}

@media (max-width: 1024px){
  .tvsc-archive-split{
    grid-template-columns:1fr;
  }
  .tvsc-map-sticky,
  .tvsc-filters-sticky{
    position:relative;
    top:auto;
    max-height:none;
    overflow:visible;
  }
  .tvsc-archive-map{
    min-height:420px;
    height:420px;
  }
}

@media (max-width: 768px){
  .tvsc-archive-hero-events{
    padding:18px;
  }
  .tvsc-archive-hero-inner{
    grid-template-columns:1fr;
  }
  .tvsc-filter-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:38px;
    padding:8px 12px;
    border-radius:10px;
    border:1px solid var(--tvsc-border);
    background:#fff;
    color:var(--tvsc-text);
    font-weight:700;
  }
  .tvsc-filter-body.is-collapsed{
    display:none;
  }
  .tvsc-archive-search-actions{
    grid-template-columns:1fr;
  }
  .tvsc-archive-event-card{
    grid-template-columns:1fr;
  }
  .tvsc-archive-map{
    min-height:340px;
    height:340px;
  }
}
