/* ============================================================
   PAGES.CSS — additional styles for /quotes/ and /creators/ pages
   Layers on top of styles.css. Does not modify the original file.
   ============================================================ */

.breadcrumb {
  max-width: 1080px;
  margin: 24px auto 0;
  padding: 0 24px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.breadcrumb a { text-decoration: none; color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--coral-dark); }

.detail-hero {
  padding: 32px 24px 12px;
  text-align: center;
}

.detail-badge-lg {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--white);
  margin: 0 auto 22px;
}

.detail-card {
  max-width: 640px;
  margin: 0 auto 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 42px 36px;
  text-align: center;
}

.detail-quote-mark {
  font-family: 'Baloo 2', sans-serif;
  font-size: 3.2rem;
  color: var(--sun);
  line-height: 0.5;
  display: block;
  margin-bottom: 12px;
}

.detail-quote-text {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 700;
  margin: 0 0 14px;
}

.detail-quote-author {
  color: var(--ink-soft);
  font-weight: 600;
}

.detail-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 10px;
}

.detail-tagline {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 46ch;
  margin: 0 auto 22px;
}

.share-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 0 auto 8px;
}

.related-section { padding: 20px 24px 64px; }

.related-title {
  text-align: center;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 0 20px;
  color: var(--ink);
}

.quote-mini-grid, .hub-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.quote-mini {
  flex: 1 1 240px;
  max-width: 280px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 20px 22px;
  text-decoration: none;
  color: var(--ink);
  display: block;
  transition: transform 0.15s ease;
}
.quote-mini:hover { transform: translateY(-3px); }
.quote-mini p{
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
}
.quote-mini span{
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.back-link-wrap { text-align: center; margin-top: 6px; }
.back-link {
  display: inline-block;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--coral-dark);
  text-decoration: none;
  border-bottom: 2px solid var(--coral);
}
.back-link:hover { color: var(--ink); border-color: var(--ink); }

.hub-hero {
  padding: 48px 24px 32px;
  text-align: center;
}
.hub-hero h1 {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  margin: 0 0 12px;
}
.hub-hero p {
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 auto;
}
