/* Pudgy Bees — Ghost news theme.
   Palette and neo-brutalist language mirror the main site (app/one-page/*). */

:root {
  --ink:    #14312E;
  --cream:  #FAF4E8;
  --honey:  #F5B74E;
  --teal:   #2B6E68;
  --teal-d: #245e59;
  --coral:  #C0452A;
  --muted:  #4F625C;
  --onteal: #DCEFEA;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--gh-font-body, 'Space Grotesk', system-ui, -apple-system, sans-serif);
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }
a { color: inherit; }

.pb-display {
  font-family: var(--gh-font-heading, 'Luckiest Guy', cursive);
  font-weight: 400;
  letter-spacing: 1px;
}

/* ───────── buttons ───────── */
.pb-btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  padding: 12px 20px;
  border: 3px solid var(--ink);
  border-radius: 14px;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .16s ease, box-shadow .16s ease;
}
.pb-btn:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
.pb-btn-honey { background: var(--honey); color: var(--ink); }
.pb-btn-ghost { background: var(--cream); color: var(--ink); }

/* ───────── header ───────── */
.pb-header {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 12px clamp(14px,3vw,26px);
  background: var(--cream);
  border-bottom: 3px solid var(--ink);
}
.pb-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.pb-brand-logo { width: 46px; height: auto; display: block; }
.pb-brand-name { font-family: var(--gh-font-heading, 'Luckiest Guy', cursive); font-size: clamp(20px,3vw,27px); letter-spacing: 1px; color: var(--ink); }
.pb-nav { display: flex; gap: clamp(12px,2.2vw,26px); }
.pb-nav a { text-decoration: none; font-weight: 700; font-size: 14.5px; color: var(--ink); }
.pb-nav a:hover { color: var(--coral); }
.pb-header-right { display: flex; align-items: center; gap: 10px; }
.pb-header-cta { padding: 9px 16px; font-size: 14px; box-shadow: 3px 3px 0 var(--ink); }

.pb-burger {
  display: none; flex-direction: column; justify-content: center; gap: 4px;
  width: 44px; height: 40px; padding: 0 9px; cursor: pointer;
  background: var(--honey); border: 3px solid var(--ink); border-radius: 11px;
  box-shadow: 3px 3px 0 var(--ink);
}
.pb-burger span { display: block; height: 3px; border-radius: 2px; background: var(--ink); }

.pb-mobile { display: none; }

@media (max-width: 860px) {
  .pb-nav, .pb-header-cta { display: none; }
  .pb-burger { display: flex; }
  .pb-mobile {
    display: flex; flex-direction: column; gap: 12px;
    position: absolute; left: 0; right: 0; top: 100%;
    padding: 18px clamp(14px,3vw,26px) 22px;
    background: var(--cream); border-bottom: 3px solid var(--ink);
  }
  .pb-mobile[hidden] { display: none; }
  .pb-mobile a { text-decoration: none; font-weight: 700; color: var(--ink); }
  .pb-header { position: relative; }
}

