/*!
Theme Name: Pharmint Bridge
Theme URI: https://pharmint.net
Author: PHARMINT PTE. LTD.
Author URI: https://pharmint.net
Description: WordPress theme for the /blog surface of tadalafil-seller.com and semaglutide-seller.com. Design tokens mirror the Next.js storefronts. Light mode for tadalafil, charcoal-dark mode for semaglutide - toggled at runtime via body class set by functions.php.
Version: 2.1.0
Requires PHP: 8.0
License: Proprietary
Text Domain: pharmint-bridge
*/

/* ================================================================
   Design tokens - mirror tailwind.config.js on each storefront
   ================================================================ */
:root {
  --pb-container-max: 80rem;
  --pb-reading-max: 44rem;
  --pb-font-sans: "IBM Plex Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --pb-font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  /* --pb-brand-500 / --pb-brand-600 / --pb-brand-700 / --pb-accent injected by functions.php */
}

/* Light mode - tadalafil */
body.pb-mode-light {
  --pb-bg: #ffffff;
  --pb-surface: #f8fafc;
  --pb-line: #e2e8f0;
  --pb-line-strong: #cbd5e1;
  --pb-ink: #0f172a;
  --pb-ink-soft: #334155;
  --pb-ink-muted: #64748b;
  --pb-ink-quiet: #94a3b8;
  --pb-nav-link: #334155;
  --pb-footer-bg: #0f172a;
  --pb-footer-ink: #cbd5e1;
  --pb-footer-ink-quiet: #64748b;
  --pb-footer-line: #1e293b;
  --pb-code-bg: #f1f5f9;
  --pb-pre-bg: #0f172a;
  --pb-pre-ink: #e2e8f0;
}

