.hero-section .hero-poster {
  align-self: center;
  overflow: visible;
}

.hero-section .hero-poster img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.hero-section .hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero-section .hero-facts::after {
  content: none !important;
  display: none;
}

.hero-section .hero-facts > .event-date-card {
  min-height: 76px;
  color: #bdb8ad;
  background: linear-gradient(145deg, rgba(247, 201, 40, 0.13), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(247, 201, 40, 0.42);
  border-radius: 12px;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  display: flex;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), 0 14px 30px rgba(0, 0, 0, 0.18);
}

.hero-section .event-date-card svg {
  width: 25px;
  height: 25px;
  color: #f3b700;
  flex: 0 0 auto;
}

.hero-section .event-date-card span {
  display: grid;
  color: #aaa69d;
  font-size: 0.72rem;
  line-height: 1.45;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-section .event-date-card b {
  color: #f7f3e8;
  font-size: 0.98rem;
  letter-spacing: 0;
}

@media (max-width: 650px) {
  .hero-section .hero-facts {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .hero-section .hero-facts > div,
  .hero-section .hero-facts > .event-date-card {
    grid-column: auto;
    min-height: 74px;
    padding: 11px 10px;
    gap: 9px;
  }

  .hero-section .event-date-card b {
    font-size: 0.86rem;
  }

  .hero-section .event-date-card span {
    font-size: 0.65rem;
  }
}
