/* 
KEO: UNUSED, currently used is club-event-card.css
*/
.event-card {
  width: 312px;
  min-height: 310px;
  border-radius: 12px;
  background: #FFF;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: Inter, sans-serif;
  color: #000;
}

.event-card__top {
  position: relative;
  width: 100%;
  height: 204px;
}

.event-card__cover {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.event-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 12px 12px 0 0;
}

.cover-content {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.cost-date-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.event-type-pill {
  width: 64px;
  height: 20px;
  border-radius: 10px;
  background: #1D3AAD;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 109px; 

}

.event-type-text {
  color: #FFF;
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: normal;
}

.event-cost-tag {
  display: flex;
  width: 45px;
  height: 18px;
  padding: 0 10px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: normal;
  color: #FFF;
  flex-shrink: 0;
}

.event-cost-tag.free {
  background: #22B430;
}

.event-cost-tag.paid {
  background: #FF4B4B;
}

.event-date-time {
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: normal;
  color: #FFF;
}

.event-title {
  color: #FFF;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
}

.event-card__bottom {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ticket-sold-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.ticket-icon {
  font-size: 14px;
  color: #000;
}

.ticket-sold-label {
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: #000;
}

.ticket-sold-number {
  display: flex;
  width: 34px;
  height: 34px;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 34px;
  background: #E0E0E0;
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: #000;
}

.attending-header {
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #000;
  margin-top: 8px;
  margin-bottom: 2px;
}

.attending-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
}

.att-label {
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: #000;
}

.count-box {
  display: flex;
  width: 24px;
  height: 24px;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 34px;
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: #000;
}

.club-members-box {
  background: #D4DDFF;
}

.guests-box {
  background: #FDF7CF;
}

.edit-section {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: #000;
}

.edit-section i {
  font-size: 12px;
}

.events-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 12px;
}

.events-empty {
  padding: 0 12px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #666;
}


