/* ═══════════════════════════════════════════════════════════════
   DAILY DAUB — newspaper-flavour bits only
   ───────────────────────────────────────────────────────────────
   Every editorial component on the Daub uses the SITE-WIDE shared
   classes (mag-cover, mag-cover__title, mag-cover__stars,
   mag-cover__body, mag-mini, mag-minis, mag-greeting, mag-more-label,
   gz-guide-cards, gz-guide-card, gz-brand-editorial, gz-snake-wrap,
   gz-listen-btn, mag-editorial-pull, inc/mag-lede.php…).
   That's the exact same set of classes vault.php, sister-sites.php,
   brand.php and darts.php use — so typography, spacing and colour
   match across the whole site by design.

   This file only styles the three things that don't exist elsewhere:
     1. The "Daily Daub" newspaper masthead
     2. The category tab strip
     3. The old-broadsheet Mecca ad-strip
   Plus a mag-greeting--cyan variant to fill a gap in the base CSS.
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   DAILY DAUB — sidebar-only bits
   ───────────────────────────────────────────────────────────────
   Newspaper masthead + category strip live inside the reporter-lady
   sidebar block. Nothing at the top of the section any more.
   ═══════════════════════════════════════════════════════════════ */

/* ── Mini Daily Daub nameplate — sits under the reporter image ─ */
.daub-mini-mast {
  text-align: center;
  margin: .5rem 0 1rem;
  padding: .8rem .5rem;
  position: relative;
}
.daub-mini-mast::before,
.daub-mini-mast::after {
  content: "";
  display: block;
  height: 2px;
  background: var(--daub-gradient);
  margin: 0 -.5rem;
}
.daub-mini-mast::before { margin-bottom: .75rem; }
.daub-mini-mast::after  { margin-top: .5rem; }