/* ───────── hero ───────── */
.pb-hero {
  position: relative; overflow: hidden;
  background: radial-gradient(70% 60% at 80% 0%, rgba(245,183,78,.2), transparent 62%), var(--cream);
  border-bottom: 3px solid var(--ink);
}
.pb-comb {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: url('../images/honeycomb.svg') repeat;
  background-size: 46px 80px; opacity: .45;
  -webkit-mask-image: radial-gradient(120% 90% at 60% 10%, #000 30%, transparent 74%);
  mask-image: radial-gradient(120% 90% at 60% 10%, #000 30%, transparent 74%);
}
.pb-hero-in {
  position: relative; z-index: 1; max-width: 900px; margin: 0 auto;
  padding: clamp(34px,5vw,60px) 22px clamp(28px,4vw,44px); text-align: center;
}
.pb-hero-narrow { max-width: 760px; }
.pb-pill {
  display: inline-block; background: var(--honey);
  border: 3px solid var(--ink); border-radius: 999px;
  padding: 5px 15px; font-size: 12px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
}
.pb-hero-title { margin: 14px 0 0; font-size: clamp(32px,6vw,54px); line-height: 1.1; }
.pb-hero-lede { margin: 12px auto 0; max-width: 560px; font-size: 16px; line-height: 1.65; color: var(--muted); font-weight: 500; }
.pb-back { display: block; margin-bottom: 14px; font-size: 14px; font-weight: 700; color: var(--coral); text-decoration: none; }
.pb-back:hover { text-decoration: underline; }
.pb-post-title { margin: 14px 0 0; font-size: clamp(28px,5vw,46px); line-height: 1.12; }
.pb-post-meta { margin: 12px 0 0; font-size: 14px; font-weight: 700; color: var(--muted); }
.pb-tag {
  display: inline-block; margin-top: 12px; text-decoration: none;
  font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--coral);
}
.pb-err-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 22px; }

/* ───────── bands ───────── */
.pb-band { padding: clamp(32px,5vw,60px) 22px clamp(46px,6vw,76px); }
.pb-band-teal {
  background: radial-gradient(70% 70% at 12% 8%, rgba(245,183,78,.14), transparent 60%),
              linear-gradient(180deg, #2f766f, var(--teal-d));
  border-top: 3px solid var(--ink);
}
.pb-band-teal .pb-more-h { color: var(--cream); text-align: center; margin: 0 0 clamp(20px,3vw,30px); font-size: clamp(24px,4vw,36px); }
.pb-in { max-width: 1060px; margin: 0 auto; }
.pb-empty { text-align: center; font-size: 16px; font-weight: 600; color: var(--muted); }

/* ───────── cards ───────── */
.pb-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px,2.6vw,28px); align-items: start; }
.pb-grid > *:nth-child(3n+2) { margin-top: clamp(18px,3.4vw,44px); }
.pb-card {
  display: flex; flex-direction: column; overflow: hidden;
  text-decoration: none; color: var(--ink); background: #fff;
  border: 3px solid var(--ink); border-radius: 20px; box-shadow: 6px 6px 0 var(--ink);
  transition: transform .18s ease, box-shadow .18s ease;
}
.pb-card:hover, .pb-card:focus-visible { transform: translate(-3px,-3px); box-shadow: 9px 9px 0 var(--ink); }
/* Thumbs use `contain`, not `cover`: feature images are wide banners with text
   baked in, and cropping cuts the words. The honey ground fills the remainder. */
.pb-card-thumb { display: block; background: var(--honey); border-bottom: 3px solid var(--ink); }
.pb-card-thumb img { display: block; width: 100%; height: clamp(150px,17vw,190px); object-fit: contain; }
.pb-card-body { display: flex; flex-direction: column; gap: 8px; padding: 16px 18px 18px; }
.pb-card-date { font-size: 12px; font-weight: 700; color: var(--muted); }
.pb-card-title { font-size: 16px; font-weight: 800; line-height: 1.4; }
.pb-card-ex { font-size: 14px; line-height: 1.6; color: var(--muted); font-weight: 500; }
.pb-card-more { margin-top: 2px; font-size: 13px; font-weight: 800; color: var(--coral); }

@media (max-width: 860px) {
  .pb-grid { grid-template-columns: repeat(2, 1fr); }
  .pb-grid > *:nth-child(3n+2) { margin-top: 0; }
}
@media (max-width: 560px) { .pb-grid { grid-template-columns: 1fr; } }

