/* Local V5 polish: keep the published layout and change only the approved details. */

/* Kiosk: reward typography only. */
.kiosk-open-home .kiosk-reward-preview,
.kiosk-open-home .kiosk-reward-preview strong,
.kiosk-open-home .kiosk-reward-preview h3,
.kiosk-open-home .kiosk-reward-preview .reward-title,
.kiosk-open-home .kiosk-reward-preview .reward-points,
.kiosk-open-home #kiosk-rewards-list .reward-item {
  font-family: var(--serif);
}

/* Public landing: keep the existing grey switcher, use Pelican blue only for primary actions. */
#home-register-form button[type="submit"],
#home-recover-form button[type="submit"] {
  background: #263167;
  border-color: #263167;
  color: #fff;
  box-shadow: 0 12px 28px rgba(38, 49, 103, .16);
}

#home-register-form button[type="submit"]:hover,
#home-recover-form button[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(38, 49, 103, .21);
}

/* Public points section: same hierarchy as the kiosk, without introducing more blue. */
.public-home-details {
  grid-template-columns: minmax(285px, .68fr) minmax(260px, .72fr) minmax(0, 1.25fr);
}

.public-home-details .earning-explainer {
  width: 100%;
  min-width: 0;
  display: block;
  padding: 2px 0 0;
}

.public-home-details .public-earning-kicker {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.public-home-details .public-earning-value {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 13px;
  white-space: nowrap;
}

.public-home-details .public-earning-value strong {
  font-family: var(--serif);
  font-size: clamp(64px, 6.1vw, 78px);
  font-weight: 700;
  line-height: .76;
  letter-spacing: -.075em;
  color: var(--ink);
}

.public-home-details .public-earning-value span {
  font-family: var(--serif);
  font-size: clamp(25px, 2.35vw, 31px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.035em;
  color: var(--ink);
}

.public-home-details .public-earning-caption {
  margin-top: 12px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.public-home-details .public-earning-note {
  max-width: 305px;
  margin-top: 22px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .public-home-details {
    grid-template-columns: minmax(285px, .68fr) minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .public-home-details {
    grid-template-columns: 1fr;
  }

  .public-home-details .earning-explainer {
    max-width: 420px;
  }
}

@media (max-width: 560px) {
  .public-home-details .public-earning-value strong {
    font-size: clamp(60px, 20vw, 76px);
  }

  .public-home-details .public-earning-value span {
    font-size: clamp(24px, 8vw, 30px);
  }
}

@media (prefers-reduced-motion: reduce) {
  #home-register-form button[type="submit"],
  #home-recover-form button[type="submit"] {
    transition: none;
  }
}
