/* ==========================================================
   /guides/ — indexable storefront detail pages.

   These pages reuse /promo/promo.css wholesale for the carousel,
   65/35 content grid, purchase panel and sticky bar. This file only
   adds what /promo/ deliberately does not have: a way back to the
   storefront.

   Nothing here overrides a /promo/ rule -- editing this file cannot
   change how any /promo/ page renders.
   ========================================================== */

/* ───────── slim top bar (the one deliberate departure from
   promo's no-exit rule -- storefront traffic needs a way back) ───────── */
.guides-topbar {
  position: sticky; top: 0; z-index: 60;
  background: rgba(10,26,49,.82);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.guides-topbar-inner {
  max-width: 1080px; margin: 0 auto; padding: 0 24px;
  height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.guides-topbar .logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-weight: 700; color: #fff;
  font-size: 13px; letter-spacing: 0.02em;
}
.guides-topbar .logo .mk {
  width: 27px; height: 27px; flex: none; display: grid; place-items: center;
  border: 1.5px solid var(--cyan); color: var(--cyan);
  font-weight: 700; font-size: 13px; border-radius: 4px;
  box-shadow: 0 0 18px -4px rgba(22,198,230,.5);
}
.guides-back {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-mute); white-space: nowrap;
}
.guides-back:hover { color: #fff; }

/* included-guide titles on bundle pages link to that guide's own detail
   page -- inherits .pb-headline sizing, only the colour changes */
.pb-headline a { color: var(--cyan); }
.pb-headline a:hover { text-decoration: underline; }

@media (max-width: 560px) {
  .guides-topbar-inner { height: 52px; padding: 0 16px; }
  .guides-topbar .logo span:not(.mk) { display: none; }
}
