.ewmve-container{
  position:relative;
  overflow:hidden;
  width:100%;
  max-width:1600px;
  margin:20px auto 40px auto;
  padding:22px 50px;
  box-sizing:border-box;
  background:#260b39;
  border-radius:12px;
  box-shadow:0 6px 18px rgba(0,0,0,.18);
}

.ewmve-heading{
  margin:0 0 10px;
  text-align:center;
  color:#fff;
  font-size:26px;
  font-weight:800;
}
.ewmve-subheading{
  margin:0 0 18px;
  text-align:center;
  color:rgba(255,255,255,.85);
  font-size:15px;
}

.ewmve-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(220px,1fr));
  gap:20px;
}

.ewmve-card{
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 4px 10px rgba(0,0,0,.15);
  transition:transform .25s ease, box-shadow .25s ease;
}
.ewmve-card:hover{
  transform:scale(1.04);
  box-shadow:0 12px 25px rgba(0,0,0,.30);
}

.ewmve-link{display:block; text-decoration:none; color:inherit;}

.ewmve-media{
  width:100%;
  aspect-ratio: 4/5;
  background-size:cover;
  background-position:center;
  border-bottom:1px solid #eee;
}

.ewmve-body{padding:12px 12px 14px; text-align:center;}

.ewmve-title{
  margin:0;
  font-size:16px;
  font-weight:800;
  color:#222;
}

.ewmve-location{
  margin-top:6px;
  font-size:14px;
  opacity:.85;
}

.ewmve-views{
  margin-top:6px;
  font-size:13px;
  opacity:.75;
}

.ewmve-load-wrapper{ text-align:center; margin-top:24px; }
.ewmve-load-more{
  background:#fe5acb;
  color:#fff;
  border:none;
  padding:12px 24px;
  font-size:16px;
  font-weight:800;
  border-radius:8px;
  cursor:pointer;
  transition:background .25s ease, transform .25s ease;
}
.ewmve-load-more:hover{ background:#e0006c; transform:translateY(-1px); }
.ewmve-load-more:disabled{ opacity:.65; cursor:progress; transform:none; }

@media (max-width: 900px){
  .ewmve-container{padding:18px 18px;}
}
@media (max-width: 768px){
  .ewmve-grid{ grid-template-columns:repeat(auto-fill, minmax(160px,1fr)); }
  .ewmve-heading{font-size:22px;}
}
