/* The fruit surfaces: the library of grown stories and the reading view. pc-
   blocks over --lore-* tokens; fruit borrows the warm --lore-fruit accent (the
   same hue Bootstrap's warning maps to), never a red alarm. */

/* Library */
.pc-fruit-library {
  max-width: 40rem;
}

.pc-fruit-library__title {
  font-size: var(--lore-text-heading);
  margin: 0 0 var(--lore-space-1);
}

.pc-fruit-library__lede {
  color: var(--lore-ink-soft);
  margin: 0 0 var(--lore-space-5);
}

.pc-fruit-library__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--lore-space-3);
}

.pc-fruit-card {
  display: flex;
  align-items: center;
  gap: var(--lore-space-3);
  padding: var(--lore-space-4);
  border: 1px solid var(--lore-border);
  border-radius: var(--lore-radius-lg);
  background: var(--lore-surface-raised);
  color: var(--lore-ink);
  text-decoration: none;
  transition: border-color var(--lore-dur-ui) var(--lore-ease),
              transform var(--lore-dur-ui) var(--lore-ease);
}

.pc-fruit-card:hover,
.pc-fruit-card:focus-visible {
  border-color: var(--lore-border-strong);
  transform: translateY(-1px);
}

.pc-fruit-card__icon {
  font-size: 1.5rem;
  line-height: 1;
}

.pc-fruit-card__text {
  display: grid;
  gap: 0.125rem;
}

.pc-fruit-card__title {
  font-family: var(--lore-font-display);
  font-size: var(--lore-text-lead);
  font-weight: var(--lore-weight-semibold);
}

.pc-fruit-card__meta {
  font-size: var(--lore-text-small);
  color: var(--lore-ink-soft);
}

.pc-fruit-empty {
  max-width: 26rem;
  margin: clamp(2rem, 12dvh, 6rem) auto 0;
  text-align: center;
}

.pc-fruit-empty__text {
  color: var(--lore-ink-soft);
  margin: 0 0 var(--lore-space-4);
}

/* Reader — a narrow serif reading column */
.pc-fruit-reader {
  max-width: 36rem;
  margin-inline: auto;
}

.pc-fruit-reader__back {
  display: inline-block;
  margin-bottom: var(--lore-space-4);
  font-size: var(--lore-text-small);
  color: var(--lore-ink-soft);
  text-decoration: none;
}

.pc-fruit-reader__back:hover {
  color: var(--lore-ink);
}

.pc-fruit-reader__eyebrow {
  font-size: var(--lore-text-caption);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pc-fruit-accent, var(--lore-fruit));
  margin: 0 0 var(--lore-space-2);
}

.pc-fruit-reader__title {
  font-family: var(--lore-font-display);
  font-size: var(--lore-text-title);
  line-height: var(--lore-leading-tight);
  margin: 0 0 var(--lore-space-5);
}

.pc-fruit-reader__body {
  font-family: var(--lore-font-display);
  font-size: var(--lore-text-lead);
  line-height: var(--lore-leading-relaxed, 1.7);
  color: var(--lore-ink);
}

.pc-fruit-reader__body p {
  margin: 0 0 var(--lore-space-4);
}

/* Forward-intent — a quiet invitation, never a share wall */
.pc-fruit-forward {
  margin-top: var(--lore-space-6);
  padding-top: var(--lore-space-5);
  border-top: 1px solid var(--lore-border);
}

.pc-fruit-forward__prompt {
  font-size: var(--lore-text-small);
  color: var(--lore-ink-soft);
  margin: 0 0 var(--lore-space-2);
}

.pc-fruit-forward__form {
  display: flex;
  flex-wrap: wrap;
  gap: var(--lore-space-2);
}

.pc-fruit-forward__field {
  flex: 1;
  min-width: 12rem;
}

.pc-fruit-forward__noted {
  font-family: var(--lore-font-display);
  color: var(--lore-ink-soft);
  margin: 0;
}
