/* Event Card Styles for GP Plugin */
@import url('https://fonts.googleapis.com/css?family=Lato:400,700&display=swap');

.hh-em-cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.hh-em-card {
  width: 260px;
  height: 370px;
  position: relative;
  background: #222;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  font-family: 'Lato', Arial, sans-serif;
}

.hh-em-card-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
  z-index: 1;
}

.hh-em-card-gradient {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.8) 100%);
  z-index: 2;
}

.hh-em-card-content {
  position: relative;
  z-index: 3;
  padding: 24px 16px 20px 16px;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hh-em-card-date-badge {
  display: inline-block;
  background: #c46b1c;
  color: #fff;
  padding: 4px 16px;
  border-radius: 16px;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.hh-em-card-title {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hh-em-card-location {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #F5C77A;
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .hh-em-card {
    width: 98vw;
    min-width: 0;
    height: 320px;
  }
  .hh-em-card-title {
    font-size: 22px;
  }
} 