/* ───────── article ───────── */
.pb-card-shell {
  max-width: 760px; margin: 0 auto; background: #fff;
  border: 3px solid var(--ink); border-radius: 22px; box-shadow: 8px 8px 0 var(--ink);
  overflow: hidden; display: flex; flex-direction: column;
}
.pb-post-img {
  display: block; width: 100%; height: auto;
  border-bottom: 3px solid var(--ink);
}
.pb-prose { padding: clamp(22px,3.4vw,34px); }
.pb-prose > *:first-child { margin-top: 0; }
.pb-prose > *:last-child { margin-bottom: 0; }
.pb-prose p { margin: 0 0 15px; font-size: 16.5px; line-height: 1.75; }
.pb-prose h2, .pb-prose h3, .pb-prose h4 {
  font-family: var(--gh-font-heading, 'Luckiest Guy', cursive); font-weight: 400; letter-spacing: .5px;
  margin: 30px 0 12px; line-height: 1.2;
}
.pb-prose h2 { font-size: clamp(22px,3.4vw,30px); }
.pb-prose h3 { font-size: clamp(19px,2.8vw,24px); }
.pb-prose h4 { font-size: 18px; }
.pb-prose a { color: var(--coral); font-weight: 700; }
.pb-prose ul, .pb-prose ol { margin: 0 0 15px; padding-left: 22px; }
.pb-prose li { margin-bottom: 8px; font-size: 16.5px; line-height: 1.7; }
.pb-prose blockquote {
  margin: 20px 0; padding: 4px 0 4px 16px;
  border-left: 4px solid var(--honey);
  font-style: italic; color: var(--muted);
}
.pb-prose img, .pb-prose figure img { border: 3px solid var(--ink); border-radius: 14px; }
.pb-prose figure { margin: 22px 0; }
.pb-prose figcaption { margin-top: 8px; font-size: 13px; color: var(--muted); text-align: center; }
.pb-prose hr { border: 0; border-top: 3px solid #e7ded0; margin: 26px 0; }
.pb-prose code {
  background: var(--cream); border: 2px solid #e7ded0; border-radius: 6px;
  padding: 1px 5px; font-size: 14px;
}
.pb-prose pre {
  background: var(--ink); color: var(--cream); padding: 16px; border-radius: 14px;
  overflow-x: auto; font-size: 14px;
}
.pb-prose pre code { background: none; border: 0; color: inherit; padding: 0; }
.pb-prose table { width: 100%; border-collapse: collapse; margin: 0 0 18px; }
.pb-prose th, .pb-prose td { border: 2px solid #e7ded0; padding: 9px 11px; text-align: left; font-size: 15px; }
.pb-prose th { background: var(--cream); font-weight: 800; }
.pb-post-cta { margin: 0 clamp(22px,3.4vw,34px) clamp(22px,3.4vw,34px); text-align: center; }

/* ───────── pagination ───────── */
.pagination {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin-top: clamp(26px,3.6vw,40px); font-weight: 700; font-size: 14.5px;
}
.pagination a { text-decoration: none; color: var(--coral); }
.pagination a:hover { text-decoration: underline; }
.page-number { color: var(--muted); }

/* ───────── footer ───────── */
.pb-footer { background: var(--ink); border-top: 3px solid var(--ink); }
.pb-footer a { text-decoration: none; }
.pb-footer-in {
  max-width: 980px; margin: 0 auto; padding: clamp(34px,5vw,52px) 22px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px;
}
.pb-footer-brand { display: flex; align-items: center; gap: 10px; }
.pb-footer-logo { width: 46px; height: auto; display: block; }
.pb-footer-name { font-family: var(--gh-font-heading, 'Luckiest Guy', cursive); font-size: clamp(26px,6vw,38px); letter-spacing: 1px; color: var(--cream); }
.pb-footer-tag { margin: 4px 0 2px; font-size: 15px; font-weight: 700; color: var(--honey); }
.pb-social { display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: center; }
.pb-social a { color: var(--cream); font-weight: 700; font-size: 14px; opacity: .9; }
.pb-social a:hover { color: var(--honey); opacity: 1; }
.pb-legal { display: flex; flex-wrap: wrap; gap: 6px 16px; justify-content: center; margin-top: 4px; }
.pb-legal a { color: var(--onteal); font-weight: 600; font-size: 13px; opacity: .85; }
.pb-legal a:hover { color: var(--honey); opacity: 1; text-decoration: underline; }
.pb-copy { margin: 4px 0 0; font-size: 12.5px; color: #8fa39c; }

/* ───────── Koenig editor cards ─────────
   Wide/full-bleed images and galleries inserted from the Ghost editor. */
.pb-prose .kg-card { margin: 0 0 22px; }
.pb-prose .kg-width-wide {
  width: calc(100% + 2 * clamp(22px,3.4vw,34px));
  max-width: none;
  margin-left: calc(-1 * clamp(22px,3.4vw,34px));
  margin-right: calc(-1 * clamp(22px,3.4vw,34px));
}
.pb-prose .kg-width-wide img { width: 100%; border-radius: 0; border-left: 0; border-right: 0; }
.pb-prose .kg-width-full {
  width: calc(100% + 2 * clamp(22px,3.4vw,34px));
  max-width: none;
  margin-left: calc(-1 * clamp(22px,3.4vw,34px));
  margin-right: calc(-1 * clamp(22px,3.4vw,34px));
}
.pb-prose .kg-width-full img { width: 100%; border: 0; border-radius: 0; }
.pb-prose .kg-image { display: block; margin-left: auto; margin-right: auto; }
.pb-prose .kg-embed-card { display: flex; flex-direction: column; align-items: center; }
.pb-prose .kg-embed-card iframe { max-width: 100%; }
.pb-prose .kg-bookmark-card a.kg-bookmark-container {
  display: flex; text-decoration: none; color: var(--ink);
  border: 3px solid var(--ink); border-radius: 14px; overflow: hidden; background: #fff;
}
.pb-prose .kg-bookmark-content { padding: 16px 18px; }
.pb-prose .kg-bookmark-title { font-weight: 800; }
.pb-prose .kg-bookmark-description { color: var(--muted); font-size: 14.5px; margin-top: 6px; }
.pb-prose .kg-gallery-row { display: flex; gap: 10px; }
.pb-prose .kg-gallery-image img { width: 100%; }

/* ═══════════════ editorial article layout ═══════════════ */

/* reading progress */
.pb-progress { position: sticky; top: 0; z-index: 45; height: 4px; background: transparent; }
.pb-progress span { display: block; height: 100%; width: 0; background: var(--coral); }

/* article header */
.pb-ahead {
  position: relative; overflow: hidden;
  background: radial-gradient(70% 60% at 80% 0%, rgba(245,183,78,.2), transparent 62%), var(--cream);
}
.pb-ahead-in {
  position: relative; z-index: 1; max-width: 760px; margin: 0 auto;
  padding: clamp(26px,4vw,46px) 22px clamp(22px,3vw,32px);
}
.pb-crumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: 13px; font-weight: 600; color: var(--muted); }
.pb-crumbs a { color: var(--muted); text-decoration: none; }
.pb-crumbs a:hover { color: var(--coral); text-decoration: underline; }

.pb-kicker {
  display: inline-block; margin-top: 16px; text-decoration: none;
  font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--coral);
}
.pb-atitle { margin: 10px 0 0; font-size: clamp(30px,5.4vw,50px); line-height: 1.1; }
.pb-stand {
  margin: 16px 0 0; font-size: clamp(17px,2.2vw,20px); line-height: 1.6;
  color: var(--muted); font-weight: 500;
}

.pb-byline {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px;
  margin-top: 22px; padding-top: 18px; border-top: 2px solid #e7ded0;
}
.pb-author { display: inline-flex; align-items: center; gap: 9px; }
.pb-avatar {
  width: 38px; height: 38px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--ink); display: block;
}
.pb-avatar-fallback {
  display: flex; align-items: center; justify-content: center;
  background: var(--honey); font-weight: 800; font-size: 16px; text-transform: uppercase;
}
.pb-author-name { font-weight: 800; font-size: 14.5px; }
.pb-byline-meta { display: inline-flex; gap: 7px; font-size: 14px; font-weight: 600; color: var(--muted); }