/* Dark mode - semaglutide (mirrors globals.css bg #0d1114 + ink tokens) */
body.pb-mode-dark {
  --pb-bg: #0d1114;
  --pb-surface: #14181c;
  --pb-line: #2a3138;
  --pb-line-strong: #3a434c;
  --pb-ink: #eef2f5;
  --pb-ink-soft: #c8d1d8;
  --pb-ink-muted: #8a97a1;
  --pb-ink-quiet: #5b6771;
  --pb-nav-link: #c8d1d8;
  --pb-footer-bg: #14181c;
  --pb-footer-ink: #c8d1d8;
  --pb-footer-ink-quiet: #5b6771;
  --pb-footer-line: #2a3138;
  --pb-code-bg: #1b2126;
  --pb-pre-bg: #14181c;
  --pb-pre-ink: #eef2f5;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--pb-font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--pb-ink);
  background: var(--pb-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--pb-accent);
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover { color: var(--pb-brand-500); }

code, pre, kbd, samp { font-family: var(--pb-font-mono); }

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

/* ================================================================
   Layout container
   ================================================================ */
.pb-container {
  max-width: var(--pb-container-max);
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 512px) { .pb-container { padding: 0 1.5rem; } }

/* ================================================================
   Header - mirrors NavigationHeader from both storefronts.
   Light mode: bg-white sticky; dark mode: bg-bg sticky.
   ================================================================ */
.pb-header {
  background: var(--pb-bg);
  border-bottom: 1px solid var(--pb-line);
  position: sticky;
  top: 0;
  z-index: 40;
}
.pb-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.pb-logo {
  display: inline-flex;
  align-items: center;
  transition: opacity 0.15s ease;
}
.pb-logo:hover { opacity: 0.9; }
.pb-logo img {
  height: 36px;
  width: auto;
  display: block;
}

.pb-nav {
  display: none;
  gap: 1.5rem;
  align-items: center;
  font-size: 0.875rem;
  color: var(--pb-nav-link);
}
@media (min-width: 512px) { .pb-nav { display: flex; } }
.pb-nav a { color: var(--pb-nav-link); }
.pb-nav a:hover { color: var(--pb-accent); }

/* Sans nav (tadalafil) - matches storefront exactly */
body.pb-nav-sans .pb-nav {
  font-size: 0.875rem;
  text-transform: none;
  letter-spacing: normal;
  font-family: var(--pb-font-sans);
}
/* Mono nav (semaglutide) - uppercase micro-caps, matches storefront */
body.pb-nav-mono .pb-nav {
  font-family: var(--pb-font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pb-ink-muted);
}
body.pb-nav-mono .pb-nav a { color: var(--pb-ink-muted); }

/* CTA button */
.pb-nav .pb-cta {
  background: var(--pb-brand-600);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  font-weight: 500;
}
.pb-nav .pb-cta:hover { background: var(--pb-brand-700); color: #ffffff; }

/* Mono CTA (semaglutide) - flat, no rounded corners, tight tracking */
body.pb-nav-mono .pb-nav .pb-cta {
  background: var(--pb-accent);
  color: var(--pb-bg);
  border-radius: 0;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}
body.pb-nav-mono .pb-nav .pb-cta:hover { background: var(--pb-brand-500); color: var(--pb-bg); }

.pb-mobile-cta {
  background: var(--pb-brand-600);
  color: #ffffff;
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
}
@media (min-width: 512px) { .pb-mobile-cta { display: none; } }
body.pb-nav-mono .pb-mobile-cta {
  background: var(--pb-accent);
  color: var(--pb-bg);
  border-radius: 0;
  font-family: var(--pb-font-mono);
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  text-transform: uppercase;
}

/* ================================================================
   Main content column
   ================================================================ */
.pb-main {
  max-width: var(--pb-container-max);
  margin: 0 auto;
  padding: 3rem 1rem;
}
@media (min-width: 512px) { .pb-main { padding: 4rem 1.5rem; } }

.pb-page-header { margin-bottom: 3rem; }
/* Eyebrow / breadcrumb above the post title.
   Tadalafil default: sans, slate-500, sentence-case, breadcrumb-style
   (matches storefront meta rows; category tags will slot in here).
   Semaglutide (.pb-nav-mono body): mono uppercase micro-caps in accent
   green - matches the storefront's mono kicker convention. */
.pb-eyebrow {
  font-family: var(--pb-font-sans);
  font-size: 0.8125rem;              /* 13px */
  color: #64748b;                    /* slate-500 */
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0.75rem;
}
.pb-eyebrow a {
  color: inherit;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}
.pb-eyebrow a:hover {
  color: var(--pb-brand-700);
  border-bottom-color: var(--pb-brand-700);
}
body.pb-nav-mono .pb-eyebrow {
  font-family: var(--pb-font-mono);
  font-size: 0.75rem;
  color: var(--pb-accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
body.pb-nav-mono .pb-eyebrow a {
  color: var(--pb-accent);
  font-weight: 400;
}
body.pb-nav-mono .pb-eyebrow a:hover {
  color: var(--pb-brand-500);
  border-bottom-color: var(--pb-brand-500);
}
.pb-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--pb-ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}

/* ================================================================
   Post list
   ================================================================ */
.pb-posts { display: grid; gap: 3rem; }
.pb-post-card { max-width: var(--pb-reading-max); }
/* Inside the .pb-single-layout grid (archive with sidebar), the left
   column already caps at 52rem via .pb-single, so cards fill the
   column instead of being re-capped to 44rem which would look narrow
   next to the 22rem sidebar. */
.pb-archive .pb-post-card { max-width: 100%; }
.pb-archive .pb-page-header { margin-bottom: 2rem; }
.pb-post-card-thumb {
  display: block;
  margin-bottom: 1rem;
  border: 1px solid var(--pb-line);
  border-radius: 0.5rem;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--pb-surface);
}
.pb-post-card-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.pb-post-card-thumb:hover img { transform: scale(1.02); }
.pb-post-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--pb-ink);
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}
.pb-post-title a { color: inherit; }
.pb-post-title a:hover { color: var(--pb-accent); }
/* Archive card meta - same treatment split as .pb-eyebrow:
   sans/sentence on tadalafil, mono/uppercase on semaglutide. */
