.wrap {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 28px;
  perspective: 1400px;
}

.hero {
  position: relative;
  width: min(980px, calc(100vw - 40px));
  min-height: min(72vh, 720px);
  border-radius: 36px;
  padding: clamp(28px, 4vw, 56px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.05)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid var(--glass-border);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(255, 255, 255, 0.03);
  transform-style: preserve-3d;
  transition: transform 220ms ease-out;
  isolation: isolate;
}

.content {
  text-align: center;
  max-width: 820px;
  transform: translateZ(70px);
}

.meta {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  transform: translateZ(40px);
}

.time {
  position: absolute;
  left: 24px;
  bottom: 20px;
  z-index: 11;
}

.footer-note {
  position: absolute;
  right: 24px;
  bottom: 20px;
  z-index: 11;
}

@media (max-width: 720px) {
  .hero {
    min-height: 62vh;
    border-radius: 28px;
    padding: 24px;
  }

  .meta {
    gap: 10px;
  }

  .time,
  .footer-note {
    font-size: 11px;
  }
}
