.hero-thumb-card {
  position: relative;
  isolation: isolate;
}

.hero-thumb-card::after {
  position: absolute;
  inset: 45% 0 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(3, 4, 5, 0.72));
  content: "";
  pointer-events: none;
}

.hero-thumb-status {
  position: absolute;
  right: auto;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  width: fit-content;
  max-width: calc(100% - 14px);
  min-width: 0;
  min-height: 18px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 4px 7px 3px;
  overflow: hidden;
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 7.5px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-thumb-status.is-live {
  border: 1px solid rgba(242, 150, 32, 0.5);
  background: rgba(7, 8, 9, 0.78);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.24);
}

.hero-thumb-status.is-upcoming {
  border: 1px solid rgba(242, 150, 32, 0.3);
  background: rgba(7, 8, 9, 0.7);
  color: rgba(255, 255, 255, 0.78);
}

.hero-thumb-status strong {
  color: #f5a43a;
  font: inherit;
}

@media (max-width: 1199px) {
  .hero-thumb-status {
    right: auto;
    bottom: 4px;
    left: 50%;
    max-width: calc(100% - 10px);
    min-height: 16px;
    gap: 2px;
    padding: 3px 5px 2px;
    font-size: 6.5px;
    letter-spacing: 0.025em;
  }

}

@media (max-width: 575px) {
  .hero-thumb-status {
    right: auto;
    bottom: 3px;
    left: 50%;
    max-width: calc(100% - 8px);
    min-height: 14px;
    padding: 3px 4px 2px;
    font-size: 5.75px;
  }
}