.pb-post-meta {
  font-family: var(--pb-font-sans);
  font-size: 0.8125rem;
  color: #64748b;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0.75rem;
}
body.pb-nav-mono .pb-post-meta {
  font-family: var(--pb-font-mono);
  font-size: 0.75rem;
  color: var(--pb-ink-quiet);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pb-post-excerpt { color: var(--pb-ink-soft); }
.pb-post-more {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 500;
  color: var(--pb-accent);
}
.pb-post-more:hover { color: var(--pb-brand-500); }

/* ================================================================
   Single post - two-column layout with sticky lead sidebar (>=1024px).
   Content column widens from 44rem to 52rem; sidebar is 22rem.
   Below 1024px: single column, sidebar drops under content.
   ================================================================ */
.pb-single-layout {
  max-width: var(--pb-container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .pb-single-layout {
    grid-template-columns: minmax(0, 1fr) 22rem;
  }
}
.pb-single { max-width: 52rem; margin: 0; }
.pb-single .pb-title { font-size: 2.25rem; margin-bottom: 0.5rem; }

.pb-single-sidebar { min-width: 0; }
@media (min-width: 1024px) {
  .pb-single-sidebar {
    position: sticky;
    top: 88px;
    align-self: start;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
  }
}

/* Sidebar lead card - matches tadalafil hero mini-RFQ typography:
   sans-serif (was mono) tiny uppercase labels, brand-700 kicker,
   white surface with a soft shadow instead of a flat border. */
.pb-lead-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 0.5rem;
  padding: 1.25rem;
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(0, 0, 0, 0.05);
}
body.pb-mode-dark .pb-lead-card {
  background: var(--pb-surface);
  border-color: var(--pb-line);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}
.pb-lead-eyebrow {
  font-family: var(--pb-font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--pb-brand-700);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.375rem;
}
.pb-lead-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--pb-ink);
  line-height: 1.2;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.pb-lead-form label {
  display: block;
  margin-bottom: 0.625rem;
}
.pb-lead-form label > span {
  display: block;
  font-family: var(--pb-font-sans);
  font-size: 0.625rem;
  font-weight: 700;
  color: #334155;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.pb-lead-form input,
.pb-lead-form select {
  width: 100%;
  padding: 0.5rem 0.625rem;
  border: 1px solid var(--pb-line);
  border-radius: 0.25rem;
  background: #ffffff;
  color: var(--pb-ink);
  font-family: var(--pb-font-sans);
  font-size: 0.875rem;
}
body.pb-mode-dark .pb-lead-form input,
body.pb-mode-dark .pb-lead-form select {
  background: var(--pb-bg);
}
.pb-lead-form input:focus,
.pb-lead-form select:focus {
  outline: none;
  border-color: var(--pb-brand-500);
  box-shadow: 0 0 0 2px rgba(21, 130, 71, 0.25);
}
.pb-lead-form button {
  width: 100%;
  background: var(--pb-brand-600);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border: 0;
  border-radius: 0.25rem;
  font-family: var(--pb-font-sans);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background-color 0.15s ease;
  margin-top: 0.25rem;
}
.pb-lead-form button:hover { background: var(--pb-brand-700); }
.pb-lead-form button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.pb-lead-fineprint {
  font-family: var(--pb-font-sans);
  font-size: 0.6875rem;
  color: #334155;
  line-height: 1.35;
  margin: 0.75rem 0 0;
}
body.pb-mode-dark .pb-lead-fineprint { color: var(--pb-ink-muted); }
.pb-lead-status:empty { display: none; }
.pb-lead-status {
  margin-top: 0.75rem;
  padding: 0.5rem 0.625rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  line-height: 1.4;
}
.pb-lead-status[data-kind="ok"] {
  background: rgba(34, 182, 79, 0.10);
  color: var(--pb-brand-700);
  border: 1px solid rgba(34, 182, 79, 0.25);
}
.pb-lead-status[data-kind="err"] {
  background: rgba(220, 38, 38, 0.08);
  color: #b91c1c;
  border: 1px solid rgba(220, 38, 38, 0.25);
}
body.pb-mode-dark .pb-lead-status[data-kind="err"] { color: #fca5a5; }
/* Top-of-post byline. Matches the tadalafil storefront's "meta" rows
   (e.g. product-overview): sans, sentence-case, small, slate-500.
   Multi-author bylines can wrap; keep line-height comfortable. */
.pb-single-meta {
  font-family: var(--pb-font-sans);
  font-size: 0.8125rem;              /* 13px - hero storefront meta */
  color: #64748b;                    /* slate-500 - hero storefront muted */
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 2rem;
  line-height: 1.6;
}
body.pb-mode-dark .pb-single-meta { color: var(--pb-ink-muted); }
.pb-single-meta a {
  color: #334155;                    /* slate-700 - hero storefront ink-soft */
  border-bottom: 1px solid var(--pb-line);
  padding-bottom: 1px;
  font-weight: 500;
}
body.pb-mode-dark .pb-single-meta a { color: var(--pb-ink-soft); }
.pb-single-meta a:hover {
  color: var(--pb-brand-700);        /* hero storefront hover green */
  border-color: var(--pb-brand-700);
}
body.pb-mode-dark .pb-single-meta a:hover { color: var(--pb-accent); border-color: var(--pb-accent); }

/* Bottom-of-post author box - card grid. Typography aligned with
   tadalafil storefront: sans throughout, slate-600 uppercase eyebrow
   (like a fieldset legend), semibold ink name at 1.125rem, slate-500
   sans (NOT mono) credentials, slate-600 bio. */
.pb-author-box {
  margin-top: 3rem;
  padding: 1.75rem;
  background: #f8fafc;              /* slate-50 - hero storefront surface */
  border: 1px solid var(--pb-line);
  border-radius: 0.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
body.pb-mode-dark .pb-author-box { background: var(--pb-surface); }
@media (min-width: 640px) {
  .pb-author-box { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.75rem; }
}
.pb-author-role {
  font-family: var(--pb-font-sans);
  font-size: 0.6875rem;              /* 11px - hero eyebrow size */
  font-weight: 600;
  color: #475569;                    /* slate-600 - hero fieldset-legend colour */
  text-transform: uppercase;
  letter-spacing: 0.08em;            /* hero tracking-wide */
  margin-bottom: 0.5rem;
}
body.pb-mode-dark .pb-author-role { color: var(--pb-ink-muted); }
.pb-author-name {
  font-family: var(--pb-font-sans);
  font-weight: 600;                  /* semibold */
  color: var(--pb-ink);
  font-size: 1.125rem;               /* text-lg - hero card title size */
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 0.25rem;
}
.pb-author-name a {
  color: var(--pb-ink);
  text-decoration: none;
  border-bottom: none;
  padding-bottom: 0;
}
.pb-author-name a:hover { color: var(--pb-brand-700); }
body.pb-mode-dark .pb-author-name a:hover { color: var(--pb-accent); }
.pb-author-linkedin-icon {
  display: inline-block;
  margin-left: 0.25rem;
  font-size: 0.75em;
  color: #94a3b8;                    /* slate-400 */
  transform: translateY(-1px);
}
.pb-author-creds {
  font-family: var(--pb-font-sans);
  font-size: 0.8125rem;              /* 13px */
  color: #64748b;                    /* slate-500 */
  letter-spacing: 0;
  margin-bottom: 0.5rem;
  line-height: 1.45;
}
body.pb-mode-dark .pb-author-creds { color: var(--pb-ink-muted); }
.pb-author-bio {
  font-family: var(--pb-font-sans);
  font-size: 0.875rem;               /* text-sm */
  color: #475569;                    /* slate-600 */
  line-height: 1.6;
}
body.pb-mode-dark .pb-author-bio { color: var(--pb-ink-soft); }

.pb-featured-image {
  margin: 2rem 0;
  border: 1px solid var(--pb-line);
  border-radius: 0.5rem;
  overflow: hidden;
}
.pb-featured-image img { display: block; max-width: 100%; height: auto; }

.pb-content {
  color: var(--pb-ink-soft);
  font-size: 1.0625rem;
  line-height: 1.75;
}
.pb-content h2, .pb-content h3, .pb-content h4 {
  color: var(--pb-ink);
  letter-spacing: -0.01em;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
}
.pb-content h2 { font-size: 1.625rem; }
.pb-content h3 { font-size: 1.25rem; }
.pb-content h4 { font-size: 1.0625rem; }
.pb-content p { margin: 1.125rem 0; }
.pb-content a { text-decoration: underline; text-underline-offset: 3px; color: var(--pb-accent); }
.pb-content ul, .pb-content ol { padding-left: 1.5rem; margin: 1rem 0; }
.pb-content li { margin: 0.375rem 0; }
.pb-content blockquote {
  border-left: 3px solid var(--pb-accent);
  padding: 0.25rem 0 0.25rem 1rem;
  margin: 1.5rem 0;
  color: var(--pb-ink-muted);
  font-style: italic;
}
.pb-content code {
  background: var(--pb-code-bg);
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  font-size: 0.875em;
  border: 1px solid var(--pb-line);
  color: var(--pb-ink);
}
.pb-content pre {
  background: var(--pb-pre-bg);
  color: var(--pb-pre-ink);
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--pb-line);
  overflow-x: auto;
  font-size: 0.875em;
  line-height: 1.55;
}
.pb-content pre code { background: transparent; border: 0; padding: 0; color: inherit; }
.pb-content img {
  border-radius: 0.5rem;
  border: 1px solid var(--pb-line);
  margin: 1.75rem 0;
  display: block;
}
.pb-content hr {
  border: 0;
  border-top: 1px solid var(--pb-line);
  margin: 2.5rem 0;
}

/* Post navigation */
.pb-post-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--pb-line);
  font-size: 0.875rem;
}
.pb-post-nav a { font-weight: 500; }
.pb-back-to-site {
  display: inline-block;
  margin-top: 2rem;
  color: var(--pb-accent);
  font-weight: 500;
  font-size: 0.875rem;
}