/* full-bleed lead image */
.pb-lead { margin: 0; }
.pb-lead img {
  display: block; width: 100%; height: auto;
  border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink);
}
.pb-lead figcaption {
  max-width: 760px; margin: 10px auto 0; padding: 0 22px;
  font-size: 13.5px; color: var(--muted); text-align: center;
}

/* article body */
.pb-abody { max-width: 760px; margin: 0 auto; padding: clamp(28px,4vw,48px) 22px clamp(44px,6vw,72px); }
.pb-abody .pb-prose { padding: 0; }
.pb-abody .pb-prose p { font-size: 18px; line-height: 1.8; }
.pb-abody .pb-prose li { font-size: 18px; }
.pb-abody .pb-prose > p:first-of-type::first-letter {
  float: left; font-family: var(--gh-font-heading, 'Luckiest Guy', cursive);
  font-size: 58px; line-height: .82; padding: 4px 10px 0 0; color: var(--coral);
}
.pb-abody .pb-prose .kg-width-wide,
.pb-abody .pb-prose .kg-width-full { margin-left: 0; margin-right: 0; width: 100%; }
.pb-abody .pb-prose .kg-width-full img { border: 3px solid var(--ink); border-radius: 14px; }

/* tags */
.pb-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.pb-tag {
  display: inline-block; text-decoration: none; background: var(--cream);
  border: 2px solid var(--ink); border-radius: 999px; padding: 5px 13px;
  font-size: 12.5px; font-weight: 800; color: var(--ink);
}
.pb-tag:hover { background: var(--honey); }

