.events-card__poster {
  isolation: isolate;
  overflow: hidden;
  aspect-ratio: 4 / 4.5;
  background: #17312f;
}

.events-card__poster-bg,
.events-card__poster-img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.events-card__poster-bg {
  z-index: 0;
  object-fit: cover;
  filter: blur(22px) saturate(1.16);
  opacity: 0.74;
  transform: scale(2.4);
}

.events-card__poster-img {
  z-index: 1;
  object-fit: contain;
  object-position: center;
}

.events-card__poster::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), transparent 34%, rgba(0, 0, 0, 0.1));
}

.events-card__info {
  display: grid;
  grid-template-columns: 62px 1fr;
  min-height: 78px;
  background: #2bae75;
}

.events-card__date {
  width: auto;
  height: auto;
  min-height: 78px;
  align-self: stretch;
}

.events-card__details {
  min-height: 78px;
}

.events-card__details p {
  font-weight: 300;
}

.events-card__month {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 24px;
  padding: 0 10px;
  color: #ffffff;
  border-radius: 4px;
  background: #2bae75;
  box-shadow: 0 10px 22px rgba(15, 32, 25, 0.16);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.events-time-picker {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  overflow: hidden;
  height: 48px;
  border: 1px solid rgba(14, 33, 25, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.events-time-picker:focus-within {
  border-color: rgba(43, 174, 117, 0.68);
  box-shadow: 0 0 0 4px rgba(43, 174, 117, 0.12);
}

.events-dashboard-form .events-time-picker input[type=time] {
  height: 46px;
  min-width: 0;
  padding: 0 12px 0 16px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.events-time-picker span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  padding: 0 14px;
  color: #ffffff;
  background: #2bae75;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .events-card__info {
    grid-template-columns: 44px 1fr;
    min-height: 58px;
  }

  .events-card__date {
    min-height: 58px;
  }

  .events-card__details {
    min-height: 58px;
  }

  .events-card__month {
    top: 8px;
    left: 8px;
    min-width: 40px;
    height: 21px;
    padding: 0 8px;
    font-size: 9px;
  }
}