/* Pagination */
.pb-pagination {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--pb-line);
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.pb-pagination a, .pb-pagination span {
  display: inline-block;
  padding: 0.5rem 0.875rem;
  border: 1px solid var(--pb-line);
  border-radius: 0.25rem;
  color: var(--pb-ink-soft);
  font-size: 0.875rem;
  text-decoration: none;
}
.pb-pagination a:hover { border-color: var(--pb-accent); color: var(--pb-accent); }
.pb-pagination .current {
  background: var(--pb-brand-600);
  color: #ffffff;
  border-color: var(--pb-brand-600);
}

/* ================================================================
   Footer - mirrors Footer template on both storefronts.
   Light mode: bg-slate-900. Dark mode: bg-surface.
   ================================================================ */
.pb-footer {
  background: var(--pb-footer-bg);
  color: var(--pb-footer-ink);
  border-top: 1px solid var(--pb-line);
  margin-top: 4rem;
}
.pb-footer-inner {
  max-width: var(--pb-container-max);
  margin: 0 auto;
  padding: 3.5rem 1rem 2rem;
}
@media (min-width: 512px) { .pb-footer-inner { padding: 3.5rem 1.5rem 2rem; } }
.pb-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .pb-footer-grid { grid-template-columns: 5fr 3fr 3fr; gap: 2rem; }
}

