/* ── Affirmations: a full-screen reading surface ──
 * No header, no card, no chrome — one sentence, the whole screen, tap for the
 * next. The words are the interface. */
.affirmations-logo {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  box-shadow: var(--shadow);
  margin: 28px auto 0;
  display: block;
  flex-shrink: 0;
}

.affirmation-full {
  position: relative;
  width: 100%;
  flex: 1;
  border: none;
  padding: 32px 30px calc(var(--nav-height) + 40px);
  background: none;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 28px;
}

.affirmation-text {
  font-family: var(--font-head);
  font-size: clamp(28px, 7.5vw, 42px);
  font-weight: 500;
  line-height: 1.35;
  color: var(--text);
  max-width: 15ch;
  text-wrap: balance;
  transition: opacity .14s ease;
}

.affirmation-hint {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-light);
}

.affirmation-full:active .affirmation-text { opacity: .55; }

@media (prefers-reduced-motion: reduce) {
  .affirmation-text { transition: none; }
}
