:root{
  --rush-blue:#2268b1;
  --rush-navy:#0b1e3f;
  --rush-ink:#0a0a0a;
  --rush-sky:#e8f1fb;
  --card:#ffffff;
  --muted:#6b7280;
}

/* ===============================
   Widget Wrapper
================================ */

.rush-select-events{
  max-width:1200px;
  margin:0 auto;
  padding:24px;
}

/* ===============================
   Filter Buttons
================================ */

.rse-filters{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:20px;
}

.rse-filter-btn{
  padding:10px 18px;
  border:1px solid #d1d5db;
  background:#ffffff;
  cursor:pointer;
  font-weight:600;
  color:#1f2937;
  transition:all .2s ease;
}

.rse-filter-btn:hover{
  border-color:var(--rush-blue);
}

.rse-filter-btn.is-active{
  background:var(--rush-blue);
  color:#ffffff;
  border-color:var(--rush-blue);
  box-shadow:0 4px 10px rgba(34,104,177,.25);
}

/* ===============================
   Grid
================================ */

.rse-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
  margin-top:16px;
}

@media (max-width:1024px){
  .rse-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width:640px){
  .rush-select-events{
    padding:16px;
  }

  .rse-grid{
    grid-template-columns:1fr;
  }
}

/* ===============================
   Card
================================ */

.rse-card{
  display:flex;
  flex-direction:column;
  background:var(--card);
  border:1px solid #e5e7eb;
  box-shadow:0 2px 8px rgba(11,30,63,.06);
  height:100%;
}

/* ---------------- Media ---------------- */

.rse-card img{
  width:100%;
  aspect-ratio:16 / 9;
  object-fit:contain;
  border-bottom:1px solid #e5e7eb;
  background:#ffffff;
}

/* ===============================
   Card Body Layout
================================ */

.rse-body{
  display:grid;
  grid-template-columns:80px 1fr;
  gap:16px;
  padding:16px;
}

/* ---------------- Date Column ---------------- */

.rse-datecol{
  border-right:1px solid #e5e7eb;
  padding-right:12px;
  text-align:center;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.rse-date-month{
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
  color:#111827;
}

.rse-date-range{
  font-size:40px;
  font-weight:900;
  line-height:1;
  color:#000000;
}

.rse-date-year{
  font-size:16px;
  font-weight:700;
  color:#9ca3af;
}

/* ---------------- Content Column ---------------- */

.rse-content{
  padding:0;
}

.rse-title{
  margin:0 0 6px;
  font-size:20px;
  font-weight:800;
  color:var(--rush-navy);
}

.rse-meta{
  font-size:14px;
  color:#374151;
  display:flex;
  flex-direction:column;
  gap:4px;
  margin-bottom:12px;
}

/* ===============================
   Actions
================================ */

.rse-actions{
  display:flex;
  justify-content:center;
  padding:16px;
  border-top:1px solid #e5e7eb;
}

.rse-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 22px;
  font-weight:700;
  background:var(--rush-blue);
  color:#ffffff;
  border:1px solid var(--rush-blue);
  text-decoration:none;
  transition:all .2s ease-in-out;
}

.rse-btn:hover{
  background:var(--rush-navy);
  border-color:var(--rush-navy);
}

/* Details coming soon */
.rse-soon{
  font-weight:700;
  color:var(--muted);
  font-size:14px;
  padding:16px;
  text-align:center;
}

/* ===============================
   Empty State
================================ */

.rse-empty{
  margin-top:24px;
  padding:24px;
  border:1px dashed #d1d5db;
  text-align:center;
  color:var(--muted);
  font-weight:600;
}

/* ===============================
   Mobile Adjustments
================================ */

@media (max-width:640px){
  .rse-body{
    grid-template-columns:1fr;
  }

  .rse-datecol{
    border-right:0;
    border-bottom:1px solid #e5e7eb;
    padding-bottom:12px;
    margin-bottom:12px;
  }
}