.daub-mini-mast__the {
  display: block;
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 500;
  font-size: .95rem;
  color: var(--daub-sky, #0284c7);
  line-height: 1;
  margin-bottom: .15rem;
}
.daub-mini-mast__daub {
  display: block;
  font-family: var(--font-dauble);
  font-weight: 900;
  font-size: clamp(1.5rem, 4vw, 2rem);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--daub-ink, #0c2734);
  line-height: 1;
}
.daub-mini-mast__dateline {
  margin: .7rem 0 .35rem;
  font-family: var(--font-editorial);
  font-size: .72rem;
  color: var(--daub-cyan, #0891b2);
  letter-spacing: .02em;
  font-variant: small-caps;
}
.daub-mini-mast__stars {
  margin: 0;
  color: var(--daub-bright, #06b6d4);
  font-size: .7rem;
  letter-spacing: .5em;
  padding-left: .5em;
}

/* ── Category strip inside the sidebar ────────────────────────── */
.daub-mini-cats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .25rem .4rem;
  padding: 0 0 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px dashed #cbd5e1;
  font-family: var(--font-editorial);
}
.daub-mini-cat {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  color: var(--daub-ink, #0c2734);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .25rem .45rem;
  border-radius: 3px;
  transition: background .15s, color .15s;
  position: relative;
}
.daub-mini-cat:hover {
  background: var(--daub-tint, #ecfeff);
  color: var(--daub-cyan, #0891b2);
}
.daub-mini-cat + .daub-mini-cat::before {
  content: "✦";
  color: var(--daub-cyan, #0891b2);
  margin-right: .35rem;
  margin-left: -.55rem;
  font-size: .45rem;
  vertical-align: middle;
}
.daub-mini-cat--strong {
  color: var(--daub-cyan, #0891b2);
}

/* ── Fill gap: mag-greeting--cyan (base CSS only defines pink /
     bingo-sites / party etc.) ─────────────────────────────────── */
.mag-greeting--cyan {
  border-top: 3px solid #0c2734;
  border-bottom: 3px solid #06b6d4;
  border-left: none;
  border-right: none;
}
.mag-greeting--cyan .mag-greeting__h1           { color: #0c2734; }
.mag-greeting--cyan .mag-greeting__stars        { color: var(--cyan, #0891b2); }
.mag-greeting--cyan .mag-greeting__stars-bottom { color: #06b6d4; }


/* ═══════════════════════════════════════════════════════════════
   SIDEBAR MASTHEAD — "The Daily Daub" nameplate under the reporter
   lady. Newspaper-style: italic "The", big Cinzel "Daily Daub" in
   uppercase, thin tagline, ✦ flourish. Top + bottom multi-blue rules
   so it reads as a proper masthead plate.
   ═══════════════════════════════════════════════════════════════ */
.daub-sidebar-mast {
  text-align: center;
  margin: .75rem 0 1rem;
  padding: .75rem .5rem .6rem;
  position: relative;
}
.daub-sidebar-mast::before,
.daub-sidebar-mast::after {
  content: "";
  display: block;
  height: 2px;
  background: var(--daub-gradient);
  margin: 0 -.5rem;
}
.daub-sidebar-mast::before { margin-bottom: .75rem; }
.daub-sidebar-mast::after  { margin-top: .55rem; }

.daub-sidebar-mast__the {
  display: block;
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 500;
  font-size: 1rem;
  color: var(--daub-sky, #0284c7);
  line-height: 1;
  margin-bottom: .15rem;
}
.daub-sidebar-mast__daub {
  display: block;
  font-family: var(--font-dauble);
  font-weight: 900;
  font-size: clamp(1.5rem, 4vw, 2rem);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--daub-ink, #0c2734);
  line-height: 1;
}
.daub-sidebar-mast__tagline {
  margin: .6rem 0 .45rem;
  font-family: var(--font-editorial);
  font-size: 15px;
  font-weight: 600;
  color: var(--daub-ink, #0c2734);
  letter-spacing: .01em;
  line-height: 1.3;
}
.daub-sidebar-mast__stars {
  margin: 0;
  color: var(--daub-bright, #06b6d4);
  font-size: .7rem;
  letter-spacing: .5em;
  padding-left: .5em;
}
@media (max-width: 640px) {
  .daub-sidebar-mast__daub    { font-size: 1.75rem; }
  .daub-sidebar-mast__tagline { font-size: 16px; }
}
/* ── The Daub multi-blue palette + gradient ──────────────────
   Colours pulled straight from the reporter-lady illustration:
   navy tie, dark cyan waistcoat, mid sky-blue polka dots, bright
   cyan pop, pale mist highlights. Used as a linear gradient
   wherever we want the "Daub blue" to feel alive, not flat.
─────────────────────────────────────────────────────────────── */
:root {
  --daub-ink:    #0c2734;   /* deepest navy — headlines, rules */
  --daub-navy:   #0e3a44;   /* dark cyan-blue — waistcoat */
  --daub-sky:    #0284c7;   /* sky blue — polka dots */
  --daub-cyan:   #0891b2;   /* main brand cyan */
  --daub-bright: #06b6d4;   /* bright cyan — the pop */
  --daub-mist:   #cffafe;   /* pale cyan — highlights */
  --daub-tint:   #ecfeff;   /* softest wash */

  /* Full palette sweep — used across the page for masthead rules,
     faded borders, and any element referencing --daub-gradient.
     Same cyan → indigo → violet → pink theme flow as the snakes. */
  --daub-gradient: linear-gradient(
    90deg,
    transparent 0%,
    #06b6d4 15%,
    #6366f1 40%,
    #8b5cf6 65%,
    #ec4899 85%,
    transparent 100%
  );
}

/* ═══════════════════════════════════════════════════════════════
   NEWS BOXES — editorial voice (matches The Daily Daub masthead
   style: gradient lines top/bottom, small-caps kicker, big serif
   headline, standfirst, themed accents). Ditched the 80s tabloid
   yellow/red/teal chunky banners so the whole page reads as one
   1930s newspaper editorial style, not two clashing eras.
   ═══════════════════════════════════════════════════════════════ */
.daub-tabs {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 1.5rem 0 2rem;
}

/* Star divider between posts — small solid cyan, same as the other
   stars on the page. Sits between each news box. */
.daub-tab-divider {
  margin: 1.75rem 0 !important;
  padding: 0;
  text-align: center;
}
.daub-tab {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.25rem 1.4rem;
  text-decoration: none;
  color: var(--daub-ink, #0c2734);
  transition: transform .18s;
  overflow: visible;
  background: #fff;
  border-style: solid;
  border-width: 2px 2px 2px 8px;
  border-color: transparent;
  border-image-source: linear-gradient(
    135deg,
    #06b6d4 0%,
    #6366f1 40%,
    #8b5cf6 70%,
    #ec4899 100%
  );
  border-image-slice: 1;
  border-radius: 0;
  box-shadow: none;
}
.daub-tab:hover {
  transform: translateY(-2px);
}

/* Subtle background tints per category — no more chunky yellow /
   teal / pink. Just a whisper of a wash to hint at the section. */
.daub-tab--yellow,
.daub-tab--teal,
.daub-tab--pink { background: #fff; }

/* Corner stamp — EXCLUSIVE / NEW / MUST READ absolute in the top-right
   corner of the news box, rotated for that "slapped on" newspaper stamp
   feel. Overlaps the box edge slightly. */
.daub-tab__stamp.gz-snake-wrap {
  position: absolute;
  top: -12px;
  right: 12px;
  z-index: 4;
  transform: rotate(-6deg);
  padding: 2px !important;
  border-radius: 3px !important;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .18);
}
.daub-tab__stamp .gz-snake-label {
  font-family: var(--font-editorial) !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  letter-spacing: .18em !important;
  padding: .35rem .6rem !important;
  border-radius: 2px !important;
  color: #fff !important;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Lead row — calendar + headline side by side, aligned at the top.
   Flex layout so the date box lines up cleanly with the headline text
   (no float wrap ambiguity). Teaser + read link sit at full width below. */
.daub-tab__lead-row {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: .9rem;
}

/* Calendar-style date pill — fixed size on the left of the lead row */
.daub-tab__cal {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 52px;
  padding: 5px 4px 7px;
  background: var(--daub-ink, #0c2734);
  color: #fff;
  border-radius: 3px;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
  position: relative;
  overflow: hidden;
}
.daub-tab__cal::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #06b6d4 0%, #6366f1 40%, #8b5cf6 70%, #ec4899 100%);
}
.daub-tab__cal-day {
  font-family: var(--font-editorial);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.01em;
  margin-top: 4px;
}
.daub-tab__cal-mon {
  font-family: var(--font-editorial);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .12em;
  margin-top: 3px;
  color: rgba(255, 255, 255, .85);
}
.daub-tab__cal-year {
  font-family: var(--font-editorial);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .1em;
  margin-top: 1px;
  color: rgba(255, 255, 255, .65);
}

/* Headline sits in the flex row, filling remaining space */
.daub-tab__hed {
  font-family: var(--font-editorial);
  font-size: clamp(1.35rem, 2.5vw, 1.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--daub-ink, #0c2734);
  margin: 0;
  letter-spacing: -.012em;
  text-transform: none;
  flex: 1;
  min-width: 0;
}

.daub-tab__body {
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Half-and-half headline — the opening phrase in the theme gradient,
   the rest in solid black. Same technique + pattern as the working H1
   gradient (see .mag-section--cyan .mag-cover__title--pink above). */
.daub-tab__hed span {
  display: inline !important;
  background: none;
  background-color: transparent !important;
  background-image: linear-gradient(
    90deg,
    #06b6d4 0%,
    #6366f1 33%,
    #8b5cf6 66%,
    #ec4899 100%
  ) !important;
  background-repeat: repeat;
  -webkit-background-clip: text !important;
          background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
          color: transparent !important;
  font-weight: 900;
  padding: 0 !important;
  box-shadow: none !important;
  text-decoration: none;
}

.daub-tab__teaser {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.65;
  color: #333;
  margin: 0 0 1rem;
  flex: 1;
  font-weight: 400;
}

/* Read link — text link, underlined cyan */
.daub-tab__read {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-editorial);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: none;
  padding: 0 0 1px;
  background: transparent;
  color: var(--daub-cyan, #0891b2);
  border-bottom: 2px solid var(--daub-cyan, #0891b2);
  border-radius: 0;
}
.daub-tab:hover .daub-tab__read {
  color: var(--daub-ink, #0c2734);
  border-bottom-color: var(--daub-ink, #0c2734);
}

/* Pinned strip — subtle italic marker above the top gradient rule */
.daub-tab--pinned {
  padding-top: 2.5rem;
}
.daub-tab__pin {
  position: absolute;
  top: 6px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  background: transparent;
  color: #666;
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
  padding: 0;
  text-transform: none;
  border-bottom: none;
  z-index: 4;
}
.daub-tab__pin-icon { font-size: 12px; transform: none; }


/* H1 coloured span — the mag-cover__title--pink phrase auto-becomes
   the section colour on other pages. On the Daub, apply the full
   theme gradient using background-clip so the coloured phrase runs
   cyan → indigo → violet → pink. Rest of the H1 stays black. */
.mag-section--cyan .mag-cover__title--pink {
  background: linear-gradient(
    135deg,
    #06b6d4 0%,
    #6366f1 40%,
    #8b5cf6 75%,
    #ec4899 100%
  );
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent !important;
}


/* ══════ FADED BORDERS + STAR DIVIDERS ══════
   Horizontal rules use the multi-colour gradient theme.
   Stars stay SMALL and SOLID cyan — no gradient. */

/* Horizontal faded borders — themed with the gradient */
.mag-section--cyan .mag-faded-border,
.mag-faded-border--cyan {
  background: linear-gradient(
    90deg,
    transparent 0%,
    #06b6d4 15%,
    #6366f1 40%,
    #8b5cf6 65%,
    #ec4899 85%,
    transparent 100%
  ) !important;
}

/* ✦ ✦ ✦ star dividers — small, solid cyan, no gradient */
.mag-section--cyan .mag-section-stars,
.mag-section--cyan .mag-cover__stars {
  color: var(--daub-cyan, #0891b2) !important;
  background: none !important;
  -webkit-background-clip: initial !important;
          background-clip: initial !important;
  -webkit-text-fill-color: currentColor !important;
  font-size: .7rem !important;
  letter-spacing: .4em !important;
}


/* ═══════════════════════════════════════════════════════════════
   DAUB SNAKE WRAP — multi-blue variant of the site's animated
   snake border. Same conic-gradient technique as gz-snake-wrap
   (pink/purple/cyan default) and gz-snake-wrap--gradient (the
   party multi-brand), but running purely through the Daub palette
   so the section labels on this page read as their own theme.
   ═══════════════════════════════════════════════════════════════ */

.mag-section--cyan .gz-snake-wrap--gradient::before,
.daub-nb-box .gz-snake-wrap::before {
  background: conic-gradient(
    from var(--gz-angle, 0deg),
    #22d3ee   0deg,
    #06b6d4  90deg,
    #6366f1 180deg,
    #8b5cf6 260deg,
    #ec4899 340deg,
    #22d3ee 360deg
  ) !important;
}

/* Label chip — cyan → indigo → violet → ends on a bright pink pop */
.mag-section--cyan .mag-label--gradient {
  background: linear-gradient(
    135deg,
    #06b6d4 0%,
    #6366f1 40%,
    #8b5cf6 75%,
    #ec4899 100%
  ) !important;
  color: #fff !important;
}

/* Drop cap on the Daub — theme it with the same cyan → indigo → violet
   → pink gradient using background-clip so the letter itself becomes
   the gradient instead of being flat cyan. */
.mag-section--cyan .drop-cap--cyan,
.mag-section--cyan .drop-cap {
  background: linear-gradient(
    135deg,
    #06b6d4 0%,
    #6366f1 40%,
    #8b5cf6 75%,
    #ec4899 100%
  );
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
}

/* Pull quote — keep the default pink treatment on the Daub the same way
   vault, brands, bingo and sister-sites do. Only darts/arcade re-tint
   their pull quotes to their section colour. Overrides the auto-cyan
   tint that .mag-section--cyan applies. */
.mag-section--cyan .mag-editorial-pull {
  background: rgba(252, 244, 247, 0.66) !important;
  border-top-color: var(--pink) !important;
  border-bottom-color: var(--pink) !important;
}


/* ═══════════════════════════════════════════════════════════════
   ESSENTIAL READS — dark navy box with polka-dot background,
   real bingo balls in three bright colours, coloured left-edge
   accent stripes per row, hot pink CTA. Signed off "EST. 2007".
   ═══════════════════════════════════════════════════════════════ */
.daub-nb-box.mag-promo-box {
  padding: 1rem 0.85rem 1.1rem;
  border: 3px solid transparent !important;
  border-image: linear-gradient(180deg,
    #06b6d4,
    #6366f1,
    #8b5cf6,
    #ec4899
  ) 1 !important;
}
.daub-nb-box.mag-promo-box::before {
  background:
    radial-gradient(circle at 50% 20%,
      rgba(236, 72, 153, .15) 0%,
      rgba(139, 92, 246, .1) 30%,
      rgba(99, 102, 241, .06) 55%,
      transparent 70%),
    radial-gradient(circle at 12px 12px,
      rgba(255, 255, 255, .07) 1.5px,
      transparent 2.5px) !important;
  background-size: auto, 24px 24px !important;
}

.daub-nb-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Heading + lead */
.daub-nb-head {
  font-family: var(--font-editorial);
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  margin: 0.75rem 0 0.4rem;
  line-height: 1.15;
  letter-spacing: -0.005em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .45);
}
.daub-nb-lead {
  font-family: var(--font-editorial);
  font-size: 13px;
  color: rgba(255, 255, 255, .85);
  line-height: 1.5;
  margin: 0 auto 0.9rem;
  max-width: 260px;
}

/* Row list */
.daub-nb-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.1rem;
  text-align: left;
}

.daub-nb-row {
  margin-bottom: .65rem;
  background: rgba(255, 255, 255, .04);
  border-left: 4px solid transparent;
  border-radius: 3px;
  transition: background 0.15s, transform .15s;
}
.daub-nb-row:last-child { margin-bottom: 0; }
.daub-nb-row:hover {
  background: rgba(255, 255, 255, .1);
  transform: translateX(2px);
}

/* Per-row coloured accent — pops against the dark navy */
.daub-nb-row--pink   { border-left-color: #ec4899; }
.daub-nb-row--cyan   { border-left-color: var(--daub-bright, #06b6d4); }
.daub-nb-row--purple { border-left-color: #a855f7; }

.daub-nb-link {
  display: block;
  padding: 0.75rem 0.7rem;
  text-decoration: none;
  color: inherit;
}

/* Header row: ball + coloured category label sit inline at the top,
   title/subtitle get full width underneath. */
.daub-nb-header {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .5rem;
}

/* Bingo ball — signature site component. Override the .gz-picks-ball
   absolute positioning (which is meant to float over a brand-logo
   circle in Editor's Picks) so it sits inline with the category
   label in our layout. */
.daub-nb-ball {
  flex-shrink: 0;
  position: static !important;
  top: auto !important;
  left: auto !important;
  width: 24px !important;
  height: 24px !important;
  font-size: 11px !important;
  box-shadow:
    inset 0 -2px 4px rgba(0, 0, 0, .25),
    inset 0 2px 6px rgba(255, 255, 255, .35),
    0 2px 6px rgba(0, 0, 0, .5) !important;
}
.daub-nb-ball > span { font-size: 11px !important; }

.daub-nb-cat {
  font-family: var(--font-editorial);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}
.daub-nb-row--pink   .daub-nb-cat { color: #f9a8d4; }
.daub-nb-row--cyan   .daub-nb-cat { color: #67e8f9; }
.daub-nb-row--purple .daub-nb-cat { color: #d8b4fe; }

.daub-nb-title {
  display: block;
  font-family: var(--font-editorial);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -.003em;
  margin-bottom: 4px;
}
.daub-nb-sub {
  display: block;
  font-family: var(--font-editorial);
  font-size: 13px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.4;
}

/* CTA — hot pink for punch against the navy palette */
.daub-nb-cta {
  display: inline-block;
  font-family: var(--font-editorial);
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #ec4899 0%, #C71585 100%);
  padding: 0.75rem 1.2rem;
  border-radius: 3px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 3px 12px rgba(236, 72, 153, .45);
  border: 2px solid rgba(255, 255, 255, .1);
}
.daub-nb-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(236, 72, 153, .6);
  color: #fff;
}

/* Editorial stamp — small "THE DAUB · EST. 2007" line at the
   bottom for that newspaper masthead detail */
.daub-nb-stamp {
  margin: .9rem 0 0;
  padding-top: .6rem;
  border-top: 1px dashed rgba(255, 255, 255, .18);
  font-family: var(--font-editorial);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  text-align: center;
}
.daub-nb-stamp > span:first-child {
  color: rgba(255, 255, 255, .55);
  font-weight: 900;
}
.daub-nb-stamp-est { padding-left: .35rem; }

@media (max-width: 640px) {
  .daub-nb-head    { font-size: 22px; }
  .daub-nb-lead    { font-size: 14px; }
  .daub-nb-title   { font-size: 17px; }
  .daub-nb-sub     { font-size: 14px; }
  .daub-nb-cat     { font-size: 11px; }
  .daub-nb-cta     { font-size: 15px; padding: .85rem 1.3rem; }
  .daub-nb-ball    { width: 28px !important; height: 28px !important; }
  .daub-nb-ball > span { font-size: 12px !important; }
}


/* ═══════════════════════════════════════════════════════════════
   CATEGORY FILTER — chip row above the news boxes
   ═══════════════════════════════════════════════════════════════ */
.daub-cat-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  padding: .75rem 0 1.25rem;
  font-family: var(--font-editorial);
  border-bottom: 1px solid #e6d3df;
  margin-bottom: 1.5rem;
}
.daub-cat-filter__chip {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .35rem .8rem;
  border: 1px solid var(--daub-cyan, #0891b2);
  border-radius: 999px;
  color: var(--daub-cyan, #0891b2);
  text-decoration: none;
  transition: background .15s, color .15s;
}
.daub-cat-filter__chip:hover {
  background: var(--daub-tint, #ecfeff);
}
.daub-cat-filter__chip--active {
  background: var(--daub-cyan, #0891b2);
  color: #fff;
}
.daub-cat-filter__chip--active:hover {
  background: var(--daub-ink, #0c2734);
}
@media (max-width: 640px) {
  .daub-cat-filter {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: .75rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .daub-cat-filter::-webkit-scrollbar { display: none; }
  .daub-cat-filter__chip { flex-shrink: 0; font-size: .75rem; padding: .3rem .65rem; }
}


/* ═══════════════════════════════════════════════════════════════
   ARCHIVE NAV — sits below the multi-colour boxes
   ═══════════════════════════════════════════════════════════════ */
.daub-archive-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem 1rem;
  padding: 1.25rem 0 1.5rem;
  font-family: var(--font-editorial);
  font-size: .88rem;
}
.daub-archive-nav__more {
  font-weight: 700;
  color: #0c2734;
  text-decoration: none;
  border-bottom: 2px solid var(--daub-cyan, #0891b2);
  padding-bottom: .1rem;
}
.daub-archive-nav__more:hover {
  color: var(--daub-cyan, #0891b2);
}
.daub-archive-nav__sep {
  width: 1px;
  height: 1rem;
  background: #cbd5e1;
  margin: 0 .25rem;
}
.daub-archive-nav__label {
  color: #666;
  font-variant: small-caps;
  letter-spacing: .05em;
  font-size: .78rem;
}
.daub-archive-nav__cat {
  color: var(--daub-cyan, #0891b2);
  text-decoration: none;
  border-bottom: 1px dotted var(--daub-cyan, #0891b2);
  padding-bottom: .05rem;
}
.daub-archive-nav__cat:hover {
  color: #0c2734;
  border-bottom-style: solid;
}
@media (max-width: 640px) {
  .daub-archive-nav { font-size: .82rem; gap: .35rem .75rem; }
  .daub-archive-nav__sep { display: none; }
}


/* ── Mobile ──────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .daub-mini-mast__daub { font-size: 1.6rem; }
  .daub-mini-cat { font-size: .68rem; padding: .2rem .4rem; }
}


/* ═══════════════════════════════════════════════════════════════
   FILTER DROPDOWN — client-side category select above the news
   boxes. Same pill-style layout as the brands page (.gz-dir-filter),
   just themed with the Daub gradient border on the select.
   ═══════════════════════════════════════════════════════════════ */
.daub-filter {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 1rem 0 1.75rem;
}
.daub-filter__label {
  font-family: var(--font-sans, system-ui);
  font-size: 14px;
  font-weight: 800;
  color: var(--daub-cyan, #0891b2);
  letter-spacing: .3px;
  text-transform: uppercase;
}
.daub-filter__selectwrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.daub-filter__select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: var(--font-sans, system-ui);
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: .55rem 2.6rem .55rem 1.2rem;
  cursor: pointer;
  min-width: 190px;
  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(90deg, #06b6d4 0%, #6366f1 33%, #8b5cf6 66%, #ec4899 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 2px 8px rgba(99, 102, 241, .18);
  transition: box-shadow .15s ease, transform .15s ease;
}
.daub-filter__select:hover {
  box-shadow: 0 4px 14px rgba(139, 92, 246, .28);
  transform: translateY(-1px);
}
.daub-filter__select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, .28);
}
.daub-filter__chevron {
  position: absolute;
  right: 1rem;
  pointer-events: none;
  color: var(--daub-cyan, #0891b2);
  font-size: 14px;
  line-height: 1;
}
.daub-filter__count {
  font-family: var(--font-sans, system-ui);
  font-size: 13px;
  font-weight: 600;
  color: #8a8a8a;
  font-style: italic;
}
@media (max-width: 640px) {
  .daub-filter { gap: .5rem; }
  .daub-filter__select { min-width: 170px; font-size: 14px; }
  .daub-filter__count { width: 100%; text-align: center; }
}


/* Prev / Next snake CTA row — smaller than the standard gz-snake-cta
   so they fit side-by-side on one line, even on narrow mobile. */
.daub-prevnext {
  display: flex;
  gap: .75rem;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  margin: 2rem 0 1.5rem;
}
.daub-prevnext .gz-snake-cta {
  padding: 2px !important;
}
.daub-prevnext .gz-snake-cta__text {
  font-size: 12px !important;
  padding: .45rem .9rem !important;
  letter-spacing: .1em !important;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .daub-prevnext { gap: .5rem; }
  .daub-prevnext .gz-snake-cta__text {
    font-size: 11px !important;
    padding: .4rem .7rem !important;
    letter-spacing: .06em !important;
  }
}


/* First-letter accent on Explore More mini cards — must MATCH each
   card's own colour, not the section's cyan. The site's base rule
   (.mag-section--cyan .mag-mini__title::first-letter → cyan) applies
   too broadly; these overrides scope it back per-card variant so
   pink cards get a pink letter, purple cards get a purple letter. */
.mag-section--cyan .gz-mini--bingo-sites .mag-mini__title::first-letter {
  color: var(--pink, #C71585);
}
.mag-section--cyan .gz-mini--purple .mag-mini__title::first-letter {
  color: var(--purple, #8B5CF6);
}


/* ═══════════════════════════════════════════════════════════════
   MINI RELATED POSTS — compact 2-column grid of daub-tab boxes,
   shown between Explore More and Part 2 on individual article
   pages. Same styling language as full-size news boxes but tighter
   spacing, smaller type, no pinned indicator.
   ═══════════════════════════════════════════════════════════════ */
.daub-tabs-mini {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.daub-tab--mini {
  padding: 1rem 1.1rem !important;
  min-height: 0;
}

/* Slightly smaller kicker snake stamp on minis */
.daub-tab--mini .daub-tab__stamp {
  transform: rotate(-4deg) scale(.82);
  transform-origin: top right;
}

/* Smaller calendar pill */
.daub-tab--mini .daub-tab__cal {
  width: 42px;
  padding: 3px 3px 5px;
}
.daub-tab--mini .daub-tab__cal-day { font-size: 17px; }
.daub-tab--mini .daub-tab__cal-mon { font-size: 8px; }
.daub-tab--mini .daub-tab__cal-year { font-size: 6.5px; }

/* Compact headline */
.daub-tab--mini .daub-tab__hed {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.15;
}

/* Tighter teaser */
.daub-tab--mini .daub-tab__teaser {
  font-size: 13px;
  line-height: 1.5;
  margin: .6rem 0 .8rem;
}

.daub-tab--mini .daub-tab__read {
  font-size: 13px;
}




/* Empty state — "No stories yet" when dq_daub_posts is empty. */
.daub-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  color: #8a94a1;
  font-family: var(--font-editorial);
  font-style: italic;
}
.daub-empty__title {
  font-size: 1.15rem;
  margin: 0 0 .5rem;
  color: #0c2734;
}
.daub-empty__sub {
  margin: 0;
  font-size: .95rem;
}


/* ═══════════════════════════════════════════════════════════════
   LEDE CALENDAR PILL — used on daub-post.php in place of a drop-cap.
   Floats at the top-left of the standfirst paragraph so the lede
   text wraps around it. Same base component as the .daub-tab__cal
   pill on the news boxes, but sized up to match .drop-cap's
   footprint (~5rem square) and typographic weight so it acts as a
   real drop-cap replacement rather than a small badge.
   ═══════════════════════════════════════════════════════════════ */
.daub-lede-cal {
  float: left;
  width: 5rem;
  padding: .55rem .5rem .65rem;
  margin: .05em .7rem .3rem 0;
  border-radius: 4px;
  shape-outside: margin-box;
}
.daub-lede-cal::before {
  height: 4px;
}
.daub-lede-cal .daub-tab__cal-day {
  font-size: 2.75rem;
  margin-top: .35rem;
  line-height: .95;
}
.daub-lede-cal .daub-tab__cal-mon {
  font-size: 14px;
  margin-top: .4rem;
  letter-spacing: .18em;
}
.daub-lede-cal .daub-tab__cal-year {
  font-size: 11px;
  margin-top: .15rem;
  letter-spacing: .16em;
}
@media (max-width: 640px) {
  .daub-lede-cal {
    width: 3.75rem;
    padding: .4rem .4rem .5rem;
    margin: .05em .55rem .25rem 0;
  }
  .daub-lede-cal .daub-tab__cal-day { font-size: 2rem; margin-top: .25rem; }
  .daub-lede-cal .daub-tab__cal-mon { font-size: 11px; margin-top: .3rem; }
  .daub-lede-cal .daub-tab__cal-year { font-size: 8.5px; margin-top: .1rem; }
}


/* About-brand pill on daub-post.php — visible signal that this post is
   specifically about {Brand}, and a click-through to that brand's page.
   Mirrors the schema `about → brand#brand` link. Compact horizontal
   line under the H1 stars, before the lede. */
.daub-about-brand {
  text-align: center;
  margin: .25rem 0 1.25rem;
  font-family: var(--font-editorial);
  font-size: .95rem;
  color: var(--muted, #5c6774);
  letter-spacing: .02em;
}
.daub-about-brand__label {
  display: inline-block;
  padding: .1em .5em .15em;
  margin-right: .35em;
  border-radius: 3px;
  background: var(--daub-ink, #0c2734);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  vertical-align: 1px;
}
.daub-about-brand__link {
  color: var(--daub-cyan, #0891b2);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color .2s ease;
}
.daub-about-brand__link:hover,
.daub-about-brand__link:focus {
  border-bottom-color: var(--daub-cyan, #0891b2);
}


/* MORE LIKE THIS block — sits below the Back to Daily Daub CTA on
   article pages. Same visual language as the daub hub's news feed
   (mag-more-label header + daub-tabs-mini grid), just given room to
   breathe at 3rem margin-top so it reads as a separate section from
   the CTA above it. */
.daub-related-block {
  margin-top: 3rem;
}

/* Preview state — greyed slightly so editors know it's placeholder.
   Remove the wrapping <?php else: ?> block from daub-post.php once
   you have real related posts to test against. */
.daub-related-block--preview {
  opacity: .7;
  position: relative;
  padding-top: 1rem;
  border-top: 2px dashed rgba(6, 182, 212, .35);
}
.daub-related-block--preview::before {
  content: "PREVIEW";
  position: absolute;
  top: -.8rem;
  left: 50%;
  transform: translateX(-50%);
  padding: .2rem .7rem;
  background: var(--daub-cyan, #0891b2);
  color: #fff;
  font-family: var(--font-editorial);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .2em;
  border-radius: 3px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
}
.daub-related-block--preview .daub-tab--mini {
  pointer-events: none;
}
.daub-related-preview-note {
  text-align: center;
  color: var(--muted, #5c6774);
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: .9rem;
  margin: .5rem auto 1.25rem;
  max-width: 640px;
}


/* ─────────────────────────────────────────────────────────────
   FROM THE NEWS DESK — homepage headline strip. Compact card
   grid (2x2 desktop, 1-col mobile) with cyan/gradient palette
   so it reads as "more Daub news" without repeating the full
   news-box treatment used at the top of the page.
   ───────────────────────────────────────────────────────────── */
.daub-headline-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
  margin: 0 auto 2rem;
  max-width: 900px;
}
@media (min-width: 720px) {
  .daub-headline-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
.daub-headline-card {
  position: relative;
  display: block;
  padding: 1.25rem 1.1rem 1rem;
  background: #fff;
  color: var(--daub-ink, #0c2734);
  text-decoration: none;
  border: 1px solid rgba(6, 182, 212, .18);
  border-left: 4px solid var(--daub-cyan, #0891b2);
  border-radius: 3px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  box-shadow: 0 1px 3px rgba(12, 39, 52, .06);
}
.daub-headline-card:hover,
.daub-headline-card:focus {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(6, 182, 212, .18);
  border-left-color: var(--daub-pink, #db2777);
}
.daub-headline-card__stamp {
  display: inline-block;
  margin: -.35rem 0 .55rem;
  transform: rotate(-2deg);
  transform-origin: left center;
}
.daub-headline-card__hed {
  font-family: var(--font-editorial);
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.01em;
  margin: 0 0 .65rem;
  color: var(--daub-ink, #0c2734);
}
.daub-headline-card__pink {
  background: linear-gradient(90deg, var(--daub-pink, #db2777), var(--daub-violet, #8b5cf6));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.daub-headline-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-editorial);
  font-size: .78rem;
  letter-spacing: .06em;
  color: var(--muted, #5c6774);
  text-transform: uppercase;
  padding-top: .5rem;
  border-top: 1px dashed rgba(6, 182, 212, .2);
}
.daub-headline-card__read {
  color: var(--daub-cyan, #0891b2);
  font-weight: 800;
}
.daub-headline-card:hover .daub-headline-card__read,
.daub-headline-card:focus .daub-headline-card__read {
  color: var(--daub-pink, #db2777);
}
