/* Catalogue styles — .pbc-* shared content, .pbcg-* public chrome,
   .pbcp-* signed-in chrome (content/partners/catalogue**).
   Loaded alongside site.css, never instead of it.
   Authoring contract: docs/catalogue-content-contract.md */

:root {
  --pbc-ink:        #130C0E;
  --pbc-teal:       #00ACCD;
  --pbc-teal-d:     #0090ad;
  --pbc-yellow:     #FFCE07;
  --pbc-yellow-d:   #9b7c05;
  --pbc-seafoam:    #A8E0C2;
  --pbc-seafoam-dk: #2ED9C3;
  --pbc-green:      #2D6E51;
  --pbc-mist:       #EEF8F2;
  --pbc-line:       #dbe6df;
  --pbc-body:       #555;
  --pbc-muted:      #5b635d;
}

/* ==========================================================================
   LAYER A · shared content partials (.pbc-*)
   ========================================================================== */

.pbc-sec { padding: 84px 0 88px; color: var(--pbc-ink); }
.pbc-sec--alt { background: var(--pbc-mist); }
.pbc-inner { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

.pbc-eyebrow { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.28em;
               text-transform: uppercase; color: var(--pbc-green); margin-bottom: 12px; }
.pbc-h { font-size: clamp(26px, 3.2vw, 38px); font-weight: 700; text-transform: uppercase;
         letter-spacing: -0.01em; line-height: 1.06; margin: 0; max-width: 26ch; }
.pbc-p { font-size: 15.5px; font-weight: 300; color: var(--pbc-body); line-height: 1.75;
         margin: 18px 0 0; max-width: 70ch; text-wrap: pretty; }
.pbc-p a { color: var(--pbc-teal-d); font-weight: 700; }
.pbc-p a:hover { color: var(--pbc-ink); }

/* ── story trio + placeholder render ────────────────────────────────────── */
.pbc-story { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 40px;
             align-items: start; margin-top: 34px; }
.pbc-rndr { position: relative; border: 1px solid #22302a; border-radius: 2px; overflow: hidden;
            background: radial-gradient(120% 90% at 30% 12%, #24352e 0%, #16201c 48%, #0d1310 100%); }
.pbc-rndr__art { display: block; width: 100%; height: auto; }
.pbc-rndr__tag { position: absolute; left: 14px; bottom: 13px; font-size: 9.5px; font-weight: 700;
                 letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.6);
                 border: 1px solid rgba(255,255,255,0.22); border-radius: 3px; padding: 5px 8px; }
.pbc-trio { display: flex; flex-direction: column; gap: 26px; }
.pbc-trio__i { display: grid; grid-template-columns: 36px 1fr; gap: 16px; }
.pbc-trio__n { font-size: 12px; font-weight: 800; letter-spacing: 0.1em; color: var(--pbc-teal-d);
               border-top: 2px solid var(--pbc-teal); padding-top: 8px; }
.pbc-trio__h { font-size: 17px; font-weight: 700; text-transform: uppercase; margin: 0; line-height: 1.25; }
.pbc-trio__p { font-size: 14.5px; font-weight: 300; color: var(--pbc-body); line-height: 1.75;
               margin: 8px 0 0; text-wrap: pretty; }

/* Family accent for the trio rules. */
.pbc-a-yellow  .pbc-trio__n { color: var(--pbc-yellow-d); border-top-color: var(--pbc-yellow); }
.pbc-a-seafoam .pbc-trio__n { color: var(--pbc-green);    border-top-color: var(--pbc-seafoam); }

/* ── array-composition diagram (public legend labels) ───────────────────── */
.pbc-arr { margin: 34px 0 0; }
.pbc-arr__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.pbc-arr__svg { display: block; width: 100%; height: auto; }
.pbc-arr__legend { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.pbc-arr__lg { display: grid; grid-template-columns: 26px 34px 1fr; align-items: baseline; gap: 12px;
               padding: 14px 0; border-bottom: 1px solid #dfe8e2; }
.pbc-arr__lg:first-child { border-top: 1px solid #dfe8e2; }
.pbc-arr__sw { width: 18px; height: 18px; align-self: center; }
.pbc-arr__n { font-size: 17px; font-weight: 700; font-variant-numeric: tabular-nums; }
.pbc-arr__lb { font-size: 14px; font-weight: 500; line-height: 1.4; }
.pbc-arr__lb em { display: block; font-style: normal; font-size: 12.5px; font-weight: 300;
                  color: var(--pbc-muted); margin-top: 4px; line-height: 1.6; }
.pbc-arr__lg.is-off .pbc-arr__n, .pbc-arr__lg.is-off .pbc-arr__lb { color: #949e97; }
.pbc-arr__lg.is-off .pbc-arr__lb em { color: #a4aea7; }
.pbc-arr__sw--colour { border-radius: 50%; background: var(--pbc-teal);
                       box-shadow: inset 0 0 0 3px #fff, 0 0 0 2px var(--pbc-teal-d); }
.pbc-arr__sw--mid   { border-radius: 3px; background: var(--pbc-yellow); box-shadow: 0 0 0 1.5px #c9a105; }
.pbc-arr__sw--wide  { border-radius: 50%; background: #fff;
                      box-shadow: inset 0 0 0 3.5px var(--pbc-yellow), 0 0 0 1.5px #c9a105; }
.pbc-arr__sw--up    { border-radius: 50%; background: #fff;
                      box-shadow: inset 0 0 0 3.5px var(--pbc-seafoam-dk), 0 0 0 1.5px var(--pbc-green); }
.pbc-arr__sw--photo { border-radius: 50%; background: var(--pbc-green);
                      box-shadow: inset 0 0 0 3px #fff, 0 0 0 2px var(--pbc-green); }
.pbc-arr__lg.is-off .pbc-arr__sw { background: #fff; box-shadow: 0 0 0 1.5px #c6d0c9;
                                   border: 1px dashed #b7c2ba; }
.pbc-arr__foot { font-size: 13px; font-weight: 300; color: var(--pbc-muted); line-height: 1.7;
                 margin: 22px 0 0; max-width: 86ch; }
.pbc-arr__foot a { color: var(--pbc-teal-d); font-weight: 700; }
.pbc-arr__foot a:hover { color: var(--pbc-ink); }

/* ── "what goes alongside it" ladder ────────────────────────────────────── */
.pbc-ladder { list-style: none; margin: 32px 0 0; padding: 0; display: flex;
              flex-direction: column; gap: 12px; }
.pbc-ladder__i { position: relative; background: #fff; border: 1px solid var(--pbc-line);
                 border-left: 3px solid var(--pbc-seafoam); padding: 24px 26px 22px;
                 scroll-margin-top: 90px; }
.pbc-ladder__i--this { border-left-color: var(--pbc-yellow); background: #fffdf4; }
.pbc-ladder__k { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
                 text-transform: uppercase; color: var(--pbc-green); margin-bottom: 8px; }
.pbc-ladder__i--this .pbc-ladder__k { color: var(--pbc-yellow-d); }
.pbc-ladder__t { display: block; font-size: 16px; font-weight: 700; text-transform: uppercase;
                 line-height: 1.2; margin-bottom: 8px; }
.pbc-ladder__d { font-size: 14px; font-weight: 300; color: var(--pbc-body); line-height: 1.72;
                 margin: 0; max-width: 74ch; }

.pbc-trio--lead { margin-top: 34px; }
.pbc-p--tight { margin-top: 22px; }
.pbc-facts__h { font-size: 17px; font-weight: 700; text-transform: uppercase; margin: 44px 0 0; }
.pbc-note { font-size: 13px; font-weight: 300; color: var(--pbc-muted); line-height: 1.7;
            margin: 22px 0 0; max-width: 86ch; }
.pbc-note strong { font-weight: 700; color: var(--pbc-ink); }
.pbc-link { color: var(--pbc-teal-d); font-weight: 700; }
.pbc-link:hover { color: var(--pbc-ink); }

/* ── expectations / pre-empt cards ──────────────────────────────────────── */
.pbc-exp { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 32px; }
.pbc-exp__c { background: #fff; border: 1px solid var(--pbc-line); border-top: 3px solid var(--pbc-seafoam);
              padding: 28px 26px 26px; display: flex; flex-direction: column; gap: 12px; }
.pbc-exp__i { color: var(--pbc-green); }
.pbc-exp__h { font-size: 15px; font-weight: 700; text-transform: uppercase; line-height: 1.2; }
.pbc-exp__p { font-size: 14px; font-weight: 300; color: var(--pbc-body); line-height: 1.72; margin: 0; }

/* ── family sub-item cards (kits, cloud rungs, day rates, agreements) ───── */
.pbc-fam { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 32px; }
.pbc-fam--2 { grid-template-columns: repeat(2, 1fr); }
.pbc-fam__c { background: #fff; border: 1px solid var(--pbc-line); border-top: 3px solid var(--pbc-teal);
              padding: 28px 26px 26px; display: flex; flex-direction: column; gap: 10px;
              scroll-margin-top: 90px; }
.pbc-fam__c--seafoam { border-top-color: var(--pbc-seafoam); }
.pbc-fam__c--yellow  { border-top-color: var(--pbc-yellow); }
.pbc-fam__k { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; font-size: 10px;
              font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--pbc-teal-d); }
.pbc-fam__c--seafoam .pbc-fam__k { color: var(--pbc-green); }
.pbc-fam__c--yellow  .pbc-fam__k { color: var(--pbc-yellow-d); }
.pbc-fam__t { font-size: 17px; font-weight: 700; text-transform: uppercase; line-height: 1.22;
              letter-spacing: -0.01em; }
.pbc-fam__d { font-size: 14px; font-weight: 300; color: var(--pbc-body); line-height: 1.72;
              margin: 0; text-wrap: pretty; }
.pbc-chip { font-size: 9px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
            color: var(--pbc-ink); background: var(--pbc-yellow); border-radius: 3px; padding: 3px 7px; }
.pbc-chip--teal { background: var(--pbc-teal); color: #fff; }
.pbc-chip--quiet { background: #e7efe9; color: var(--pbc-green); }
.pbc-fam__notes { list-style: none; margin: 4px 0 0; padding: 0; display: flex;
                  flex-direction: column; gap: 7px; }
.pbc-fam__notes li { position: relative; padding-left: 16px; font-size: 13px; font-weight: 300;
                     color: var(--pbc-muted); line-height: 1.6; }
.pbc-fam__notes li::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px;
                             border-radius: 50%; background: var(--pbc-seafoam); }

/* ── mast-size decision aid (installation kits) ─────────────────────────── */
.pbc-aid { margin: 32px 0 0; background: #fff; border: 1px solid var(--pbc-line);
           border-top: 3px solid var(--pbc-teal); padding: 32px 30px 30px; }
.pbc-aid__h { font-size: 17px; font-weight: 700; text-transform: uppercase; margin: 0 0 10px; }
.pbc-aid__p { font-size: 14.5px; font-weight: 300; color: var(--pbc-body); line-height: 1.72;
              margin: 0 0 26px; max-width: 74ch; }
.pbc-aid__scale { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.pbc-aid__band { padding: 18px 18px 20px; background: var(--pbc-mist);
                 border-top: 3px solid var(--pbc-teal); }
.pbc-aid__band:nth-child(2) { background: #e4f2ea; }
.pbc-aid__band:nth-child(3) { background: #dcece3; }
.pbc-aid__range { display: block; font-size: 15px; font-weight: 800; letter-spacing: -0.01em;
                  margin-bottom: 6px; }
.pbc-aid__pick { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
                 text-transform: uppercase; color: var(--pbc-teal-d); margin-bottom: 10px; }
.pbc-aid__note { font-size: 13px; font-weight: 300; color: var(--pbc-body); line-height: 1.65; margin: 0; }
.pbc-aid__rule { margin: 24px 0 0; padding: 18px 20px; background: var(--pbc-mist);
                 border-left: 3px solid var(--pbc-seafoam); font-size: 13.5px; font-weight: 300;
                 color: var(--pbc-body); line-height: 1.7; }
.pbc-aid__rule strong { font-weight: 700; color: var(--pbc-ink); }

/* ── numbered process strip (survey-first, how days work) ───────────────── */
.pbc-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 32px; }
.pbc-steps__c { background: #fff; border: 1px solid var(--pbc-line); padding: 26px 24px 24px; }
.pbc-steps__n { display: block; font-size: 11px; font-weight: 800; letter-spacing: 0.16em;
                text-transform: uppercase; color: var(--pbc-green); border-top: 2px solid var(--pbc-seafoam);
                padding-top: 10px; margin-bottom: 12px; }
.pbc-steps__h { display: block; font-size: 15px; font-weight: 700; text-transform: uppercase;
                line-height: 1.2; margin-bottom: 9px; }
.pbc-steps__p { font-size: 14px; font-weight: 300; color: var(--pbc-body); line-height: 1.72; margin: 0; }

/* ── plain fact list (what a day covers) ────────────────────────────────── */
.pbc-facts { list-style: none; margin: 26px 0 0; padding: 0; display: grid;
             grid-template-columns: repeat(2, 1fr); gap: 12px 28px; }
.pbc-facts li { position: relative; padding-left: 24px; font-size: 14.5px; font-weight: 300;
                color: var(--pbc-body); line-height: 1.7; }
.pbc-facts li::before { content: ""; position: absolute; left: 0; top: 9px; width: 10px; height: 2px;
                        background: var(--pbc-teal); }

@media (max-width: 880px) {
  .pbc-story, .pbc-arr__grid { grid-template-columns: 1fr; gap: 28px; }
  .pbc-exp, .pbc-fam, .pbc-fam--2, .pbc-steps, .pbc-aid__scale,
  .pbc-facts { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .pbc-inner { padding: 0 16px; }
  .pbc-sec { padding: 58px 0 62px; }
  .pbc-aid { padding: 26px 20px 24px; }
}

/* ==========================================================================
   LAYER B · public component-guide chrome (.pbcg-*)
   ========================================================================== */

/* ── dark hero ──────────────────────────────────────────────────────────────
   No 3px accent line at the top of this section: the site header draws the one
   accent line the page is allowed (content/AUTHORING.md → "One accent line
   only"). The design handoff carried a yellow ::before strip here; it is
   deliberately not reproduced. */
.pbcg-hero { position: relative; background: var(--pbc-ink); overflow: hidden;
             background-image: radial-gradient(120% 110% at 78% 10%, #1d2a30 0%, #15191b 45%, #0f0b0d 100%); }
.pbcg-hero::after { content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(to right, rgba(255,255,255,0.028) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 40px 40px; }
.pbcg-hero__inner { position: relative; z-index: 2; max-width: 1080px; margin: 0 auto;
                    padding: 84px 24px 40px; }
.pbcg-hero__crumb { display: inline-flex; align-items: center; gap: 8px; font-size: 10.5px;
                    font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
                    color: rgba(255,255,255,0.45); margin-bottom: 24px; }
.pbcg-hero__crumb:hover { color: #fff; }
.pbcg-hero__eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 11px;
                      font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase;
                      color: var(--pbc-yellow); margin-bottom: 18px; }
.pbcg-hero__eyebrow::before { content: ""; width: 28px; height: 1.5px; background: var(--pbc-yellow); }
.pbcg-hero__h1 { font-size: clamp(30px, 4.4vw, 58px); font-weight: 700; text-transform: uppercase;
                 letter-spacing: -0.02em; line-height: 0.96; color: #fff; margin: 0; max-width: 22ch; }
.pbcg-hero__h1 span { color: var(--pbc-seafoam-dk); }
.pbcg-hero__sub { font-size: clamp(14px, 1.2vw, 16px); font-weight: 300; line-height: 1.72;
                  color: rgba(255,255,255,0.6); max-width: 60ch; margin: 20px 0 0; }
.pbcg-hero__btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.pbcg-hero__stats { position: relative; z-index: 2; max-width: 1080px; margin: 0 auto;
                    padding: 26px 24px 40px; display: flex; flex-wrap: wrap; }
.pbcg-hero__stat { flex: 0 0 auto; padding-right: 36px; }
.pbcg-hero__stat + .pbcg-hero__stat { padding-left: 36px; border-left: 0.5px solid rgba(255,255,255,0.12); }
.pbcg-hero__num { font-size: 25px; font-weight: 700; color: var(--pbc-seafoam-dk); line-height: 1;
                  margin-bottom: 6px; }
.pbcg-hero__lb { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
                 color: rgba(255,255,255,0.32); }

/* ── buttons ────────────────────────────────────────────────────────────── */
.pbcg-btn { display: inline-flex; align-items: center; gap: 9px; height: 44px; padding: 0 24px;
            font-family: inherit; font-size: 13px; font-weight: 700; letter-spacing: 0.12em;
            text-transform: uppercase; border-radius: 3px; border: 1.5px solid transparent; }
.pbcg-btn--teal { color: var(--pbc-teal); border-color: var(--pbc-teal); background: transparent; }
.pbcg-btn--teal:hover { background: var(--pbc-teal); color: var(--pbc-ink); }
.pbcg-btn--ghost { color: #fff; border-color: rgba(255,255,255,0.28); background: transparent; }
.pbcg-btn--ghost:hover { border-color: rgba(255,255,255,0.7); color: #fff; }
.pbcg-btn--yellow { background: var(--pbc-yellow); color: var(--pbc-ink); }
.pbcg-btn--yellow:hover { opacity: .88; color: var(--pbc-ink); }
.pbcg-btn--ink { background: var(--pbc-ink); color: #fff; }
.pbcg-btn--ink:hover { opacity: .9; color: #fff; }
.pbcg-btn--outline { background: transparent; color: var(--pbc-green); border-color: #bcd5c6; }
.pbcg-btn--outline:hover { border-color: var(--pbc-green); color: var(--pbc-green); }

/* ── index groups + cards ───────────────────────────────────────────────── */
.pbcg-grp { padding: 78px 0 24px; }
.pbcg-grp--alt { background: var(--pbc-mist); }
.pbcg-grp__head { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 18px;
                  justify-content: space-between; }
.pbcg-grp__eyebrow { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.28em;
                     text-transform: uppercase; color: var(--pbc-green); margin-bottom: 12px; }
.pbcg-grp__title { font-size: clamp(24px, 2.8vw, 34px); font-weight: 700; text-transform: uppercase;
                   letter-spacing: -0.01em; line-height: 1.1; margin: 0; }
.pbcg-grp__deep { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
                  color: var(--pbc-teal-d); }
.pbcg-grp__deep:hover { color: var(--pbc-ink); }
.pbcg-grp__intro { font-size: 15px; font-weight: 300; color: var(--pbc-body); line-height: 1.72;
                   margin: 16px 0 0; max-width: 70ch; text-wrap: pretty; }
.pbcg-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 28px 0 54px; }
.pbcg-card { display: flex; flex-direction: column; gap: 10px; background: #fff;
             border: 1px solid var(--pbc-line); border-top: 3px solid var(--pbc-seafoam);
             padding: 30px 26px 24px; transition: transform .22s ease, box-shadow .22s ease; }
.pbcg-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -22px rgba(19,12,14,0.45); }
.pbcg-card--sv  { border-top-color: var(--pbc-teal); }
.pbcg-card--sv  .pbcg-card__eyebrow, .pbcg-card--sv  .pbcg-card__cta { color: var(--pbc-teal-d); }
.pbcg-card--ir  { border-top-color: var(--pbc-yellow); }
.pbcg-card--ir  .pbcg-card__eyebrow, .pbcg-card--ir  .pbcg-card__cta { color: var(--pbc-yellow-d); }
.pbcg-card--fit { border-top-color: var(--pbc-teal); }
.pbcg-card--fit .pbcg-card__eyebrow, .pbcg-card--fit .pbcg-card__cta { color: var(--pbc-teal-d); }
.pbcg-card__eyebrow { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; font-size: 10px;
                      font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
                      color: var(--pbc-green); }
.pbcg-card__title { font-size: clamp(17px, 1.5vw, 21px); font-weight: 700; text-transform: uppercase;
                    line-height: 1.2; letter-spacing: -0.01em; color: var(--pbc-ink); }
.pbcg-card__desc { font-size: 13.5px; font-weight: 300; color: var(--pbc-muted); line-height: 1.7;
                   text-wrap: pretty; }
.pbcg-card__cta { margin-top: auto; padding-top: 16px; display: inline-flex; align-items: center;
                  gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
                  text-transform: uppercase; color: var(--pbc-green); border-top: 1px solid #e8efea; }
.pbcg-card__arrow { transition: transform .22s ease; }
.pbcg-card:hover .pbcg-card__arrow { transform: translateX(4px); }

/* ── related components row ───────────────────────────────────────────── */
.pbcg-rel { background: #fff; border-top: 1px solid var(--pbc-line); padding: 42px 0 44px; }
.pbcg-rel__k { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
               text-transform: uppercase; color: var(--pbc-green); margin-bottom: 16px; }
.pbcg-rel__list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap;
                  gap: 10px 12px; }
.pbcg-rel__list a { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px;
                    border: 1px solid var(--pbc-line); border-radius: 3px; font-size: 13px;
                    font-weight: 500; color: var(--pbc-ink); background: #fff;
                    transition: border-color .2s ease, background .2s ease; }
.pbcg-rel__list a:hover { border-color: var(--pbc-teal); background: var(--pbc-mist);
                          color: var(--pbc-ink); }
.pbcg-rel__list a span { color: var(--pbc-teal-d); }
@media (prefers-reduced-motion: reduce) { .pbcg-rel__list a { transition: none; } }

/* ── "go deeper" row (dark) ─────────────────────────────────────────────── */
.pbcg-deep { background: var(--pbc-ink); color: #fff; padding: 78px 0 84px; }
.pbcg-deep__eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 11px;
                      font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase;
                      color: var(--pbc-seafoam-dk); margin-bottom: 14px; }
.pbcg-deep__eyebrow::before { content: ""; width: 28px; height: 1.5px; background: var(--pbc-seafoam-dk); }
.pbcg-deep__h { font-size: clamp(24px, 2.8vw, 34px); font-weight: 700; text-transform: uppercase;
                letter-spacing: -0.01em; margin: 0; color: #fff; }
.pbcg-deep__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 28px; }
.pbcg-deep__c { background: #1C1417; box-shadow: 0 0 0 1px rgba(255,255,255,0.07);
                padding: 26px 24px 24px; border-left: 3px solid transparent; display: flex;
                flex-direction: column; gap: 10px;
                transition: background .22s ease, border-color .22s ease; }
.pbcg-deep__c:hover { background: #231A1D; border-left-color: var(--pbc-seafoam-dk); }
.pbcg-deep__k { font-size: 9.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
                color: rgba(255,255,255,0.4); }
.pbcg-deep__t { font-size: 16px; font-weight: 700; text-transform: uppercase; line-height: 1.2;
                color: #fff; }
.pbcg-deep__d { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.7;
                margin: 0; }
.pbcg-deep__go { margin-top: auto; padding-top: 12px; font-size: 10.5px; font-weight: 700;
                 letter-spacing: 0.14em; text-transform: uppercase; color: var(--pbc-seafoam-dk); }

/* ── closing partner band ───────────────────────────────────────────────────
   Two grounds: light (item pages) and ink (the guide index). */
.pbcg-close { background: var(--pbc-mist); border-top: 1px solid var(--pbc-line); padding: 78px 0 88px; }
.pbcg-close--ink { background: var(--pbc-ink); border-top: 0; color: #fff; padding: 84px 0 92px; }
.pbcg-close__eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 11px;
                       font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase;
                       color: var(--pbc-green); margin-bottom: 16px; }
.pbcg-close--ink .pbcg-close__eyebrow { color: var(--pbc-seafoam-dk); }
.pbcg-close--ink .pbcg-close__eyebrow::before { content: ""; width: 28px; height: 1.5px;
                                                background: var(--pbc-seafoam-dk); }
.pbcg-close__h { font-size: clamp(24px, 3.2vw, 40px); font-weight: 700; text-transform: uppercase;
                 letter-spacing: -0.015em; line-height: 1.05; margin: 0; max-width: 26ch; }
.pbcg-close--ink .pbcg-close__h { color: #fff; }
.pbcg-close__p { font-size: 15px; font-weight: 300; color: var(--pbc-body); line-height: 1.74;
                 margin: 18px 0 0; max-width: 66ch; }
.pbcg-close--ink .pbcg-close__p { color: rgba(255,255,255,0.6); }
.pbcg-close__btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

@media (max-width: 980px) { .pbcg-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 880px) { .pbcg-deep__grid { grid-template-columns: 1fr; } }
@media (max-width: 700px) {
  .pbcg-cards { grid-template-columns: 1fr; }
  .pbcg-hero__inner { padding: 60px 16px 30px; }
  .pbcg-hero__stats { padding: 20px 16px 32px; }
  .pbcg-grp { padding: 56px 0 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .pbcg-card, .pbcg-card__arrow, .pbcg-deep__c { transition: none; }
  .pbcg-card:hover { transform: none; }
}

/* ==========================================================================
   LAYER C · signed-in catalogue chrome (.pbcp-*)
   Used only by content/partners/catalogue.html and
   content/partners/catalogue/*.html. Light green ground, matching the
   resources hub; family accents on the top border of every card and panel.
   ========================================================================== */

.pbcp { background: var(--pbc-mist); color: var(--pbc-ink); }
.pbcp a { text-decoration: none; }
.pbcp-inner { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ── head band (green grid-line ground) ─────────────────────────────────── */
.pbcp-hero { padding: 66px 24px 80px;
  background-image: linear-gradient(to right, rgba(45,110,81,0.055) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(45,110,81,0.055) 1px, transparent 1px);
  background-size: 32px 32px; }
.pbcp-wrap { max-width: 1080px; margin: 0 auto; }
.pbcp-head { max-width: 1080px; margin: 0 auto 32px; }
.pbcp-back { display: inline-flex; align-items: center; gap: 8px; font-size: 10.5px; font-weight: 700;
             letter-spacing: 0.18em; text-transform: uppercase; color: var(--pbc-green);
             margin-bottom: 22px; }
.pbcp-back:hover { color: var(--pbc-ink); }
.pbcp-eyebrow { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.28em;
                text-transform: uppercase; color: var(--pbc-green); margin-bottom: 14px; }
.pbcp-title { font-size: clamp(32px, 4.4vw, 54px); font-weight: 700; text-transform: uppercase;
              letter-spacing: -0.01em; line-height: 0.98; margin: 0; }
.pbcp-title span { color: var(--pbc-green); }
.pbcp-sub { font-size: clamp(15px, 1.1vw, 17px); font-weight: 300; color: var(--pbc-body);
            line-height: 1.72; margin: 18px 0 0; max-width: 62ch; text-wrap: pretty; }
.pbcp-sub b { color: var(--pbc-ink); font-weight: 500; }

/* ── Ask Panoblu bar (opens the site-wide assistant modal) ──────────────── */
.pbcp-ask { max-width: 1080px; width: 100%; margin: 0 auto 38px; display: flex; align-items: center;
            gap: 12px; background: #fff; border: 1px solid #cfe0d5; border-radius: 6px;
            padding: 15px 18px; cursor: text; text-align: left; font-family: inherit;
            transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease; }
.pbcp-ask:hover { border-color: var(--pbc-seafoam); box-shadow: inset 0 0 0 1px var(--pbc-seafoam);
                  transform: translateY(-2px); }
.pbcp-ask:focus-visible { outline: 2px solid var(--pbc-green); outline-offset: 2px; }
.pbcp-ask__icon { flex: 0 0 auto; color: var(--pbc-green); }
.pbcp-ask__text { flex: 1; min-width: 0; color: #7d8a82; font-size: 15px; font-weight: 300; }
.pbcp-ask:hover .pbcp-ask__text { color: #465049; }
.pbcp-ask__kbd { flex: 0 0 auto; font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
                 color: #6e7a72; border: 1px solid #d8e2db; border-radius: 3px; padding: 4px 7px; }
.pbcp-ask:hover .pbcp-ask__kbd { border-color: var(--pbc-seafoam); color: var(--pbc-green); }

/* ── index groups ───────────────────────────────────────────────────────── */
.pbcp-group { max-width: 1080px; margin: 0 auto 44px; }
.pbcp-ghead { display: flex; align-items: baseline; gap: 14px; margin: 0 0 16px; }
.pbcp-gnum { font-size: 12px; font-weight: 800; letter-spacing: 0.16em; color: var(--pbc-green); }
.pbcp-gname { font-size: 15px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
              margin: 0; white-space: nowrap; }
.pbcp-grule { flex: 1; height: 1px; background: #cfdcd4; }
.pbcp-gmeta { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
              color: #8a948d; white-space: nowrap; }
.pbcp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }

/* ── cards ──────────────────────────────────────────────────────────────── */
.pbcp-card { display: flex; flex-direction: column; gap: 10px; background: #fff; color: var(--pbc-ink);
             border: 1px solid var(--pbc-line); padding: 32px 30px 26px;
             border-top: 3px solid var(--pbc-seafoam);
             transition: box-shadow .22s ease, transform .22s ease; }
.pbcp-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -22px rgba(19,12,14,0.45); }
.pbcp-card--sv  { border-top-color: var(--pbc-teal); }
.pbcp-card--sv  .pbcp-card__k, .pbcp-card--sv  .pbcp-card__cta { color: var(--pbc-teal-d); }
.pbcp-card--ir  { border-top-color: var(--pbc-yellow); }
.pbcp-card--ir  .pbcp-card__k, .pbcp-card--ir  .pbcp-card__cta { color: var(--pbc-yellow-d); }
.pbcp-card--fit { border-top-color: var(--pbc-teal); }
.pbcp-card--fit .pbcp-card__k, .pbcp-card--fit .pbcp-card__cta { color: var(--pbc-teal-d); }
.pbcp-card--eap { border-top-color: var(--pbc-ink); }
.pbcp-card--eap .pbcp-card__k, .pbcp-card--eap .pbcp-card__cta { color: var(--pbc-ink); }
.pbcp-card__k { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 10px;
                font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
                color: var(--pbc-green); }
.pbcp-card__t { font-size: clamp(18px, 1.6vw, 22px); font-weight: 700; text-transform: uppercase;
                line-height: 1.2; letter-spacing: -0.01em; }
.pbcp-card__d { font-size: 14px; font-weight: 300; color: var(--pbc-muted); line-height: 1.7;
                text-wrap: pretty; }
.pbcp-card__cta { margin-top: auto; padding-top: 16px; display: inline-flex; align-items: center;
                  gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
                  text-transform: uppercase; color: var(--pbc-green); border-top: 1px solid #e8efea; }
.pbcp-arrow { transition: transform .22s ease; }
.pbcp-card:hover .pbcp-arrow { transform: translateX(4px); }

/* Quiet guide-figure line on a card. Starts hidden and is unhidden only once a
   figure has actually been written into it, so a card with nothing to show
   simply has no line rather than an empty one. */
.pbcp-figure { display: flex; align-items: baseline; gap: 8px; font-size: 15px; font-weight: 700;
               font-variant-numeric: tabular-nums; color: #46504a; }
.pbcp-figure[hidden] { display: none; }
.pbcp-figure em { font-style: normal; font-size: 9.5px; font-weight: 700; letter-spacing: 0.16em;
                  text-transform: uppercase; color: #97a19a; }

/* ── tags ───────────────────────────────────────────────────────────────── */
.pbcp-tag { font-size: 9px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
            color: var(--pbc-ink); background: var(--pbc-yellow); border-radius: 3px; padding: 3px 7px; }
.pbcp-tag--teal { background: var(--pbc-teal); }
.pbcp-tag--quiet { background: #eef2ef; color: #6d766f; }

/* ── panels ─────────────────────────────────────────────────────────────── */
.pbcp-panel { background: #fff; border: 1px solid var(--pbc-line);
              border-top: 3px solid var(--pbc-seafoam); padding: 32px 30px 30px; margin-top: 26px; }
.pbcp-panel--sv  { border-top-color: var(--pbc-teal); }
.pbcp-panel--ir  { border-top-color: var(--pbc-yellow); }
.pbcp-panel--fit { border-top-color: var(--pbc-teal); }
.pbcp-panel--ink { border-top-color: var(--pbc-ink); background: var(--pbc-ink); color: #fff; }
.pbcp-panel__k { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 10px;
                 font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
                 color: var(--pbc-green); }
.pbcp-panel--sv  .pbcp-panel__k { color: var(--pbc-teal-d); }
.pbcp-panel--ir  .pbcp-panel__k { color: var(--pbc-yellow-d); }
.pbcp-panel--fit .pbcp-panel__k { color: var(--pbc-teal-d); }
.pbcp-panel--ink .pbcp-panel__k { color: rgba(255,255,255,0.6); }
.pbcp-panel__h { font-size: clamp(19px, 2vw, 25px); font-weight: 700; text-transform: uppercase;
                 letter-spacing: -0.01em; line-height: 1.15; margin: 12px 0 0; }
.pbcp-panel__p { font-size: 14.5px; font-weight: 300; color: var(--pbc-body); line-height: 1.75;
                 margin: 12px 0 0; max-width: 72ch; text-wrap: pretty; }
.pbcp-panel__p a { color: var(--pbc-teal-d); font-weight: 700; }
.pbcp-panel--ink .pbcp-panel__p { color: rgba(255,255,255,0.72); }

/* ── selling angles ─────────────────────────────────────────────────────── */
.pbcp-angles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 24px; }
.pbcp-angle { display: flex; flex-direction: column; }
.pbcp-anum { font-size: 12px; font-weight: 800; letter-spacing: 0.1em; color: var(--pbc-green);
             border-top: 2px solid var(--pbc-seafoam); padding-top: 8px; margin-bottom: 10px; }
.pbcp-panel--ir  .pbcp-anum { color: var(--pbc-yellow-d); border-top-color: var(--pbc-yellow); }
.pbcp-panel--sv  .pbcp-anum,
.pbcp-panel--fit .pbcp-anum { color: var(--pbc-teal-d); border-top-color: var(--pbc-teal); }
.pbcp-aname { font-size: 15.5px; font-weight: 700; text-transform: uppercase; margin: 0;
              line-height: 1.25; }
.pbcp-atext { font-size: 14px; font-weight: 300; color: var(--pbc-body); line-height: 1.75;
              margin: 8px 0 0; text-wrap: pretty; }

/* ── lead figure + the viewer's own panel ───────────────────────────────── */
.pbcp-figgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start;
                  margin-top: 20px; }
.pbcp-lead { font-size: clamp(32px, 3.8vw, 44px); font-weight: 700; font-variant-numeric: tabular-nums;
             letter-spacing: -0.02em; line-height: 1; margin: 14px 0 0; }
.pbcp-lead[hidden] { display: none; }
.pbcp-leadcap { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
                 text-transform: uppercase; color: #8a948d; margin-top: 12px; }
.pbcp-own { border: 1px solid var(--pbc-line); background: #fbfdfb; padding: 22px 22px 20px; }
.pbcp-own[hidden] { display: none; }
.pbcp-rbtn { display: inline-flex; align-items: center; gap: 10px; height: 42px; padding: 0 18px;
             font-family: inherit; font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em;
             text-transform: uppercase; color: var(--pbc-ink); background: #fff;
             border: 1.5px solid #c3d2c8; border-radius: 3px; cursor: pointer; }
.pbcp-rbtn:hover { border-color: var(--pbc-green); }
.pbcp-rbtn[hidden] { display: none; }
.pbcp-rbtn svg { transition: transform .2s ease; }
.pbcp-rbtn[aria-expanded="true"] svg { transform: rotate(180deg); }
.pbcp-rnote { font-size: 12.5px; font-weight: 300; color: var(--pbc-muted); line-height: 1.65;
              margin: 12px 0 0; }
.pbcp-net { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--pbc-line); }
.pbcp-net[hidden] { display: none; }
.pbcp-net-row { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.pbcp-net-val { font-size: 28px; font-weight: 700; font-variant-numeric: tabular-nums;
                letter-spacing: -0.02em; color: var(--pbc-ink); }
.pbcp-net-lb { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
               color: #6d766f; }

/* Quiet status line. Shown only when the figures could not be read for this
   session; never an error state, never a missing page. */
.pbcp-status { font-size: 12.5px; font-weight: 300; color: var(--pbc-muted); line-height: 1.65;
               margin: 14px 0 0; }
.pbcp-status[hidden] { display: none; }

/* ── multi-item figure table ────────────────────────────────────────────── */
.pbcp-rows { width: 100%; border-collapse: collapse; margin-top: 22px; }
.pbcp-rows th { text-align: left; font-size: 10px; font-weight: 700; letter-spacing: 0.16em;
                text-transform: uppercase; color: var(--pbc-ink);
                border-bottom: 2px solid var(--pbc-ink); padding: 10px 12px; }
.pbcp-rows td { padding: 13px 12px; border-bottom: 1px solid #e6ece8; font-size: 14px;
                font-weight: 300; color: var(--pbc-body); vertical-align: top; }
.pbcp-rows td:first-child { color: var(--pbc-ink); font-weight: 500; }
.pbcp-rows .pbcp-num { font-variant-numeric: tabular-nums; font-weight: 700; color: var(--pbc-ink);
                       white-space: nowrap; }
.pbcp-rows tbody tr:last-child td { border-bottom: 0; }
.pbcp-rows [hidden] { display: none; }
.pbcp-rows__add { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
                  color: var(--pbc-green); white-space: nowrap; }
.pbcp-rows__add:hover { color: var(--pbc-ink); }

/* ── buttons ────────────────────────────────────────────────────────────── */
.pbcp-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.pbcp-btn { display: inline-flex; align-items: center; gap: 9px; height: 44px; padding: 0 22px;
            font-family: inherit; font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
            text-transform: uppercase; border-radius: 3px; cursor: pointer;
            border: 1.5px solid transparent; }
.pbcp-btn--primary { background: var(--pbc-yellow); color: var(--pbc-ink); }
.pbcp-btn--primary:hover { opacity: .88; color: var(--pbc-ink); }
.pbcp-btn--ghost { background: transparent; color: var(--pbc-green); border-color: #bcd5c6; }
.pbcp-btn--ghost:hover { border-color: var(--pbc-green); color: var(--pbc-green); }
.pbcp-btn--ink { background: var(--pbc-ink); color: #fff; }
.pbcp-btn--ink:hover { opacity: .9; color: #fff; }
.pbcp-btn--onink { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.pbcp-btn--onink:hover { border-color: #fff; color: #fff; }

/* ── onward row ─────────────────────────────────────────────────────────── */
.pbcp-rel { background: #fff; border-top: 1px solid var(--pbc-line); padding: 42px 0 44px; }
.pbcp-rel__k { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
               text-transform: uppercase; color: var(--pbc-green); margin-bottom: 16px; }
.pbcp-rel__list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap;
                  gap: 10px 12px; }
.pbcp-rel__list a { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px;
                    border: 1px solid var(--pbc-line); border-radius: 3px; font-size: 13px;
                    font-weight: 500; color: var(--pbc-ink); background: #fff;
                    transition: border-color .2s ease, background .2s ease; }
.pbcp-rel__list a:hover { border-color: var(--pbc-teal); background: var(--pbc-mist); }
.pbcp-rel__list a span { color: var(--pbc-teal-d); }

/* ── closing note ───────────────────────────────────────────────────────── */
.pbcp-close { background: #fff; border-top: 1px solid var(--pbc-line); padding: 62px 0 72px; }
.pbcp-close--mist { background: var(--pbc-mist); }
.pbcp-close__h { font-size: clamp(22px, 2.4vw, 30px); font-weight: 700; text-transform: uppercase;
                 letter-spacing: -0.01em; margin: 10px 0 0; }
.pbcp-close__p { font-size: 15px; font-weight: 300; color: var(--pbc-body); line-height: 1.72;
                 margin: 14px 0 0; max-width: 74ch; text-wrap: pretty; }

/* ── invitation block (partnership programmes) ──────────────────────────── */
.pbcp-inv { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 32px; align-items: start;
            margin-top: 22px; }
.pbcp-inv__lead { font-size: clamp(17px, 1.6vw, 21px); font-weight: 300; line-height: 1.6; margin: 0;
                  color: rgba(255,255,255,0.9); max-width: 46ch; }
.pbcp-inv__lead b { font-weight: 700; color: #fff; }
.pbcp-inv__side { border-left: 1px solid rgba(255,255,255,0.14); padding-left: 28px; display: flex;
                  flex-direction: column; gap: 14px; }
.pbcp-inv__fact { display: flex; flex-direction: column; gap: 5px; }
.pbcp-inv__fk { font-size: 9.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
                color: rgba(255,255,255,0.4); }
.pbcp-inv__fv { font-size: 14px; font-weight: 500; color: #fff; line-height: 1.45; }

/* ── four-step process strip ────────────────────────────────────────────── */
.pbcp-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 24px;
              background: var(--pbc-line); border: 1px solid var(--pbc-line); }
.pbcp-steps__c { background: #fff; padding: 26px 22px 24px; display: flex; flex-direction: column;
                 gap: 10px; }
.pbcp-steps__c--last { background: var(--pbc-mist); }
.pbcp-steps__n { display: inline-flex; align-items: center; justify-content: center; width: 30px;
                 height: 30px; border-radius: 50%; background: var(--pbc-ink); color: #fff;
                 font-size: 12px; font-weight: 800; }
.pbcp-steps__name { font-size: 14.5px; font-weight: 700; text-transform: uppercase; line-height: 1.25; }
.pbcp-steps__body { font-size: 13px; font-weight: 300; color: var(--pbc-body); line-height: 1.7;
                    margin: 0; }

/* ── two-column tick lists ──────────────────────────────────────────────── */
.pbcp-two { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 24px; }
.pbcp-two__c { border: 1px solid var(--pbc-line); background: #fbfdfb;
               border-top: 3px solid var(--pbc-ink); padding: 26px 24px 24px; }
.pbcp-two__h { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em;
               margin: 0; }
.pbcp-two__l { margin: 14px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column;
               gap: 10px; }
.pbcp-two__l li { display: grid; grid-template-columns: 15px 1fr; gap: 10px; font-size: 13.5px;
                  font-weight: 300; color: var(--pbc-body); line-height: 1.65; }
.pbcp-two__l svg { margin-top: 4px; color: var(--pbc-green); }

/* ── sibling programme row ──────────────────────────────────────────────── */
.pbcp-sib { display: grid; grid-template-columns: 1fr 280px; gap: 30px; align-items: center;
            border: 1px solid var(--pbc-line); border-top: 3px solid var(--pbc-ink);
            padding: 28px 30px; margin-top: 22px; background: #fff; }
.pbcp-sib__k { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
               color: var(--pbc-ink); }
.pbcp-sib__name { display: block; font-size: 19px; font-weight: 700; text-transform: uppercase;
                  line-height: 1.2; margin-top: 10px; }
.pbcp-sib__body { font-size: 13.5px; font-weight: 300; color: var(--pbc-body); line-height: 1.7;
                  margin: 12px 0 0; }
.pbcp-sib__side { border-left: 1px solid var(--pbc-line); padding-left: 28px; }
.pbcp-sib__val { font-size: 20px; font-weight: 700; }
.pbcp-sib__cap { display: block; font-size: 9.5px; font-weight: 700; letter-spacing: 0.16em;
                 text-transform: uppercase; color: #8a948d; margin-top: 8px; }

@media (max-width: 980px) { .pbcp-angles { grid-template-columns: 1fr; gap: 22px; } }
@media (max-width: 880px) {
  .pbcp-figgrid, .pbcp-inv, .pbcp-sib, .pbcp-two { grid-template-columns: 1fr; gap: 24px; }
  .pbcp-inv__side, .pbcp-sib__side { border-left: 0; padding-left: 0;
                                     border-top: 1px solid rgba(255,255,255,0.14); padding-top: 20px; }
  .pbcp-sib__side { border-top-color: var(--pbc-line); }
  .pbcp-steps { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .pbcp-grid { grid-template-columns: 1fr; }
  .pbcp-hero { padding: 44px 16px 58px; }
  .pbcp-inner { padding: 0 16px; }
  .pbcp-card { padding: 26px 22px 22px; }
  .pbcp-panel { padding: 26px 20px 24px; }
  .pbcp-gname { white-space: normal; }
  .pbcp-rows { display: block; overflow-x: auto; }
}
@media (max-width: 560px) { .pbcp-ask__kbd { display: none; } }
@media (prefers-reduced-motion: reduce) {
  .pbcp-card, .pbcp-ask, .pbcp-arrow, .pbcp-rel__list a, .pbcp-rbtn svg { transition: none !important; }
  .pbcp-card:hover, .pbcp-ask:hover { transform: none; }
}