.pb-footer-logo {
  display: inline-block;
  margin-bottom: 1rem;
}
/* Light mode footer needs a card behind the logo (matches tadalafil site) */
body.pb-mode-light .pb-footer-logo {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
}
.pb-footer-logo img { height: 36px; width: auto; display: block; }

.pb-footer h4 {
  font-size: 0.75rem;
  font-family: var(--pb-font-mono);
  font-weight: 600;
  color: var(--pb-ink);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 0.75rem;
}
/* Light mode: footer bg is dark slate, so h4 needs to be white not ink */
body.pb-mode-light .pb-footer h4 { color: #ffffff; }
.pb-footer a { color: var(--pb-footer-ink); font-size: 0.875rem; }
.pb-footer a:hover { color: var(--pb-accent); }
body.pb-nav-mono .pb-footer a { font-family: var(--pb-font-mono); }

.pb-footer-compliance {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--pb-footer-ink);
  max-width: 28rem;
  margin: 1rem 0 0.75rem;
}
.pb-footer-fineprint {
  font-size: 0.75rem;
  color: var(--pb-footer-ink-quiet);
  max-width: 28rem;
  line-height: 1.5;
}
body.pb-nav-mono .pb-footer-fineprint { font-family: var(--pb-font-mono); }

.pb-footer ul { list-style: none; margin: 0; padding: 0; }
.pb-footer li { margin: 0 0 0.75rem; }
.pb-footer-note {
  font-size: 0.75rem;
  color: var(--pb-footer-ink-quiet);
  margin-top: 0.125rem;
}
.pb-footer-hours {
  font-size: 0.75rem;
  color: var(--pb-footer-ink-quiet);
  padding-top: 0.5rem;
}
body.pb-nav-mono .pb-footer-hours { font-family: var(--pb-font-mono); }

.pb-footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--pb-footer-line);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--pb-footer-ink-quiet);
}
body.pb-nav-mono .pb-footer-bottom { font-family: var(--pb-font-mono); }
.pb-footer-bottom nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
body.pb-nav-mono .pb-footer-bottom nav {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
