/* ========== Event Hero Card ========== */
.event-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 532px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.eh-col {
  position: relative;
}

/* --- Left: Image --- */
.eh-col--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Date badge */
.eh-date {
  display: flex;
  width: 104px;
  height: 104px;
  padding: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  position: absolute;
  left: 27px;
  top: 24px;
  border-radius: 12px;
  background: var(--Black, #000);
  color: #fff;
}

.eh-date__day {
  color: #fff;
  text-align: center;
  font-family: Poppins;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px; /* 33.333% */
  letter-spacing: 4px;
}

.eh-date__month {
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* --- Right: Details --- */
.eh-col--details {
  padding: 60px;
  background: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Topic tags */
.eh-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 32px;
}
.eh-topic {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: 6px 10px;
  font-size: 13px;
  color: #fff;
  text-decoration: none;
}
.eh-topic:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Title */
.eh-title {
  margin-bottom: 24px;
}

/* Summary (clamped look) */
.eh-summary {
  margin-bottom: 40px;
}
.eh-summary > p {
  color: #fff;
}

/* Partners */
.eh-partners__label {
  color: var(--500-Yellow, #ffc845);
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px; /* 150% */
  margin-bottom: 16px;
}
.eh-partners {
  color: #fff;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 155.556% */
  margin-bottom: 40px;
}

/* Register button */
.event-register-btn {
  display: inline-flex;
  width: fit-content;
  height: 48px;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 12px;
  background: #fa455c; /* 500 Crea Pink */
  color: #fff;
  text-decoration: none;
  font: 600 14px/1 Poppins, sans-serif;
  transition: filter 0.15s ease, transform 0.02s ease;
}
.event-register-btn img {
  width: 24px;
  height: 24px;
}
.event-register-btn:hover {
  filter: brightness(0.95);
}
.event-register-btn:active {
  transform: translateY(1px);
}

@media (max-width: 980px) {
  .event-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .eh-col--details {
    padding: 32px 24px;
  }
  .eh-summary {
    max-width: 100%;
  }
}
