/* SquishyBliss character bio pages
   Plain CSS on purpose: css/tailwind.css is a purged build, so any utility
   class not already used on the site silently does nothing. */

.bio-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: #f472b6;
  margin-bottom: 0.5rem;
}

.bio-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

@media (min-width: 820px) {
  .bio-layout { grid-template-columns: 340px minmax(0, 1fr); gap: 2.5rem; }
  .bio-portrait { position: sticky; top: 6.5rem; }
}

.bio-portrait img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1.75rem;
  border: 5px solid #fbcfe8;
  box-shadow: 0 14px 32px rgba(219, 39, 119, 0.18);
}

.bio-quote {
  margin-top: 1rem;
  background: #fce7f3;
  border: 3px dashed #f9a8d4;
  border-radius: 1.25rem;
  padding: 1rem 1.1rem;
  text-align: center;
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.35;
  color: #db2777;
}

.bio-copy {
  background: #fff;
  border: 4px solid #fbcfe8;
  border-radius: 1.75rem;
  padding: 1.75rem;
  color: #be185d;
  box-shadow: 0 8px 22px rgba(219, 39, 119, 0.10);
}

@media (min-width: 820px) { .bio-copy { padding: 2.25rem; } }

.bio-copy p { line-height: 1.65; margin-bottom: 1.5rem; }
.bio-copy h2 { margin-top: 0.25rem; }
.bio-copy h2 + p { margin-top: 0; }

.bio-quirks {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.bio-quirks li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: 0.65rem;
  line-height: 1.55;
}

.bio-quirks li::before {
  content: "\1FA77";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.05rem;
}

.bio-watch {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border: 3px dashed #f59e0b;
  border-radius: 1.25rem;
  padding: 1.1rem 1.25rem;
  color: #78350f;
}

.bio-watch p { margin-bottom: 0; }
.bio-watch a { text-decoration: underline; font-weight: 700; }

/* Row of links to the other characters */
.bio-kin-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 2.25rem;
}

.bio-kin {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #fff;
  border: 3px solid #f9a8d4;
  color: #be185d;
  font-weight: 600;
  padding: 0.6rem 1.1rem;
  border-radius: 9999px;
  min-height: 44px;
  text-decoration: none;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.bio-kin:hover { border-color: #db2777; transform: translateY(-2px); }
.bio-kin:focus-visible { outline: 3px solid #f59e0b; outline-offset: 3px; }
.bio-kin span[aria-hidden] { font-size: 1.25rem; }

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

