/* Beatitudes Examen — page-specific. Does not change the confession guide. */

html.page-beatitudes,
html.page-beatitudes body {
  touch-action: pan-y;
  overscroll-behavior-x: none;
}

.examen-meter {
  width: 100%;
  padding: 4px 2px 14px;
}

.screen[data-type="scale"],
.examen-choices,
.examen-choice,
.choice-label {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

.examen-choices {
  max-width: 22rem;
}

.examen-choice {
  min-height: 58px;
  font-size: 1.15rem;
  line-height: 1.3;
  padding: 16px 22px;
  touch-action: none;
}

.examen-choice.is-on {
  background: var(--paper);
  border-color: var(--glass-border);
  box-shadow: 0 1px 2px rgba(40, 36, 30, 0.04);
}

.examen-meter-track {
  position: relative;
  height: 3px;
  border-radius: 999px;
  background: rgba(138, 127, 112, 0.22);
  overflow: hidden;
}

.examen-meter-bar {
  position: absolute;
  top: 50%;
  left: 0;
  width: 26%;
  height: 6px;
  border-radius: 999px;
  background: rgba(138, 127, 112, 0.72);
  transform: translateY(-50%);
  box-shadow: none;
}

.examen-hint,
.key-hint.examen-hint {
  display: block;
}

.examen-summary {
  text-align: left;
  margin: 8px auto 0;
  max-width: 32rem;
}

.examen-block {
  margin: 0 0 28px;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.examen-block-head {
  padding: 18px 20px 14px;
  background: #e8e2d8;
}

.examen-block-title {
  margin: 0 0 6px;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
}

.examen-block-lede {
  margin: 0;
  font-size: 1.05rem;
}

.examen-list {
  margin: 0;
  padding: 0 20px 8px;
  list-style: none;
}

.examen-list li {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 1.15rem 0 1.05rem;
  border-top: 1px solid rgba(40, 36, 30, 0.06);
}

.examen-item-label {
  display: block;
  margin: 0 0 0.55rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  text-align: center;
}

.examen-item-q {
  font-family: var(--font-display);
  font-size: 1.12rem;
  line-height: 1.45;
  color: var(--ink);
}

.screen-summary .summary-header {
  padding-top: 0.25rem;
}

.examen-close {
  margin-top: 8px;
}

@media (max-width: 600px) {
  .intro-copy {
    font-size: clamp(1.25rem, 5.6vw, 1.55rem);
  }

  .examen-choices {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .examen-meter-bar {
    transition: none;
  }
}
