/* Anime Mochi - Guides section. Small extension of site.css (which supplies the
   shared .topnav / .page / .site-footer chrome). These rules style the guides
   HUB (card grid) and the long-form ARTICLE extras (lead, byline, callouts,
   play CTA, related list). Loaded AFTER site.css. */

/* ---- hub intro ---- */
.guides-intro { margin: 0 0 26px; }
.guides-intro p { font-size: 17px; color: #5f586f; }

/* ---- hub: card grid of guides ---- */
.guide-grid {
  list-style: none; padding: 0; margin: 18px 0 0;
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.guide-card {
  display: flex; flex-direction: column; gap: 6px;
  background: #fff; border: 1px solid rgba(80, 60, 110, 0.12); border-radius: 16px;
  padding: 18px 20px 20px; text-decoration: none;
  box-shadow: 0 6px 18px rgba(180, 140, 175, 0.16);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.guide-card:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(180, 140, 175, 0.26); }
.guide-card .kicker {
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: #2aa6b0;
}
.guide-card h2 { font-size: 18px; margin: 2px 0 0; color: #322c43; line-height: 1.3; }
.guide-card p { font-size: 14.5px; color: #6b6480; margin: 4px 0 0; line-height: 1.5; }

/* ---- article ---- */
.guide .crumbs { font-size: 13.5px; color: #6b6480; margin: 0 0 14px; }
.guide .crumbs a { color: #0b6e78; text-decoration: none; }
.guide .crumbs a:hover { text-decoration: underline; }
.guide .crumbs span { margin: 0 7px; color: #b9b2c6; }
.guide .byline { font-size: 13.5px; color: #6b6480; margin: 0 0 22px; }
.guide .byline strong { color: #5f586f; }
.guide .lead { font-size: 18px; color: #4a4459; line-height: 1.6; margin: 0 0 18px; }
.guide h2 { border-top: 1px solid rgba(80, 60, 110, 0.10); padding-top: 22px; }
.guide h2:first-of-type { border-top: none; padding-top: 0; }
.guide ol { padding-left: 22px; }
.guide ol li { margin: 8px 0; color: #5f586f; }

/* a soft highlighted aside ("tip" / "good to know") */
.guide .callout {
  background: #fff6fb; border: 1px solid rgba(255, 150, 200, 0.35); border-left: 4px solid #4ec0ca;
  border-radius: 12px; padding: 14px 18px; margin: 20px 0;
}
.guide .callout p { margin: 0; }
.guide .callout strong { color: #322c43; }

/* ---- in-article "play this game" CTA box ---- */
.guide-cta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 18px;
  background: linear-gradient(180deg, #fff1f8 0%, #eef4ff 100%);
  border: 1px solid rgba(80, 60, 110, 0.14); border-radius: 18px;
  padding: 18px 20px; margin: 26px 0;
}
.guide-cta img { width: 64px; height: 64px; border-radius: 14px; flex: none; display: block; }
.guide-cta .cta-body { flex: 1 1 200px; }
.guide-cta .cta-body b { display: block; color: #322c43; font-size: 17px; }
.guide-cta .cta-body span { font-size: 14.5px; color: #6b6480; }
.guide-cta a.play {
  flex: none; display: inline-flex; align-items: center; gap: 7px;
  background: #4ec0ca; color: #06343c; font-weight: 700; font-size: 15px;
  text-decoration: none; border-radius: 999px; padding: 11px 20px;
}
.guide-cta a.play:hover { background: #6fd0d9; }
.guide-cta a.play svg { width: 16px; height: 16px; }

/* ---- related guides at the foot of an article ---- */
.guide-related { margin-top: 36px; border-top: 1px solid rgba(80, 60, 110, 0.12); padding-top: 18px; }
.guide-related h2 { font-size: 18px; border: none; padding-top: 0; margin: 0 0 10px; }
.guide-related ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.guide-related a { color: #0b6e78; text-decoration: none; font-weight: 600; }
.guide-related a:hover { text-decoration: underline; }