/* share */
.pb-share {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  margin-top: 26px; padding-top: 20px; border-top: 2px solid #e7ded0;
}
.pb-share-label { font-size: 13px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.pb-share-btn {
  font-family: inherit; font-size: 13.5px; font-weight: 800; cursor: pointer;
  text-decoration: none; color: var(--ink); background: #fff;
  border: 2px solid var(--ink); border-radius: 999px; padding: 7px 15px;
}
.pb-share-btn:hover { background: var(--honey); }

/* author box */
.pb-authorbox {
  display: flex; gap: 14px; align-items: flex-start; margin-top: 30px; padding: 18px 20px;
  background: #fff; border: 3px solid var(--ink); border-radius: 18px; box-shadow: 5px 5px 0 var(--ink);
}
.pb-authorbox-img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; border: 2px solid var(--ink); }
.pb-authorbox-name { margin: 0; font-weight: 800; font-size: 15.5px; }
.pb-authorbox-bio { margin: 5px 0 0; font-size: 14.5px; line-height: 1.6; color: var(--muted); }

/* end-of-post CTA */
.pb-cta-box {
  margin-top: 30px; padding: clamp(22px,3.4vw,30px); text-align: center;
  background: var(--honey); border: 3px solid var(--ink); border-radius: 20px; box-shadow: 6px 6px 0 var(--ink);
}
.pb-cta-h { margin: 0; font-size: clamp(21px,3.2vw,28px); }
.pb-cta-sub { margin: 8px auto 16px; max-width: 460px; font-size: 15px; line-height: 1.6; color: #6b4d16; font-weight: 600; }
.pb-cta-box .pb-btn { background: var(--ink); color: var(--honey); }

/* ═══════════════ lead story on the listing ═══════════════ */
.pb-lead-card {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 0;
  margin-bottom: clamp(24px,3.4vw,38px); overflow: hidden; text-decoration: none; color: var(--ink);
  background: #fff; border: 3px solid var(--ink); border-radius: 22px; box-shadow: 8px 8px 0 var(--ink);
  transition: transform .18s ease, box-shadow .18s ease;
}
.pb-lead-card:hover { transform: translate(-3px,-3px); box-shadow: 11px 11px 0 var(--ink); }
.pb-lead-thumb { display: block; background: var(--honey); border-right: 3px solid var(--ink); }
.pb-lead-thumb img { display: block; width: 100%; height: 100%; min-height: 260px; object-fit: contain; }
.pb-lead-body { display: flex; flex-direction: column; gap: 10px; padding: clamp(20px,3vw,30px); justify-content: center; }
.pb-lead-title { font-size: clamp(22px,3.2vw,32px); line-height: 1.15; }
.pb-lead-ex { font-size: 15.5px; line-height: 1.65; color: var(--muted); font-weight: 500; }
.pb-lead-meta { display: flex; gap: 7px; font-size: 13px; font-weight: 600; color: var(--muted); }
.pb-card-meta { display: flex; gap: 7px; font-size: 12.5px; font-weight: 600; color: var(--muted); }

@media (max-width: 760px) {
  .pb-lead-card { grid-template-columns: 1fr; }
  .pb-lead-thumb { border-right: 0; border-bottom: 3px solid var(--ink); }
  .pb-lead-thumb img { min-height: 160px; max-height: 260px; }
  .pb-abody .pb-prose p, .pb-abody .pb-prose li { font-size: 16.5px; }
  .pb-abody .pb-prose > p:first-of-type::first-letter { font-size: 46px; }
}

.pb-author-hero-img {
  width: 76px; height: 76px; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--ink); margin-bottom: 6px;
}


