.event-card {
  position: relative;
  width: 100%;
  max-width: 380px;
  background: white;
  border-radius: 16px 16px 0 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  padding-bottom: 25px;
}

.image-container {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.event-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 16px 16px 0 0;
}

.date-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 8px 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.date-day {
  font-size: small;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 0.9;
  display: block;
  text-transform: uppercase;
}

.date-month {
  font-size: small;
  font-weight: 500;
  line-height: 0.9;
  color: #666;
  text-transform: uppercase;
}

.card-content {
  padding: 24px;
  padding-bottom: 32px;
  position: relative;
  z-index: 1;
}

.event-title {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.event-description {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 20px;
}

.more-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 50%;
  transition: all 0.3s ease;
  position: absolute;
  bottom: 0px;
  right: 20px;
}

.more-button svg {
  width: 18px;
  height: 18px;
  color: #666;
  transition: color 0.3s ease;
}