/* ── First-Then page ──────────────────────────────── */

.first-then {
  max-width: 28rem;
  margin: 0 auto;
  padding: var(--space-6) var(--container-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

/* ── Card ──────────────────────────────────────── */

.first-then__card {
  display: block;
  width: 100%;
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  text-align: center;
  position: relative;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;

  &:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
  }

  &:active {
    transform: scale(0.98);
  }
}

.first-then__label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-block-end: var(--space-3);
  opacity: 0.7;
}

.first-then__card--first {
  background: #e8eaf6;
  color: #3949ab;
}

.first-then__card--then {
  background: #e8f5e9;
  color: #2e7d32;
}

.first-then__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.first-then__emoji {
  font-size: 3rem;
}

.first-then__photo {
  width: 4rem;
  height: 4rem;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.first-then__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
}

.first-then__placeholder {
  font-size: 1rem;
  opacity: 0.6;
  font-weight: 600;
}

/* ── Arrow ─────────────────────────────────────── */

.first-then__arrow {
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

