:root{
  --bg:#f2f5fb;
  --surface:#ffffff;
  --surface-soft:#f8faff;
  --text:#10213d;
  --muted:#60708e;
  --primary:#1f5fbf;
  --primary-700:#174a96;
  --accent:#e6efff;
  --border:#dce5f4;
  --radius:14px;
  --shadow:0 8px 24px rgba(16,33,61,.08);
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,sans-serif;background:var(--bg);color:var(--text)}
.container{max-width:1240px;margin:0 auto;padding:0 1rem}
.page-shell{min-height:100vh}
.hero{position:relative;overflow:hidden;background:linear-gradient(130deg,#0d2149,#1f5fbf 58%,#4c8ef5);color:#fff;padding:3.4rem 0 2.4rem}
.hero__glow{position:absolute;right:-130px;top:-100px;width:360px;height:360px;border-radius:999px;background:rgba(255,255,255,.16);filter:blur(8px)}
.hero__content{position:relative;z-index:1}
.eyebrow{margin:0 0 .5rem;font-weight:600;letter-spacing:.08em;text-transform:uppercase;font-size:.76rem;opacity:.9}
.hero h1{margin:.1rem 0 .8rem;font-size:clamp(1.9rem,3.5vw,2.8rem);line-height:1.1;max-width:920px}
.hero__subtitle{margin:0 0 1.2rem;color:#d9e7ff;max-width:800px}
.searchbar{display:flex;align-items:center;gap:.55rem;background:#fff;border-radius:12px;max-width:760px;padding:.72rem .88rem;box-shadow:var(--shadow)}
.searchbar__icon{color:#486083;font-size:1.12rem}
.searchbar input{border:none;outline:none;width:100%;font-size:1rem;color:#10213d}
.hero__stats{margin-top:1rem;display:flex;gap:.8rem;flex-wrap:wrap}
.stat{background:rgba(255,255,255,.16);backdrop-filter:blur(2px);border:1px solid rgba(255,255,255,.22);padding:.65rem .9rem;border-radius:12px;min-width:112px}
.stat span{display:block;font-weight:700;font-size:1.2rem}
.stat small{color:#deebff}
.layout{margin-top:-1.1rem;padding-bottom:1.4rem}
.panel{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);box-shadow:var(--shadow)}
.filters-panel{padding:1rem 1rem .85rem;margin-bottom:1rem}
.panel__head{display:flex;justify-content:space-between;align-items:center;gap:.8rem;margin-bottom:.7rem}
.panel__head h2{margin:0;font-size:1.03rem}
.subtle{color:var(--muted);font-size:.86rem}
.filter-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:.7rem}
.filter-grid label{display:flex;flex-direction:column;gap:.32rem}
.filter-grid span{font-size:.78rem;color:var(--muted);font-weight:600}
input,select,textarea{border:1px solid var(--border);border-radius:10px;padding:.66rem .72rem;background:#fff;color:var(--text);font:inherit}
input:focus,select:focus,textarea:focus{outline:none;border-color:#9ab8ec;box-shadow:0 0 0 4px #d8e7ff}
.chips{margin-top:.72rem;display:flex;flex-wrap:wrap;gap:.45rem;min-height:1.8rem}
.chip{background:var(--accent);color:#194785;border:1px solid #cfe0fb;border-radius:999px;padding:.3rem .62rem;font-size:.78rem;font-weight:600}
.btn{border:0;border-radius:10px;padding:.58rem .9rem;background:var(--primary);color:#fff;font-weight:600;cursor:pointer;transition:all .15s ease}
.btn:hover{background:var(--primary-700)}
.btn:focus-visible{outline:none;box-shadow:0 0 0 4px #d8e7ff}
.btn--ghost{background:#eef4ff;color:#1c4e97}
.btn--ghost:hover{background:#dfeafd}
.content-grid{display:grid;grid-template-columns:1.75fr 1fr;gap:1rem}
.list-panel,.map-panel{padding:1rem}
.count-badge{background:#eef4ff;color:#1c4e97;border:1px solid #d9e7ff;border-radius:999px;padding:.24rem .6rem;font-size:.78rem;font-weight:600}
.cards{display:grid;grid-template-columns:repeat(auto-fill,minmax(255px,1fr));gap:.8rem}
.card{background:var(--surface-soft);border:1px solid var(--border);border-radius:12px;padding:.82rem;cursor:pointer;transition:.16s ease}
.card:hover{transform:translateY(-2px);border-color:#9ab8ec;box-shadow:0 8px 20px rgba(31,95,191,.12)}
.card h3{margin:.2rem 0 .38rem;font-size:1rem;line-height:1.25}
.meta{color:var(--muted);font-size:.82rem;margin-bottom:.18rem}
.badges{display:flex;gap:.35rem;flex-wrap:wrap;margin:.46rem 0}
.badge{background:#eef4ff;color:#1e4f98;border-radius:999px;padding:.18rem .5rem;font-size:.72rem;font-weight:600}
.desc{color:#30445f;font-size:.87rem;line-height:1.4;margin:.36rem 0 0}
iframe{width:100%;height:calc(100vh - 300px);min-height:480px;border:1px solid var(--border);border-radius:12px;background:#fff}
.event-modal{max-width:700px;border:none;border-radius:14px;padding:1rem 1.1rem;box-shadow:var(--shadow)}
.event-modal::backdrop{background:rgba(16,33,61,.45)}
@media (max-width:1024px){
  .filter-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .content-grid{grid-template-columns:1fr}
  iframe{height:420px;min-height:420px}
}
@media (max-width:640px){
  .hero{padding:2.5rem 0 1.8rem}
  .layout{margin-top:-.5rem}
  .filter-grid{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
}
