/* EVENT CARD */

.event-card{
  border:none;
  border-radius:24px;
  overflow:hidden;
  background:white;
  box-shadow:0 5px 20px rgba(0,0,0,.05);
  transition:.3s;
  height:100%;
}

.event-card:hover{
  transform:translateY(-5px);
}

.event-card img{
  height:240px;
  object-fit:cover;
  width:100%;
}

.event-date{
  position:absolute;
  top:20px;
  left:20px;
  background:var(--primary);
  color:white;
  padding:12px 18px;
  border-radius:18px;
  text-align:center;
  line-height:1.1;
  box-shadow:0 5px 15px rgba(0,0,0,.15);
}

.event-date strong{
  display:block;
  font-size:1.4rem;
  font-weight:800;
}

.event-meta{
  color:#6c757d;
  font-size:.95rem;
}

.event-meta i{
  color:var(--primary);
}

.category-badge{
  background:rgba(253,128,46,.15);
  color:var(--primary);
  padding:8px 14px;
  border-radius:50px;
  font-size:.78rem;
  font-weight:600;
  display:inline-block;
}

.btn-event{
  background:var(--primary);
  color:white;
  border:none;
  font-weight:600;
}

.btn-event:hover{
  background:#ea6f1f;
  color:white;
}

/* UPCOMING */

.upcoming-box{
  border:none;
  border-radius:24px;
  background:white;
  padding:30px;
  box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.upcoming-item{
  padding:20px 0;
  border-bottom:1px solid #eee;
}

.upcoming-item:last-child{
  border-bottom:none;
  padding-bottom:0;
}

.mini-date{
  min-width:70px;
  height:70px;
  border-radius:18px;
  background:rgba(253,128,46,.12);
  color:var(--primary);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  font-weight:700;
}

.mini-date strong{
  font-size:1.4rem;
  line-height:1;
}

/* INFO BOX */

.info-box{
  border-radius:20px;
  padding:30px;
  background:white;
  box-shadow:0 5px 20px rgba(0,0,0,.05);
  height:100%;
}

/* TABLE */

.table thead{
  background:var(--secondary);
  color:white;
}

.table td{
  vertical-align:middle;
}