/* Tikket Event Cards v0.7.1 */
.tikket-ec-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
}
@media (max-width: 1000px){
  .tikket-ec-grid{grid-template-columns:repeat(2, minmax(0, 1fr));}
}
@media (max-width: 600px){
  .tikket-ec-grid{grid-template-columns:1fr;}
}

.tikket-ec-card{
  display:block;
  text-decoration:none;
  border-radius:14px;
  overflow:hidden;
  background:#0f1b3a;
  box-shadow:0 10px 28px rgba(15,23,42,.10);
  transform:translateZ(0);
}

.tikket-ec-media{
  position:relative;
  height:140px;
}
.tikket-ec-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}
/* Fallback gradient when no image */
.tikket-ec-card.is-fallback .tikket-ec-bg{
  background-image: radial-gradient(120% 120% at 10% 10%, rgba(255, 221, 87, .25), transparent 55%),
                    radial-gradient(120% 120% at 90% 20%, rgba(11, 111, 99, .35), transparent 55%),
                    linear-gradient(135deg, #0f1638, #1a2355);
}

.tikket-ec-grad{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.65) 100%);
}

.tikket-ec-body{
  padding:12px 12px 12px 12px;
  color:#fff;
}
.tikket-ec-title{
  font-weight:900;
  font-size:14px;
  line-height:1.15;
  margin:0 0 6px 0;
}
.tikket-ec-sub{
  font-size:12px;
  opacity:.92;
  margin:0 0 6px 0;
}
.tikket-ec-meta{
  font-size:12px;
  opacity:.75;
}

.tikket-ec-card:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 40px rgba(15,23,42,.16);
}