/* Outlet badge on cards.
   News posts are press pieces, so the badge shows WHERE the article ran: the
   primary tag's feature image is the outlet logo (create one tag per outlet and
   upload its logo there). Falls back to the tag name, then to the site logo. */
.pb-card-brand { display: flex; align-items: center; min-height: 26px; }
.pb-outlet-logo {
  display: block; height: 22px; width: auto;
  max-width: 150px; object-fit: contain; object-position: left center;
}
.pb-lead-body .pb-outlet-logo { height: 26px; max-width: 180px; }
.pb-outlet-name {
  font-size: 12px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--coral);
}

/* ═══════════════ news cards (press coverage) ═══════════════
   Centred, image-led and outlet-branded — these link out to the publication
   that ran the story, so they carry no date, excerpt or "read more". */
.pb-ngrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px,2.6vw,30px); align-items: start; }
.pb-ngrid > *:nth-child(3n+2) { margin-top: clamp(18px,3.4vw,44px); }

.pb-ncard {
  display: flex; flex-direction: column; overflow: hidden; text-decoration: none; color: var(--ink);
  background: #fff; border: 3px solid var(--ink); border-radius: 20px; box-shadow: 6px 6px 0 var(--ink);
  transition: transform .18s ease, box-shadow .18s ease;
}
.pb-ncard:hover, .pb-ncard:focus-visible { transform: translate(-3px,-3px); box-shadow: 9px 9px 0 var(--ink); }

.pb-ncard-thumb { display: block; background: var(--honey); border-bottom: 3px solid var(--ink); }
.pb-ncard-thumb img { display: block; width: 100%; height: clamp(150px,17vw,190px); object-fit: contain; }

.pb-ncard-body {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 18px clamp(16px,2vw,22px) 22px; text-align: center;
}
.pb-ncard-outlet { display: flex; align-items: center; justify-content: center; min-height: 26px; }
.pb-ncard-outlet .pb-outlet-logo {
  height: 24px; width: auto; max-width: 170px;
  object-fit: contain; object-position: center;
}
.pb-ncard-title { font-size: 16px; font-weight: 800; line-height: 1.4; }

@media (max-width: 860px) {
  .pb-ngrid { grid-template-columns: repeat(2, 1fr); }
  .pb-ngrid > *:nth-child(3n+2) { margin-top: 0; }
}
@media (max-width: 560px) { .pb-ngrid { grid-template-columns: 1fr; } }
