.ol-lines {
  margin-top: 16px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 24px;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.6;
  letter-spacing: 0.005em;
  box-shadow: var(--shadow-card);
  position: relative;
}
.ol-lines::before {
  content: "“";
  position: absolute;
  top: -6px;
  left: 14px;
  font-family: var(--serif);
  font-size: 64px;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
}
.ol-lines .line {
  margin: 0 0 8px;
  animation: fade-up 0.3s ease both;
}
.ol-lines .line.dim {
  color: var(--fg-dim);
  font-size: 17px;
}
.ol-lines .line:last-child { margin-bottom: 0; }

.ol-hint {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--fg-dim);
}
.ol-hint .item {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  padding: 4px 8px;
  animation: fade-up 0.3s ease both;
}
.ol-hint .item .key {
  color: var(--accent);
  margin-right: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 11px;
}
