/* c-impactclock.css — converted from ImpactClock.module.css
   CSS-module local names become `c-ImpactClock_<name>`; globals from globals.css keep
   their names. */

.c-ImpactClock_impactClock {
  position: relative;
  width: 100%;
  height: 100svh;
  background: var(--color-dark-charcoal);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.c-ImpactClock_impactClockInner {
  width: 100%;
  max-width: var(--container-max);
  padding: 2.75rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: var(--space-3xl);
}

.c-ImpactClock_copy {
  max-width: 18ch;
  text-align: left;
}

.c-ImpactClock_copyLeft {
  margin-top: 40%;
}

.c-ImpactClock_copyRight {
  justify-self: end;
}

.c-ImpactClock_copyTopLeft {
  position: absolute;
  left: 30%;
  top: 2.75rem;
}

.c-ImpactClock_copyBottomLeft {
  position: absolute;
  left: 20%;
  bottom: 2.75rem;
}

.c-ImpactClock_dial {
  position: relative;
  width: 0;
  height: 0;
}

.c-ImpactClock_hand {
  position: absolute;
  left: 0;
  bottom: 0;
  width: var(--thickness);
  height: var(--length);
  margin-left: calc(var(--thickness) / -2);
  transform-origin: center bottom;
  background: var(--color-amber-yellow);
  will-change: transform;
}

.c-ImpactClock_hub {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0.75rem;
  height: 0.75rem;
  margin-left: -0.375rem;
  margin-bottom: -0.375rem;
  border-radius: 50%;
  background: var(--color-amber-yellow);
  z-index: 1;
  will-change: transform;
}

@media (max-width: 1000px) {
  .c-ImpactClock_impactClockInner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: var(--space-4xl);
  }

  .c-ImpactClock_copy,
  .c-ImpactClock_copyLeft,
  .c-ImpactClock_copyRight,
  .c-ImpactClock_copyTopLeft,
  .c-ImpactClock_copyBottomLeft {
    max-width: 28ch;
    justify-self: center;
    text-align: center;
    margin-top: 0;
  }

  .c-ImpactClock_copyTopLeft,
  .c-ImpactClock_copyBottomLeft {
    position: static;
  }
}
