/*
 * Pet Cost Calculator — Site-Wide Styles
 * Header, Footer, Navigation, Blog
 * Loaded on every page via pcc_enqueue_site_assets()
 * Version: 1.0.0
 */

/* ══════════════════════════════════════════════
   DESIGN TOKENS (global — not scoped)
══════════════════════════════════════════════ */
:root {
  --pcc-navy:        #0d1b2a;
  --pcc-navy-mid:    #1a2e42;
  --pcc-blue:        #1d5fa8;
  --pcc-blue-mid:    #2471c8;
  --pcc-blue-pale:   #e8f1fb;
  --pcc-slate:       #4a5568;
  --pcc-slate-mid:   #718096;
  --pcc-slate-light: #a0aec0;
  --pcc-white:       #ffffff;
  --pcc-off-white:   #f8fafc;
  --pcc-surface:     #f1f5f9;
  --pcc-border:      #e2e8f0;
  --pcc-green:       #0f7b55;
  --pcc-green-pale:  #e6f7f2;
  --pcc-amber:       #b45309;
  --pcc-red:         #c53030;
  --pcc-radius:      14px;
  --pcc-radius-lg:   20px;
  --pcc-shadow:      0 4px 16px rgba(13,27,42,.08), 0 2px 6px rgba(13,27,42,.04);
  --pcc-shadow-lg:   0 12px 40px rgba(13,27,42,.12);
  --pcc-header-h:    64px;

  --pcc-font-display: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --pcc-font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --pcc-font-ui: var(--pcc-font-body);
  --pcc-text-xs: clamp(0.75rem, 0.73rem + 0.08vw, 0.8125rem);
  --pcc-text-sm: clamp(0.9375rem, 0.9rem + 0.15vw, 1rem);
  --pcc-text-base: clamp(1rem, 0.97rem + 0.25vw, 1.125rem);
  --pcc-text-md: clamp(1.125rem, 1.04rem + 0.35vw, 1.25rem);
  --pcc-text-lg: clamp(1.375rem, 1.22rem + 0.7vw, 1.875rem);
  --pcc-text-xl: clamp(1.875rem, 1.55rem + 1.2vw, 2.875rem);
  --pcc-text-2xl: clamp(2.5rem, 2.05rem + 1.8vw, 4rem);
  --pcc-text-3xl: clamp(3rem, 2.3rem + 2.6vw, 5rem);
  --pcc-leading-body: 1.58;
  --pcc-leading-heading: 1.02;
  --pcc-tracking-tight: -0.05em;
  --pcc-tracking-medium: -0.03em;
}


/* ══════════════════════════════════════════════
   RESET BODY OFFSET (for sticky header)
══════════════════════════════════════════════ */
body.pcc-site {
  font-family: var(--pcc-font-body);
  background: var(--pcc-off-white);
  color: var(--pcc-navy);
  font-size: var(--pcc-text-base);
  line-height: var(--pcc-leading-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ══════════════════════════════════════════════
   LOGO
══════════════════════════════════════════════ */
.pcc-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--pcc-font-body);
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  flex-shrink: 0;
}
.pcc-logo__paw { font-size: 20px; line-height: 1; }
.pcc-logo__serif {
  font-family: var(--pcc-font-display);
  font-style: italic;
  color: #60a5fa;
}

/* ══════════════════════════════════════════════
   SITE HEADER
══════════════════════════════════════════════ */
.pcc-site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--pcc-header-h);
  background: var(--pcc-navy);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}

.pcc-site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* ── Desktop nav ── */
.pcc-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.pcc-nav__link {
  color: #94a3b8;
  font-size: 13.5px;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 9px;
  text-decoration: none;
  transition: all .15s;
  white-space: nowrap;
  font-family: var(--pcc-font-body);
}
.pcc-nav__link:hover { color: #fff; background: rgba(255,255,255,.08); }
.pcc-nav__link--active { color: #fff; background: rgba(255,255,255,.06); }

.pcc-nav__cta {
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
  padding: 8px 18px;
  background: var(--pcc-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: background .15s, transform .1s;
  font-family: var(--pcc-font-body);
  white-space: nowrap;
}
.pcc-nav__cta:hover { background: var(--pcc-blue-mid); transform: translateY(-1px); }

/* ── Hamburger button ── */
.pcc-nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
}
.pcc-nav__burger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .25s;
}
.pcc-nav__burger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pcc-nav__burger--open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.pcc-nav__burger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile drawer ── */
.pcc-nav__drawer {
  display: none;
  flex-direction: column;
  background: var(--pcc-navy-mid);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 8px 0 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.pcc-nav__drawer--open {
  max-height: 400px;
}
.pcc-nav__drawer-link {
  display: block;
  color: #94a3b8;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  text-decoration: none;
  transition: color .15s, background .15s;
  font-family: var(--pcc-font-body);
}
.pcc-nav__drawer-link:hover { color: #fff; background: rgba(255,255,255,.04); }
.pcc-nav__drawer-cta {
  margin: 8px 16px 0;
  padding: 12px 24px;
  background: var(--pcc-blue);
  color: #fff !important;
  border-radius: 10px;
  text-align: center;
}

/* ── Mobile breakpoint ── */
@media (max-width: 768px) {
  .pcc-nav { display: none; }
  .pcc-nav__burger { display: flex; }
  .pcc-site-header { height: auto; min-height: var(--pcc-header-h); }
  .pcc-site-header__inner { height: var(--pcc-header-h); }
  .pcc-nav__drawer { display: flex; }
}

/* ══════════════════════════════════════════════
   SITE FOOTER
══════════════════════════════════════════════ */
.pcc-site-footer {
  background: #081528;
  padding: 40px 28px 28px;
  margin-top: 0;
}

.pcc-site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pcc-site-footer__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px;
  margin-bottom: 28px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(148,163,184,.14);
  border-radius: 24px;
}
.pcc-site-footer__eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #93c5fd;
  margin-bottom: 10px;
}
.pcc-site-footer__cta-title {
  margin: 0;
  max-width: 640px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.05;
  letter-spacing: -.03em;
  color: #f8fbff;
  font-family: var(--pcc-font-display);
}
.pcc-site-footer__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  background: #1d5fa8;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(29,95,168,.25);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.pcc-site-footer__cta-btn:hover {
  transform: translateY(-1px);
  background: #174f8d;
  box-shadow: 0 16px 34px rgba(29,95,168,.32);
}

.pcc-site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(4, minmax(0, .7fr));
  gap: 28px;
  padding: 12px 0 32px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 20px;
}
.pcc-site-footer__col--brand { padding-right: 14px; }
@media (max-width: 980px) {
  .pcc-site-footer__cta,
  .pcc-site-footer__top { grid-template-columns: 1fr 1fr; }
  .pcc-site-footer__cta { flex-direction: column; align-items: flex-start; }
  .pcc-site-footer__top { display: grid; }
}
@media (max-width: 640px) {
  .pcc-site-footer {
    padding: 32px 24px 24px;
    box-sizing: border-box;
  }
  .pcc-site-footer__inner {
    width: 100%;
    box-sizing: border-box;
  }
  .pcc-site-footer__cta {
    padding: 22px 20px;
    border-radius: 20px;
  }
  .pcc-site-footer__cta-btn {
    width: 100%;
  }
  .pcc-site-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .pcc-site-footer__bottom {
    gap: 14px;
  }
}

@media (max-width: 520px) {
  .pcc-site-footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .pcc-site-footer__top {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .pcc-site-footer__copy,
  .pcc-site-footer__legal {
    width: 100%;
  }
}

.pcc-logo--light .pcc-logo__text { color: #fff; }
.pcc-site-footer__tagline {
  font-size: 15px;
  color: #c2cfde;
  line-height: 1.75;
  margin-top: 14px;
  max-width: 30ch;
}
.pcc-site-footer__badges { display: none; }
.pcc-footer-badge { display: none; }

.pcc-site-footer__col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #93c5fd;
  margin-bottom: 14px;
}
.pcc-site-footer__link {
  display: block;
  font-size: 15px;
  color: #e2e8f0;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color .15s ease, transform .15s ease;
  font-family: var(--pcc-font-body);
}
.pcc-site-footer__link:hover {
  color: #ffffff;
  transform: translateX(1px);
}

.pcc-site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.pcc-site-footer__copy {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.7;
}
.pcc-site-footer__legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.pcc-site-footer__legal a {
  font-size: 13px;
  color: #cbd5e1;
  text-decoration: none;
  transition: color .15s ease;
  font-family: var(--pcc-font-body);
}
.pcc-site-footer__legal a:hover { color: #ffffff; }
/* ══════════════════════════════════════════════
   PAGE HERO (shared across all site pages)
══════════════════════════════════════════════ */
.pcc-page-hero {
  background: var(--pcc-navy);
  padding: 56px 28px 52px;
  position: relative;
  overflow: hidden;
}
.pcc-page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(29,95,168,.28) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(15,123,85,.12) 0%, transparent 50%);
}
.pcc-page-hero__inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.pcc-page-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #94a3b8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.pcc-page-hero h1 {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
  margin-bottom: 14px;
  line-height: 1.15;
  font-family: var(--pcc-font-body);
}
.pcc-page-hero__serif {
  font-family: var(--pcc-font-display);
  font-style: italic;
  color: #60a5fa;
}
.pcc-page-hero p {
  font-size: 16px;
  color: #94a3b8;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── Breadcrumb ── */
.pcc-breadcrumb {
  background: var(--pcc-navy);
  border-bottom: none;
  padding: 10px 28px;
}
.pcc-breadcrumb__inner {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 12px;
  color: #64748b;
  font-family: var(--pcc-font-body);
}
.pcc-breadcrumb a {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 600;
}
.pcc-breadcrumb span { margin: 0 6px; color: #475569; }

/* ══════════════════════════════════════════════
   CONTENT CARDS (About, Legal pages)
══════════════════════════════════════════════ */
.pcc-content-wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 52px 28px 72px;
}
.pcc-content-wrap--wide { max-width: 1200px; }

.pcc-card {
  background: var(--pcc-white);
  border: 1px solid var(--pcc-border);
  border-radius: var(--pcc-radius-lg);
  padding: 36px;
  box-shadow: var(--pcc-shadow);
  margin-bottom: 22px;
}
.pcc-card h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--pcc-navy);
  letter-spacing: -.01em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--pcc-blue-pale);
  font-family: var(--pcc-font-body);
}
.pcc-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--pcc-navy);
  margin: 20px 0 8px;
  font-family: var(--pcc-font-body);
}
.pcc-card p {
  font-size: 14px;
  color: var(--pcc-slate);
  line-height: 1.85;
  margin-bottom: 12px;
}
.pcc-card ul, .pcc-card ol {
  padding-left: 20px;
  margin-bottom: 14px;
}
.pcc-card li {
  font-size: 14px;
  color: var(--pcc-slate);
  line-height: 1.8;
  margin-bottom: 6px;
}
.pcc-card a { color: var(--pcc-blue-mid); font-weight: 600; text-decoration: none; }
.pcc-card a:hover { text-decoration: underline; }

/* ── Highlight boxes ── */
.pcc-highlight {
  background: var(--pcc-blue-pale);
  border: 1px solid #c3daf7;
  border-left: 4px solid var(--pcc-blue);
  border-radius: var(--pcc-radius);
  padding: 16px 20px;
  margin: 16px 0;
}
.pcc-highlight p { color: var(--pcc-blue); margin: 0; font-size: 14px; }
.pcc-highlight--green { background: var(--pcc-green-pale); border-color: #b2dfce; border-left-color: var(--pcc-green); }
.pcc-highlight--green p { color: var(--pcc-green); }
.pcc-highlight--amber { background: #fef3c7; border-color: #fde68a; border-left-color: var(--pcc-amber); }
.pcc-highlight--amber p { color: var(--pcc-amber); }

/* ── Stat grid ── */
.pcc-stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin: 18px 0;
}
.pcc-stat-box {
  background: var(--pcc-navy);
  border-radius: var(--pcc-radius);
  padding: 20px;
  text-align: center;
}
.pcc-stat-num { font-size: 28px; font-weight: 800; color: #60a5fa; }
.pcc-stat-lbl { font-size: 11px; color: #94a3b8; margin-top: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }

/* ── Value grid ── */
.pcc-value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 14px;
  margin-top: 16px;
}
.pcc-value-card {
  background: var(--pcc-surface);
  border: 1.5px solid var(--pcc-border);
  border-radius: var(--pcc-radius);
  padding: 20px;
}
.pcc-value-icon { font-size: 24px; margin-bottom: 8px; }
.pcc-value-title { font-size: 13px; font-weight: 700; color: var(--pcc-navy); margin-bottom: 5px; }
.pcc-value-desc { font-size: 12px; color: var(--pcc-slate-mid); line-height: 1.6; }

/* ── Legal pages ── */
.pcc-legal-meta {
  font-size: 12px;
  color: var(--pcc-slate-mid);
  background: var(--pcc-surface);
  border-radius: 10px;
  padding: 13px 18px;
  margin-bottom: 28px;
  border: 1px solid var(--pcc-border);
}
.pcc-legal h2 {
  font-size: 18px;
  font-weight: 800;
  color: var(--pcc-navy);
  margin: 32px 0 12px;
  padding-bottom: 10px;
  border-bottom: 1.5px solid var(--pcc-border);
  font-family: var(--pcc-font-body);
}
.pcc-legal p, .pcc-legal li {
  font-size: 14px;
  color: var(--pcc-slate);
  line-height: 1.85;
  margin-bottom: 10px;
}
.pcc-legal ul { padding-left: 20px; margin-bottom: 14px; }
.pcc-legal a { color: var(--pcc-blue-mid); font-weight: 600; text-decoration: none; }

/* ══════════════════════════════════════════════
   BLOG — Archive (list of posts)
══════════════════════════════════════════════ */
.pcc-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.pcc-post-card {
  background: var(--pcc-white);
  border: 1px solid var(--pcc-border);
  border-radius: var(--pcc-radius-lg);
  overflow: hidden;
  box-shadow: var(--pcc-shadow);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.pcc-post-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--pcc-shadow-lg);
}

.pcc-post-card__thumb {
  height: 180px;
  background: var(--pcc-navy);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pcc-post-card__thumb-emoji { font-size: 56px; opacity: .7; }
.pcc-post-card__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}
.pcc-post-card__cat {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--pcc-blue);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.pcc-post-card__body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pcc-post-card__date {
  font-size: 11px;
  color: var(--pcc-slate-mid);
  font-weight: 600;
  margin-bottom: 8px;
}
.pcc-post-card__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--pcc-navy);
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: -.01em;
  font-family: var(--pcc-font-body);
}
.pcc-post-card__title a {
  color: inherit;
  text-decoration: none;
}
.pcc-post-card__title a:hover { color: var(--pcc-blue); }
.pcc-post-card__excerpt {
  font-size: 13px;
  color: var(--pcc-slate);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
}
.pcc-post-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--pcc-border);
}
.pcc-post-card__read {
  font-size: 12px;
  font-weight: 700;
  color: var(--pcc-blue-mid);
  text-decoration: none;
  transition: color .15s;
}
.pcc-post-card__read:hover { color: var(--pcc-blue); }
.pcc-post-card__time {
  font-size: 11px;
  color: var(--pcc-slate-light);
}

/* ── Featured post (top of blog) ── */
.pcc-post-featured {
  background: var(--pcc-white);
  border: 1px solid var(--pcc-border);
  border-radius: var(--pcc-radius-lg);
  overflow: hidden;
  box-shadow: var(--pcc-shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 36px;
}
@media (max-width: 640px) { .pcc-post-featured { grid-template-columns: 1fr; } }

.pcc-post-featured__thumb {
  background: var(--pcc-navy);
  min-height: 280px;
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
  position: relative; overflow: hidden;
}
.pcc-post-featured__thumb img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}
.pcc-post-featured__body {
  padding: 36px;
  display: flex; flex-direction: column; justify-content: center;
}
.pcc-post-featured__label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; color: var(--pcc-blue); margin-bottom: 10px;
}
.pcc-post-featured__title {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  color: var(--pcc-navy);
  letter-spacing: -.02em;
  line-height: 1.25;
  margin-bottom: 12px;
  font-family: var(--pcc-font-body);
}
.pcc-post-featured__title a { color: inherit; text-decoration: none; }
.pcc-post-featured__title a:hover { color: var(--pcc-blue); }
.pcc-post-featured__excerpt {
  font-size: 14px; color: var(--pcc-slate); line-height: 1.75;
  margin-bottom: 20px;
}
.pcc-post-featured__cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--pcc-navy); color: #fff;
  font-size: 13px; font-weight: 700;
  padding: 11px 20px; border-radius: 10px;
  text-decoration: none; transition: background .15s;
  align-self: flex-start;
}
.pcc-post-featured__cta:hover { background: var(--pcc-navy-mid, #1a2e42); }

/* ── Blog sidebar categories ── */
.pcc-blog-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 28px;
  align-items: start;
}
@media (max-width: 900px) { .pcc-blog-layout { grid-template-columns: 1fr; } }

.pcc-blog-sidebar-card {
  background: var(--pcc-white);
  border: 1px solid var(--pcc-border);
  border-radius: var(--pcc-radius);
  padding: 22px;
  box-shadow: var(--pcc-shadow);
  margin-bottom: 18px;
}
.pcc-blog-sidebar-card h3 {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; color: var(--pcc-slate-mid); margin-bottom: 14px;
}
.pcc-blog-cat-link {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px solid var(--pcc-border);
  text-decoration: none; color: var(--pcc-slate);
  font-size: 13px; font-weight: 600;
  transition: color .15s;
}
.pcc-blog-cat-link:last-child { border-bottom: none; }
.pcc-blog-cat-link:hover { color: var(--pcc-blue); }
.pcc-blog-cat-count {
  background: var(--pcc-surface); color: var(--pcc-slate-mid);
  font-size: 11px; font-weight: 700;
  padding: 2px 8px; border-radius: 20px;
}

/* ── Single blog post ── */
.pcc-post-single {
  max-width: 760px;
  margin: 0 auto;
  padding: 52px 28px 80px;
}
.pcc-post-single__header { margin-bottom: 36px; }
.pcc-post-single__cat {
  display: inline-block;
  background: var(--pcc-blue-pale);
  color: var(--pcc-blue);
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; padding: 4px 12px; border-radius: 20px;
  margin-bottom: 14px; text-decoration: none;
}
.pcc-post-single__title {
  font-size: clamp(26px, 5vw, 38px);
  font-weight: 800;
  color: var(--pcc-navy);
  letter-spacing: -.03em;
  line-height: 1.2;
  margin-bottom: 16px;
  font-family: var(--pcc-font-body);
}
.pcc-post-single__meta {
  display: flex; align-items: center; gap: 16px;
  font-size: 12px; color: var(--pcc-slate-mid);
  flex-wrap: wrap; margin-bottom: 28px;
}
.pcc-post-single__meta span { font-weight: 600; }
.pcc-post-single__thumb {
  border-radius: var(--pcc-radius-lg);
  overflow: hidden;
  background: var(--pcc-navy);
  height: 320px;
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
  margin-bottom: 40px;
}
.pcc-post-single__thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ── Post body typography ── */
.pcc-post-body { font-family: var(--pcc-font-body); }
.pcc-post-body p { font-size: 15px; color: var(--pcc-slate); line-height: 1.85; margin-bottom: 18px; }
.pcc-post-body h2 {
  font-size: 22px; font-weight: 800; color: var(--pcc-navy);
  letter-spacing: -.02em; margin: 40px 0 14px;
  padding-bottom: 10px; border-bottom: 2px solid var(--pcc-blue-pale);
}
.pcc-post-body h3 {
  font-size: 17px; font-weight: 700; color: var(--pcc-navy);
  margin: 28px 0 10px;
}
.pcc-post-body ul, .pcc-post-body ol { padding-left: 22px; margin-bottom: 18px; }
.pcc-post-body li { font-size: 15px; color: var(--pcc-slate); line-height: 1.8; margin-bottom: 6px; }
.pcc-post-body strong { color: var(--pcc-navy); font-weight: 700; }
.pcc-post-body a { color: var(--pcc-blue-mid); font-weight: 600; text-decoration: none; }
.pcc-post-body a:hover { text-decoration: underline; }
.pcc-post-body blockquote {
  border-left: 4px solid var(--pcc-blue);
  background: var(--pcc-blue-pale);
  padding: 16px 20px;
  border-radius: 0 var(--pcc-radius) var(--pcc-radius) 0;
  margin: 20px 0;
  font-style: italic;
  color: var(--pcc-blue);
}
.pcc-post-body table {
  width: 100%; border-collapse: collapse; margin: 20px 0;
  font-size: 14px; border-radius: var(--pcc-radius); overflow: hidden;
  border: 1px solid var(--pcc-border);
}
.pcc-post-body th {
  background: var(--pcc-navy); color: #fff;
  padding: 10px 14px; text-align: left; font-size: 12px;
  font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
}
.pcc-post-body td {
  padding: 10px 14px; border-bottom: 1px solid var(--pcc-border);
  color: var(--pcc-slate);
}
.pcc-post-body tr:nth-child(even) td { background: var(--pcc-surface); }

/* ── CTA box inside post ── */
.pcc-post-cta {
  background: var(--pcc-navy);
  border-radius: var(--pcc-radius-lg);
  padding: 32px;
  text-align: center;
  margin: 36px 0;
}
.pcc-post-cta h3 { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.pcc-post-cta p { font-size: 14px; color: #94a3b8; margin-bottom: 20px; }
.pcc-post-cta a {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--pcc-blue); color: #fff;
  font-size: 14px; font-weight: 700;
  padding: 13px 28px; border-radius: 12px;
  text-decoration: none; transition: background .15s;
}
.pcc-post-cta a:hover { background: var(--pcc-blue-mid); }

/* ── Related posts ── */
.pcc-related {
  border-top: 2px solid var(--pcc-border);
  padding-top: 40px;
  margin-top: 60px;
}
.pcc-related h2 {
  font-size: 18px; font-weight: 800; color: var(--pcc-navy);
  margin-bottom: 20px;
}

/* ══════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════ */
.pcc-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 700px) { .pcc-contact-grid { grid-template-columns: 1fr; } }

.pcc-contact-method {
  background: var(--pcc-surface);
  border: 1.5px solid var(--pcc-border);
  border-radius: var(--pcc-radius);
  padding: 20px;
  display: flex; gap: 14px; align-items: flex-start;
  margin-bottom: 12px;
}
.pcc-contact-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--pcc-navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.pcc-contact-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; color: var(--pcc-slate-mid); margin-bottom: 3px;
}
.pcc-contact-value { font-size: 14px; font-weight: 600; color: var(--pcc-navy); }
.pcc-contact-note { font-size: 12px; color: var(--pcc-slate-mid); margin-top: 2px; }

.pcc-form-wrap {
  background: var(--pcc-white);
  border: 1px solid var(--pcc-border);
  border-radius: var(--pcc-radius-lg);
  padding: 32px;
  box-shadow: var(--pcc-shadow);
}

/* ══════════════════════════════════════════════
   RESPONSIVE UTILITIES
══════════════════════════════════════════════ */
@media (max-width: 600px) {
  .pcc-content-wrap { padding: 32px 16px 56px; }
  .pcc-card { padding: 22px 18px; }
  .pcc-page-hero { padding: 40px 16px 36px; }
  .pcc-blog-grid { grid-template-columns: 1fr; }
  .pcc-post-single { padding: 32px 16px 60px; }
}

/* ── Hide WordPress admin bar on front-end ── */
#wpadminbar { display: none !important; }
html { margin-top: 0 !important; }

/* ═══════════════════════════════════════════════════════
   HOMEPAGE STYLES
   ═══════════════════════════════════════════════════════ */

/* ── Hero ── */
.home-hero {
  background: linear-gradient(135deg, #0f1f3d 0%, #1d5fa8 100%);
  padding: 90px 24px 80px;
  text-align: center;
}
.home-hero__inner { max-width: 760px; margin: 0 auto; }
.home-hero__badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  font-size: 13px; font-weight: 600;
  padding: 6px 16px; border-radius: 20px;
  margin-bottom: 24px; letter-spacing: 0.3px;
}
.home-hero__title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800; color: #fff;
  line-height: 1.15; margin: 0 0 20px;
}
.home-hero__serif { font-family: var(--pcc-font-display); font-style: italic; }
.home-hero__sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.82);
  line-height: 1.7; margin: 0 0 36px;
  max-width: 620px; margin-left: auto; margin-right: auto;
}
.home-hero__ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.home-hero__trust {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
  color: rgba(255,255,255,0.65); font-size: 13px; font-weight: 500;
}

/* ── Buttons ── */
.home-btn {
  display: inline-block; padding: 14px 28px;
  border-radius: 8px; font-weight: 700; font-size: 15px;
  text-decoration: none; transition: all 0.2s; cursor: pointer;
}
.home-btn--primary { background: #fff; color: #1d5fa8; }
.home-btn--primary:hover { background: #f0f4ff; transform: translateY(-1px); }
.home-btn--secondary { background: rgba(255,255,255,0.12); color: #fff; border: 1.5px solid rgba(255,255,255,0.35); }
.home-btn--secondary:hover { background: rgba(255,255,255,0.2); }
.home-btn--outline { background: transparent; color: #1d5fa8; border: 2px solid #1d5fa8; }
.home-btn--outline:hover { background: #1d5fa8; color: #fff; }
.home-btn--white { background: #fff; color: #1d5fa8; font-size: 16px; padding: 16px 36px; }
.home-btn--white:hover { background: #f0f4ff; }

/* ── Section wrapper ── */
.home-section__inner { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.home-section__title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: #1a202c; text-align: center; margin: 0 0 10px; }
.home-section__sub { text-align: center; color: #718096; font-size: 1rem; margin: 0 0 40px; }

/* ── Tools section ── */
.home-tools { padding: 72px 0; background: #f7f9fc; }
.home-tools__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.home-tool-card {
  display: flex; gap: 18px; align-items: flex-start;
  background: #fff; border: 1.5px solid #e2e8f0;
  border-radius: 14px; padding: 24px;
  text-decoration: none; color: inherit;
  transition: all 0.2s; box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.home-tool-card:hover { border-color: #1d5fa8; box-shadow: 0 8px 24px rgba(29,95,168,0.12); transform: translateY(-2px); }
.home-tool-card--featured { border-color: #1d5fa8; background: linear-gradient(135deg,#f0f6ff,#fff); }
.home-tool-card__icon { font-size: 2rem; flex-shrink: 0; }
.home-tool-card__label { font-size: 11px; font-weight: 700; color: #1d5fa8; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.home-tool-card h3 { font-size: 1.05rem; font-weight: 700; color: #1a202c; margin: 0 0 8px; }
.home-tool-card p { font-size: 14px; color: #718096; line-height: 1.6; margin: 0 0 12px; }
.home-tool-card__link { font-size: 13px; font-weight: 600; color: #1d5fa8; }

/* ── Breeds section ── */
.home-breeds { padding: 72px 0; background: #fff; }
.home-breeds__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 14px; }
.home-breed-card {
  display: flex; align-items: center; gap: 14px;
  background: #f7f9fc; border: 1.5px solid #e2e8f0;
  border-radius: 12px; padding: 16px 18px;
  text-decoration: none; color: inherit;
  transition: all 0.18s;
}
.home-breed-card:hover { border-color: #1d5fa8; background: #f0f6ff; }
.home-breed-card__emoji { font-size: 2rem; flex-shrink: 0; }
.home-breed-card__body { flex: 1; }
.home-breed-card h3 { font-size: 0.95rem; font-weight: 700; color: #1a202c; margin: 0 0 3px; }
.home-breed-card__lifetime { font-size: 13px; font-weight: 600; color: #4a5568; }
.home-breed-card__risk { font-size: 12px; font-weight: 600; margin-top: 2px; }
.home-breed-card__arrow { color: #a0aec0; font-size: 1.2rem; }

/* ── Stats bar ── */
.home-stats { background: #0f1f3d; padding: 52px 0; }
.home-stats__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; text-align: center; }
.home-stat__num { font-size: 2.2rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.home-stat__label { font-size: 13px; color: rgba(255,255,255,0.65); font-weight: 500; }

/* ── Blog section ── */
.home-blog { padding: 72px 0; background: #f7f9fc; }
.home-blog__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.home-blog-card {
  background: #fff; border: 1.5px solid #e2e8f0;
  border-radius: 14px; overflow: hidden; text-decoration: none; color: inherit;
  transition: all 0.2s; box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: flex; flex-direction: column;
}
.home-blog-card:hover { border-color: #1d5fa8; box-shadow: 0 8px 24px rgba(29,95,168,0.1); transform: translateY(-2px); }
.home-blog-card__img { height: 160px; background-size: cover; background-position: center; }
.home-blog-card__body { padding: 20px; flex: 1; }
.home-blog-card__cat { font-size: 11px; font-weight: 700; color: #1d5fa8; text-transform: uppercase; letter-spacing: 0.5px; }
.home-blog-card h3 { font-size: 1rem; font-weight: 700; color: #1a202c; margin: 8px 0 8px; line-height: 1.4; }
.home-blog-card__meta { font-size: 12px; color: #a0aec0; }

/* ── Final CTA ── */
.home-cta { background: linear-gradient(135deg, #1d5fa8 0%, #0f3d7a 100%); padding: 80px 24px; }

@media (max-width: 640px) {
  .home-hero { padding: 60px 20px 52px; }
  .home-hero__ctas { flex-direction: column; align-items: center; }
  .home-hero__trust { gap: 12px; font-size: 12px; }
  .home-stats__grid { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════
   SINGLE POST / ARTICLE PAGE STYLES (sp-*)
   ═══════════════════════════════════════════════════════ */

/* ── Hero ── */
.sp-hero {
  background: linear-gradient(135deg, #0f1f3d 0%, #1d5fa8 100%);
  padding: 52px 24px 48px;
}
.sp-hero__inner {
  max-width: 820px;
  margin: 0 auto;
}
.sp-cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.sp-cat {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 4px 12px;
  border-radius: 20px;
  text-decoration: none;
}
.sp-serif { font-family: var(--pcc-font-display); font-style: italic; color: #60a5fa; }
.sp-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 16px;
}
.sp-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.sp-meta__item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.sp-meta__dot { color: rgba(255,255,255,0.4); }

/* ── Layout: 2-column with sidebar ── */
.sp-layout {
  background: #f7f9fc;
  padding: 40px 24px 60px;
}
.sp-layout__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}

/* ── Main content ── */
.sp-content {
  background: #fff;
  border-radius: 14px;
  padding: 36px 40px;
  border: 1px solid #e2e8f0;
  min-width: 0;
}
.sp-content h1, .sp-content h2, .sp-content h3 {
  color: #1a202c;
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 10px;
  line-height: 1.3;
}
.sp-content h2 {
  font-size: 1.35rem;
  padding-bottom: 10px;
  border-bottom: 2px solid #e2e8f0;
  margin-top: 36px;
}
.sp-content h3 { font-size: 1.1rem; color: #2d3748; }
.sp-content p { font-size: 15px; line-height: 1.75; color: #4a5568; margin: 0 0 16px; }
.sp-content ul, .sp-content ol {
  padding-left: 24px;
  margin: 0 0 16px;
}
.sp-content li { font-size: 15px; line-height: 1.7; color: #4a5568; margin-bottom: 6px; }
.sp-content strong { color: #1a202c; font-weight: 700; }
.sp-content a { color: #1d5fa8; text-decoration: underline; }
.sp-content a:hover { color: #0f3d7a; }
.sp-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}
.sp-content th {
  background: #0f1f3d;
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.sp-content td {
  padding: 10px 14px;
  border-bottom: 1px solid #e2e8f0;
  color: #4a5568;
}
.sp-content tr:nth-child(even) td { background: #f7f9fc; }
.sp-content blockquote {
  border-left: 4px solid #1d5fa8;
  background: #f0f6ff;
  padding: 14px 20px;
  border-radius: 0 8px 8px 0;
  margin: 20px 0;
  font-style: italic;
  color: #4a5568;
}

/* ── Sidebar ── */
.sp-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 90px;
}
.sp-sidebar__card {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 18px 20px;
}
.sp-sidebar__heading {
  font-size: 11px;
  font-weight: 700;
  color: #a0aec0;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 12px;
}
.sp-sidebar__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sp-sidebar__list li {
  margin-bottom: 0;
}
.sp-sidebar__list a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 13px;
  font-weight: 500;
  color: #2d3748;
  text-decoration: none;
  transition: color 0.15s;
}
.sp-sidebar__list a:hover { color: #1d5fa8; }
.sp-sidebar__list li:last-child a { border-bottom: none; }
.sp-sidebar__icon { font-size: 15px; }

/* ── Responsive ── */
@media (max-width: 860px) {
  .sp-layout__inner {
    grid-template-columns: 1fr;
  }
  .sp-sidebar {
    position: static;
  }
  .sp-content {
    padding: 24px 20px;
  }
}
@media (max-width: 600px) {
  .sp-hero { padding: 36px 16px 32px; }
  .sp-layout { padding: 24px 16px 40px; }
}


/* v72 consistency refinements */
.pcc-page-hero + .pcc-content-wrap,
.pcc-page-hero + #pcc-ins-wrapper,
.pcc-page-hero + .pcc-quiz-page {
  margin-top: 0;
}
.pcc-breadcrumb + .pcc-page-hero {
  margin-top: 0;
}

@media (max-width: 540px) {
  .pcc-page-hero {
    padding: 42px 16px 36px;
  }
  .pcc-page-hero h1 {
    font-size: 40px;
    line-height: 1.12;
  }
  .pcc-page-hero p {
    font-size: 15px;
  }
}


/* v73 full-control consistency pass */
.sp-hero--premium {
  background: radial-gradient(circle at 12% 35%, rgba(36,113,200,.16), transparent 34%), radial-gradient(circle at 88% 18%, rgba(16,163,116,.10), transparent 28%), linear-gradient(135deg, #07162b 0%, #0b2342 58%, #06253a 100%);
  padding: 12px 24px 36px;
}
.pcc-breadcrumb--hero { margin-bottom: 18px; }
.pcc-breadcrumb--hero .pcc-breadcrumb__inner { max-width: 100%; padding: 0; color: rgba(255,255,255,.72); }
.pcc-breadcrumb--hero a { color: #8ec2ff; }
.sp-hero__grid { display: grid; grid-template-columns: 1fr; gap: 18px; align-items: center; }
.sp-hero__grid--stats { grid-template-columns: minmax(0,1.3fr) minmax(300px,.9fr); }
.sp-desc { color: rgba(255,255,255,.82); font-size: 18px; line-height: 1.7; margin: 0 0 14px; max-width: 760px; }
.sp-hero-stats { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.sp-hero-stat { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 18px; padding: 16px 14px; min-height: 100px; display:flex; flex-direction:column; justify-content:center; }
.sp-hero-stat strong { display:block; color:#fff; font-size: 30px; line-height:1; margin-bottom:8px; font-weight:800; }
.sp-hero-stat span { color: rgba(255,255,255,.82); font-size: 13px; text-transform: uppercase; letter-spacing: .04em; }
@media (max-width: 980px) {
  .sp-hero__grid--stats { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .sp-hero--premium { padding: 10px 16px 28px; }
  .sp-desc { font-size: 15px; }
  .sp-hero-stat strong { font-size: 24px; }
}


/* ══════════════════════════════════════════════
   V74 FINAL UI UNIFICATION
══════════════════════════════════════════════ */
.pcc-breadcrumb--hero {
  background: transparent;
  padding: 0;
  border: 0;
  box-shadow: none;
}
.pcc-breadcrumb--hero .pcc-breadcrumb__inner {
  background: transparent !important;
  color: rgba(255,255,255,.72);
}
.pcc-breadcrumb--hero .pcc-breadcrumb__current {
  color: rgba(255,255,255,.82);
}
.sp-hero--premium .sp-hero__inner {
  max-width: 1120px;
}
.sp-hero__grid--center {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.sp-hero__grid--center .sp-desc,
.sp-hero__grid--center .sp-title {
  margin-left: auto;
  margin-right: auto;
}
.sp-hero__grid--center .sp-meta {
  justify-content: center;
}
.sp-hero--premium .sp-title {
  letter-spacing: -0.02em;
}
.sp-hero--premium .sp-cats {
  margin-bottom: 16px;
}
.sp-hero--premium .sp-cat {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #9fc4ff;
  padding: 7px 14px;
}
.sp-layout__inner > .sp-sidebar .sp-sidebar__card,
.sp-layout__inner > .sp-content {
  box-shadow: 0 8px 24px rgba(12, 28, 53, 0.06);
}
@media (max-width: 600px) {
  .sp-hero__grid--center {
    text-align: left;
  }
  .sp-hero__grid--center .sp-desc,
  .sp-hero__grid--center .sp-title {
    margin-left: 0;
    margin-right: 0;
  }
  .sp-hero__grid--center .sp-meta {
    justify-content: flex-start;
  }
}


/* ══════════════════════════════════════════════
   V75 FINAL POLISH PASS
══════════════════════════════════════════════ */
.sp-hero--premium {
  padding-top: 22px;
}
.sp-hero--premium .sp-hero__copy {
  max-width: 860px;
}
.sp-hero--premium .sp-title {
  max-width: 980px;
  margin-bottom: 14px;
}
.sp-hero--premium .sp-desc {
  max-width: 760px;
  margin-bottom: 16px;
}
.sp-hero--premium .sp-meta {
  opacity: .92;
}
.sp-layout__inner {
  align-items: start;
}
.sp-sidebar {
  display: grid;
  gap: 18px;
}
.sp-sidebar__card {
  background: linear-gradient(180deg, #0b1f37 0%, #102843 100%);
  border: 1px solid rgba(159,196,255,.16);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(9,22,39,.16);
  padding: 22px 22px 18px;
}
.sp-sidebar__heading {
  color: #9fc4ff;
  letter-spacing: .08em;
  font-size: 11px;
  margin-bottom: 14px;
}
.sp-sidebar__list {
  gap: 0;
}
.sp-sidebar__list li + li {
  margin-top: 0;
}
.sp-sidebar__list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.88);
  font-size: 14px;
  line-height: 1.5;
}
.sp-sidebar__list li:last-child a {
  border-bottom: 0;
}
.sp-sidebar__list a:hover {
  color: #8ec2ff;
}
.sp-sidebar__icon {
  width: 20px;
  text-align: center;
  opacity: .92;
}
.pcc-post-featured {
  background: linear-gradient(135deg, #0a1e35 0%, #0d2743 62%, #0c2239 100%);
  border: 1px solid rgba(159,196,255,.14);
  box-shadow: 0 24px 52px rgba(7,22,43,.18);
}
.pcc-post-featured__thumb {
  min-height: 340px;
}
.pcc-post-featured__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,22,40,.06) 0%, rgba(8,22,40,.28) 100%);
  pointer-events: none;
}
.pcc-post-featured__body {
  padding: 42px;
}
.pcc-post-featured__label {
  color: #9fc4ff;
}
.pcc-post-featured__title,
.pcc-post-featured__title a {
  color: #fff;
}
.pcc-post-featured__title {
  font-size: clamp(24px, 3vw, 32px);
}
.pcc-post-featured__excerpt {
  color: rgba(255,255,255,.82);
  font-size: 15px;
}
.pcc-post-featured__body > div[style*='color:var(--pcc-slate-mid)'] {
  color: rgba(255,255,255,.68) !important;
}
.pcc-post-featured__cta {
  background: #2b76d2;
}
.pcc-post-featured__cta:hover {
  background: #3d87df;
}
.pcc-blog-sidebar-card {
  background: linear-gradient(180deg, #0b1f37 0%, #102843 100%);
  border: 1px solid rgba(159,196,255,.16);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(9,22,39,.16);
  padding: 22px;
}
.pcc-blog-sidebar-card h3 {
  color: #9fc4ff;
  font-size: 11px;
}
.pcc-blog-cat-link {
  padding: 10px 0;
  border-bottom-color: rgba(255,255,255,.08);
  color: rgba(255,255,255,.88);
}
.pcc-blog-cat-link:hover {
  color: #8ec2ff;
}
.pcc-blog-cat-count {
  background: rgba(255,255,255,.08);
  color: #d8e8ff;
}
@media (max-width: 900px) {
  .pcc-post-featured__thumb {
    min-height: 260px;
  }
}
@media (max-width: 640px) {
  .pcc-post-featured__body {
    padding: 28px 22px;
  }
}


/* Luxury typography system */
.pcc-site h1,
.pcc-site h2,
.pcc-site h3,
.pcc-site h4,
.pcc-site .entry-title,
.pcc-site .wp-block-heading,
.pcc-site .home-hero__title,
.pcc-site .pcc-page-title,
.pcc-site .pcc-post-title,
.pcc-site .pcc-section-title {
  font-family: var(--pcc-font-display);
  letter-spacing: var(--pcc-tracking-tight);
  line-height: var(--pcc-leading-heading);
  font-weight: 700;
}

.pcc-site p,
.pcc-site li,
.pcc-site input,
.pcc-site select,
.pcc-site textarea,
.pcc-site button {
  font-family: var(--pcc-font-body);
}

.pcc-site p,
.pcc-site li,
.pcc-site .pcc-post-body {
  line-height: var(--pcc-leading-body);
}

.pcc-site .pcc-logo,
.pcc-site .pcc-nav__link,
.pcc-site .pcc-nav__drawer-link,
.pcc-site .pcc-nav__cta,
.pcc-site .pcc-chip,
.pcc-site .pcc-button,
.pcc-site .pcc-stat,
.pcc-site .pcc-table td,
.pcc-site .pcc-table th {
  font-family: var(--pcc-font-ui);
}

.pcc-site .pcc-logo__serif,
.pcc-site .home-hero__serif {
  font-family: var(--pcc-font-display);
  font-style: italic;
}

.pcc-site .pcc-price,
.pcc-site .pcc-total,
.pcc-site .pcc-amount,
.pcc-site .pcc-metric,
.pcc-site [data-cost],
.pcc-site .pcc-post-body table td:last-child {
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: 'tnum' 1, 'lnum' 1;
}

/* ══════════════════════════════════════════════
   SPACING + RHYTHM SYSTEM PATCH
   Gives content, cards, forms, and navigation a cleaner vertical rhythm.
══════════════════════════════════════════════ */
:root {
  --pcc-space-1: 4px;
  --pcc-space-2: 8px;
  --pcc-space-3: 12px;
  --pcc-space-4: 16px;
  --pcc-space-5: 20px;
  --pcc-space-6: 24px;
  --pcc-space-7: 32px;
  --pcc-space-8: 40px;
  --pcc-space-9: 48px;
  --pcc-space-10: 64px;
  --pcc-measure-reading: 68ch;
}

body.pcc-site {
  font-family: var(--pcc-font-body);
}

.pcc-page-hero,
.pcc-content-wrap,
.pcc-site-footer,
.pcc-sticky-bar,
.pcc-form-wrap,
.pcc-cta-card,
.pcc-post-featured,
.pcc-post-card,
.pcc-blog-sidebar-card,
.pcc-highlight,
.pcc-stat-box,
.pcc-value-card,
.pcc-report-card,
.pcc-contact-method {
  margin-bottom: var(--pcc-space-8);
}

.pcc-content-wrap {
  padding: var(--pcc-space-9) 28px calc(var(--pcc-space-10) + var(--pcc-space-1));
}

.pcc-page-hero__inner,
.pcc-site-header__inner,
.pcc-site-footer__top,
.pcc-cta-grid,
.pcc-value-grid,
.pcc-stats,
.pcc-blog-grid,
.pcc-contact-grid,
.pcc-reviewer-grid,
.pcc-update-grid {
  gap: var(--pcc-space-6);
}

.pcc-card,
.pcc-form-wrap,
.pcc-blog-sidebar-card,
.pcc-post-card,
.pcc-post-featured,
.pcc-cta-card,
.pcc-value-card,
.pcc-stat-box,
.pcc-contact-method {
  padding: var(--pcc-space-7);
}

.pcc-card h2,
.pcc-card h3,
.pcc-page-hero h1,
.pcc-post-card__title,
.pcc-post-featured__title,
.pcc-site-footer__col-title {
  margin-bottom: var(--pcc-space-4);
}

.pcc-card p,
.pcc-card li,
.pcc-site-footer__tagline,
.pcc-post-card__excerpt,
.pcc-post-featured__excerpt,
.pcc-legal,
.pcc-contact-note,
.pcc-value-desc {
  max-width: var(--pcc-measure-reading);
}

.pcc-card p,
.pcc-card ul,
.pcc-card ol,
.pcc-post-card__excerpt,
.pcc-post-featured__excerpt,
.pcc-site-footer__tagline,
.pcc-contact-note,
.pcc-legal,
.pcc-email-note {
  margin-bottom: var(--pcc-space-5);
}

.pcc-highlight,
.pcc-inline-info,
.pcc-legal-meta,
.pcc-footer-badge,
.pcc-blog-cat-link,
.pcc-page-hero__badge,
.pcc-cta-card__eyebrow {
  margin-bottom: var(--pcc-space-4);
}

.pcc-primary-btn,
.pcc-secondary-btn,
.pcc-nav__cta,
.pcc-post-featured__cta,
.pcc-post-card__read,
.pcc-pdf-btn,
.pcc-email-inline button,
.pcc-sticky-bar__btn {
  border-radius: 12px;
  letter-spacing: .01em;
}

.pcc-nav__link,
.pcc-nav__drawer-link,
.pcc-nav__cta,
.pcc-logo {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.pcc-nav__drawer-link,
.pcc-nav__drawer-cta {
  padding-top: var(--pcc-space-4);
  padding-bottom: var(--pcc-space-4);
}

.pcc-site-footer {
  padding: var(--pcc-space-10) 28px var(--pcc-space-7);
}

.pcc-site-footer__top {
  padding-bottom: var(--pcc-space-8);
  margin-bottom: var(--pcc-space-6);
}

.pcc-form-wrap input,
.pcc-form-wrap select,
.pcc-form-wrap textarea,
.pcc-email-inline input {
  min-height: 56px;
  padding: 14px 16px;
}

.pcc-contact-label,
.pcc-cta-card__eyebrow,
.pcc-page-hero__badge,
.pcc-blog-cat-link {
  letter-spacing: .08em;
}

@media (max-width: 600px) {
  .pcc-content-wrap {
    padding: var(--pcc-space-8) 16px var(--pcc-space-10);
  }

  .pcc-card,
  .pcc-form-wrap,
  .pcc-blog-sidebar-card,
  .pcc-post-card,
  .pcc-post-featured,
  .pcc-cta-card,
  .pcc-value-card,
  .pcc-stat-box,
  .pcc-contact-method {
    padding: var(--pcc-space-6);
  }

  .pcc-page-hero,
  .pcc-site-footer {
    margin-bottom: var(--pcc-space-7);
  }
}


/* v110 visual hierarchy cleanup */
.pcc-site-header { background: rgba(15,26,46,.96); backdrop-filter: blur(10px); }
.pcc-site-header__inner { max-width: 1240px; gap: 28px; }
.pcc-logo__text { color:#fff; }
.pcc-nav { margin-left: auto; gap: 4px; }
.pcc-nav__link { color:#c7d2e0; font-size:14px; padding:9px 14px; }
.pcc-nav__link:hover { background:rgba(255,255,255,.06); }
.pcc-nav__cta { margin-left: 14px; padding: 10px 18px; border-radius: 12px; font-size: 13px; box-shadow: 0 8px 20px rgba(29,95,168,.28); }
.pcc-nav__drawer-tools { margin-top: 6px; padding-top: 6px; border-top: 1px solid rgba(255,255,255,.06); }
.pcc-nav__drawer-link { padding: 13px 24px; }
.pcc-nav__drawer-cta { margin-top: 12px; font-weight: 800; }
@media (max-width: 960px) { .pcc-nav__link { padding: 8px 10px; font-size:13px; } }


/* ══════════════════════════════════════════════
   V111 readability, color-role, and motion system pass
══════════════════════════════════════════════ */
:root {
  --pcc-text-primary: var(--pcc-navy);
  --pcc-text-secondary: #435266;
  --pcc-text-tertiary: #6f8195;
  --pcc-surface-base: var(--pcc-white);
  --pcc-surface-muted: #f5f8fc;
  --pcc-surface-tint: #eef5fd;
  --pcc-border-strong: #cfd9e5;
  --pcc-ring: rgba(29,95,168,.18);
  --pcc-text-xs: clamp(0.8125rem, 0.79rem + 0.06vw, 0.875rem);
  --pcc-text-sm: clamp(0.9375rem, 0.91rem + 0.10vw, 1rem);
  --pcc-text-base: clamp(1rem, 0.98rem + 0.16vw, 1.0625rem);
  --pcc-text-lg: clamp(1.125rem, 1.08rem + 0.24vw, 1.25rem);
  --pcc-leading-body: 1.68;
}

body.pcc-site {
  color: var(--pcc-text-primary);
}

body.pcc-site a,
body.pcc-site button,
body.pcc-site input,
body.pcc-site select,
body.pcc-site textarea {
  transition: color .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

body.pcc-site a:focus-visible,
body.pcc-site button:focus-visible,
body.pcc-site input:focus-visible,
body.pcc-site select:focus-visible,
body.pcc-site textarea:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--pcc-ring);
}

.pcc-header-spacer {
  display: block;
  height: var(--pcc-header-h);
  min-height: var(--pcc-header-h);
  flex-shrink: 0;
  background: var(--pcc-navy);
}

.pcc-site-footer__tagline,
.pcc-site-footer__link,
.pcc-site-footer__copy,
.pcc-site-footer__legal a,
.pcc-post-card__excerpt,
.pcc-post-featured__excerpt,
.pcc-blog-cat-link,
.pcc-value-desc,
.pcc-contact-note,
.sp-content p,
.sp-content li,
.sp-content td,
.sp-content th,
.pcc-card p,
.pcc-card li,
.pcc-legal p,
.pcc-legal li {
  color: var(--pcc-text-secondary);
}

.pcc-page-hero__badge,
.pcc-footer-badge,
.pcc-site-footer__col-title,
.pcc-post-card__cat,
.pcc-post-card__date,
.pcc-post-featured__label,
.pcc-blog-cat-count,
.pcc-legal-meta,
.sp-cat,
.sp-sidebar__heading {
  font-size: 12px;
}

.pcc-breadcrumb__inner,
.pcc-post-card__time,
.pcc-post-card__read,
.pcc-site-footer__copy,
.pcc-site-footer__legal a,
.pcc-site-footer__tagline,
.pcc-card h3,
.sp-sidebar__list a,
.sp-meta,
.sp-hero-stat span,
.pcc-stat-lbl,
.pcc-contact-label,
.home-tool-card__label,
.home-blog-card__cat,
.home-blog-card__meta,
.home-hero__trust,
.pcc-value-title,
.pcc-legal-meta,
.pcc-blog-sidebar-card h3,
.pcc-blog-cat-link {
  font-size: var(--pcc-text-sm);
}

.pcc-card p,
.pcc-card li,
.pcc-legal p,
.pcc-legal li,
.pcc-value-desc,
.pcc-post-card__excerpt,
.pcc-post-featured__excerpt,
.sp-content p,
.sp-content li {
  font-size: var(--pcc-text-base);
  line-height: var(--pcc-leading-body);
}

.pcc-card,
.pcc-value-card,
.pcc-post-card,
.pcc-post-featured,
.pcc-blog-sidebar-card,
.sp-sidebar__card,
.pcc-source-item,
.pcc-surface-note,
.pcc-mini-card {
  background: var(--pcc-surface-base);
  border-color: var(--pcc-border);
}

.pcc-card:hover,
.pcc-value-card:hover,
.pcc-blog-sidebar-card:hover,
.pcc-post-card:hover,
.pcc-post-featured:hover,
.sp-sidebar__card:hover,
.pcc-source-item:hover,
.pcc-mini-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(13,27,42,.10);
  border-color: rgba(29,95,168,.18);
}

.pcc-post-card__thumb img,
.pcc-post-featured__thumb img {
  transition: transform .35s ease;
}
.pcc-post-card:hover .pcc-post-card__thumb img,
.pcc-post-featured:hover .pcc-post-featured__thumb img {
  transform: scale(1.03);
}

.pcc-nav__cta:hover,
.pcc-post-featured__cta:hover,
.pcc-button-primary:hover,
.pcc-nav__drawer-cta:hover,
.pcc-nav__drawer-link.pcc-nav__drawer-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(29,95,168,.22);
}

.pcc-site-footer__link--accent {
  color: #60a5fa;
  font-weight: 700;
}

.pcc-content-wrap--narrow {
  max-width: 880px;
}

.pcc-stack-lg > * + * {
  margin-top: 0;
}

.pcc-section-title {
  font-size: clamp(1.5rem, 1.35rem + .6vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--pcc-text-primary);
  margin: 0 0 20px;
  line-height: 1.18;
}
.pcc-section-title--tight { margin-bottom: 8px; }
.pcc-section-intro {
  font-size: var(--pcc-text-base);
  color: var(--pcc-text-secondary);
  line-height: var(--pcc-leading-body);
  margin: 0 0 20px;
  max-width: var(--pcc-measure-reading);
}
.pcc-kicker {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--pcc-blue);
  margin-bottom: 10px;
}
.pcc-kicker--success { color: var(--pcc-green); }
.pcc-kicker--amber { color: var(--pcc-amber); }
.pcc-kicker--light { color: #9fc4ff; }
.pcc-kicker--neutral { color: var(--pcc-text-secondary); }
.pcc-card-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--pcc-text-primary);
  margin-bottom: 10px;
  letter-spacing: -.02em;
}
.pcc-lead {
  font-size: var(--pcc-text-lg);
  line-height: 1.72;
  color: var(--pcc-text-secondary);
  max-width: var(--pcc-measure-reading);
  margin: 0;
}
.pcc-lead--strong { color: var(--pcc-text-primary); font-weight: 500; }
.pcc-lead--light { color: #d8e6f7; }
.pcc-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}
.pcc-icon-circle {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 16px;
  font-size: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--pcc-blue), var(--pcc-blue-mid));
}
.pcc-icon-circle--success { background: linear-gradient(135deg, var(--pcc-green), #10a374); }

.pcc-surface-note {
  border-width: 1.5px;
  border-style: solid;
  border-radius: 18px;
}
.pcc-surface-note--mission { border-left: 4px solid var(--pcc-blue); }
.pcc-surface-note--info {
  background: var(--pcc-surface-tint);
  border-color: #bfd3ed;
}
.pcc-surface-note--amber {
  background: #fff7eb;
  border-color: #ffd6a7;
}
.pcc-surface-note--dark {
  background: linear-gradient(180deg, #0b1f37 0%, #102843 100%);
  border-color: rgba(159,196,255,.16);
}
.pcc-surface-note--neutral {
  background: var(--pcc-surface-muted);
  border-color: var(--pcc-border-strong);
}

.pcc-list-compact,
.pcc-list-spacious {
  padding-left: 20px;
  margin: 0;
}
.pcc-list-compact li,
.pcc-list-spacious li {
  margin-bottom: 10px;
}
.pcc-list-spacious li {
  line-height: 1.95;
}

.pcc-step-list {
  display: grid;
  gap: 0;
}
.pcc-step {
  display: grid;
  grid-template-columns: 40px minmax(0,1fr);
  gap: 20px;
  padding: 0 0 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid #eef3f8;
}
.pcc-step__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pcc-blue), var(--pcc-blue-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
}
.pcc-step__title {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--pcc-text-primary);
  margin-bottom: 6px;
}
.pcc-step__body {
  margin: 0 0 10px;
}
.pcc-step__meta {
  display: inline-flex;
  align-items: center;
  background: var(--pcc-surface-tint);
  color: var(--pcc-blue);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
}

.pcc-breakdown {
  display: grid;
  gap: 14px;
  margin: 20px 0;
}
.pcc-breakdown__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: var(--pcc-text-sm);
  background: var(--pcc-surface-muted);
  color: var(--pcc-text-secondary);
}
.pcc-breakdown__row strong:last-child {
  color: var(--pcc-text-primary);
  font-size: var(--pcc-text-base);
}
.pcc-breakdown__row--highlight {
  background: linear-gradient(135deg, var(--pcc-blue), var(--pcc-blue-mid));
  color: #fff;
}
.pcc-breakdown__row--highlight strong {
  color: #fff !important;
}

.pcc-source-list {
  display: grid;
  gap: 12px;
}
.pcc-source-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid var(--pcc-border);
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: var(--pcc-shadow);
}
.pcc-source-item--stacked { gap: 0; }
.pcc-source-icon {
  color: var(--pcc-blue);
  font-size: 18px;
  line-height: 1;
  margin-top: 2px;
}
.pcc-source-link,
.pcc-text-link {
  color: var(--pcc-blue);
  font-size: var(--pcc-text-sm);
  font-weight: 800;
  text-decoration: none;
}
.pcc-source-link:hover,
.pcc-text-link:hover {
  color: var(--pcc-blue-mid);
}
.pcc-source-desc,
.pcc-source-inline {
  font-size: var(--pcc-text-sm);
  color: var(--pcc-text-secondary);
  line-height: 1.68;
}
.pcc-source-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.pcc-source-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.pcc-source-badge--primary {
  background: var(--pcc-surface-tint);
  color: var(--pcc-blue);
}
.pcc-source-badge--secondary {
  background: var(--pcc-surface-muted);
  color: var(--pcc-text-tertiary);
}

.pcc-mini-card {
  border: 1px solid var(--pcc-border);
  border-radius: 12px;
  padding: 16px;
  font-size: var(--pcc-text-sm);
  color: var(--pcc-text-secondary);
  line-height: 1.68;
}
.pcc-mini-card strong {
  color: var(--pcc-text-primary);
}

.pcc-rule-section {
  padding: 32px 0 0;
  border-top: 1px solid var(--pcc-border);
}
.pcc-rule-section--center {
  text-align: center;
}
.pcc-button-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--pcc-blue), var(--pcc-blue-mid));
  color: #fff;
  font-weight: 800;
  font-size: var(--pcc-text-sm);
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(29,95,168,.24);
}
.pcc-cta-inline {
  padding-top: 12px;
}

.pcc-reveal {
  opacity: 0;
  transform: translateY(12px);
}
.pcc-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 760px) {
  .pcc-grid-2,
  .pcc-reviewer-grid,
  .pcc-update-grid {
    grid-template-columns: 1fr;
  }
  .pcc-breakdown__row,
  .pcc-step {
    grid-template-columns: 1fr;
  }
  .pcc-breakdown__row {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.pcc-site a,
  body.pcc-site button,
  body.pcc-site input,
  body.pcc-site select,
  body.pcc-site textarea,
  .pcc-reveal,
  .pcc-post-card__thumb img,
  .pcc-post-featured__thumb img {
    transition: none !important;
  }
  .pcc-reveal {
    opacity: 1;
    transform: none;
  }
}


.pcc-content-wrap--blog { padding-top: 40px; }
.pcc-post-featured__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--pcc-text-tertiary);
  flex-wrap: wrap;
}
.pcc-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.pcc-pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  border: 1.5px solid var(--pcc-border);
  background: var(--pcc-white);
  color: var(--pcc-text-secondary);
}
.pcc-pagination__link:hover {
  border-color: rgba(29,95,168,.24);
  color: var(--pcc-blue);
}
.pcc-pagination__link--active {
  border-color: var(--pcc-blue);
  background: var(--pcc-blue);
  color: #fff;
}
.pcc-blog-sidebar-card--dark {
  background: linear-gradient(180deg, #0b1f37 0%, #102843 100%);
  border-color: transparent;
  text-align: center;
}
.pcc-blog-sidebar-card__emoji {
  font-size: 32px;
  margin-bottom: 10px;
}
.pcc-blog-sidebar-card__title {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 8px;
}
.pcc-blog-sidebar-card__copy {
  color: #a9bfd8;
  font-size: var(--pcc-text-sm);
  margin-bottom: 16px;
  line-height: 1.6;
}
.pcc-blog-sidebar-card__cta {
  display: block;
  background: var(--pcc-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 11px;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
}
.pcc-blog-cat-link--compact {
  font-size: 13px;
}


/* v7 footer contrast + mobile layout fix */
.pcc-site-footer {
  color: #dbe7f5;
}
.pcc-site-footer .pcc-logo__text,
.pcc-site-footer .pcc-logo__serif,
.pcc-site-footer .pcc-site-footer__cta-title,
.pcc-site-footer .pcc-site-footer__link,
.pcc-site-footer .pcc-site-footer__legal a {
  color: #f8fbff;
}
.pcc-site-footer .pcc-site-footer__eyebrow,
.pcc-site-footer .pcc-site-footer__col-title {
  color: #93c5fd;
}
.pcc-site-footer .pcc-site-footer__tagline {
  color: #c2cfde;
  max-width: 34ch;
}
.pcc-site-footer .pcc-site-footer__copy {
  color: #94a3b8;
}
.pcc-site-footer .pcc-site-footer__cta {
  align-items: center;
}
.pcc-site-footer .pcc-site-footer__cta > div {
  min-width: 0;
}
@media (max-width: 640px) {
  .pcc-site-footer {
    padding: 32px 20px 24px;
    overflow: hidden;
  }
  .pcc-site-footer__inner {
    max-width: 100%;
  }
  .pcc-site-footer .pcc-site-footer__cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 18px;
    margin-bottom: 24px;
  }
  .pcc-site-footer .pcc-site-footer__cta-title {
    font-size: 28px;
    line-height: 1.12;
  }
  .pcc-site-footer .pcc-site-footer__cta-btn {
    width: 100%;
  }
  .pcc-site-footer .pcc-site-footer__top {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 0 24px;
    margin-bottom: 16px;
  }
  .pcc-site-footer .pcc-site-footer__col {
    min-width: 0;
  }
  .pcc-site-footer .pcc-site-footer__bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .pcc-site-footer .pcc-site-footer__legal {
    gap: 14px 18px;
  }
}


/* ══════════════════════════════════════════════
   AWWWARDS-INSPIRED TYPOGRAPHY REFRESH (2026)
══════════════════════════════════════════════ */
body.pcc-site,
body.pcc-site button,
body.pcc-site input,
body.pcc-site select,
body.pcc-site textarea {
  font-family: var(--pcc-font-body) !important;
}

body.pcc-site h1,
body.pcc-site h2,
body.pcc-site h3,
body.pcc-site h4,
body.pcc-site h5,
body.pcc-site h6 {
  font-family: var(--pcc-font-display) !important;
  font-style: normal !important;
  font-weight: 800 !important;
  letter-spacing: -0.05em !important;
  line-height: 1.03 !important;
}

body.pcc-site p,
body.pcc-site li,
body.pcc-site label,
body.pcc-site input,
body.pcc-site select,
body.pcc-site textarea,
body.pcc-site button {
  letter-spacing: -0.02em;
}

.pcc-page-hero {
  padding: 34px 28px 26px;
}
.pcc-page-hero__badge {
  font-size: 12px !important;
  letter-spacing: 0.12em !important;
  margin-bottom: 26px !important;
}
.pcc-page-hero h1 {
  font-size: clamp(2rem, 3.5vw, 3.2rem) !important;
  max-width: 14ch;
  margin-inline: auto;
}
.pcc-page-hero p {
  font-size: clamp(1rem, 0.98rem + 0.18vw, 1.1rem) !important;
  max-width: 42ch !important;
  line-height: 1.62 !important;
}
.pcc-page-hero__inner {
  max-width: 820px;
}
.pcc-page-hero__serif,
#pcc-app-wrapper .serif,
#pcc-breed-v3 em,
.state-serif {
  font-family: var(--pcc-font-body) !important;
  font-style: normal !important;
}

.pcc-content-wrap {
  padding-top: 68px;
  padding-bottom: 92px;
}
.pcc-card {
  padding: 42px;
}
.pcc-card h2,
.pcc-section-title,
.pcc-legal h2,
.pcc-related h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.75rem) !important;
  line-height: 1.06 !important;
  letter-spacing: -0.05em !important;
}
.pcc-card h3,
.pcc-card-title,
.pcc-post-cta h3,
.pcc-blog-sidebar-card h3 {
  font-size: clamp(1.1rem, 1rem + 0.4vw, 1.5rem) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.035em !important;
}
.pcc-card p,
.pcc-card li,
.pcc-legal p,
.pcc-legal li,
.pcc-section-intro,
.pcc-lead,
.pcc-source-desc,
.pcc-value-desc {
  font-size: clamp(1rem, 0.98rem + 0.18vw, 1.125rem) !important;
  line-height: 1.72 !important;
}
.pcc-kicker,
.pcc-post-featured__label,
.pcc-site-footer__col-title,
.pcc-site-footer__eyebrow,
.pcc-post-card__cat,
.pcc-post-single__cat,
.pcc-page-hero__badge,
.pcc-breadcrumb__inner {
  font-size: 12px !important;
  letter-spacing: 0.12em !important;
}

.pcc-post-card__title,
.pcc-post-featured__title {
  font-size: clamp(1.35rem, 1.2rem + 0.7vw, 1.9rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.045em !important;
}
.pcc-post-card__excerpt,
.pcc-post-featured__excerpt,
.pcc-post-body p,
.pcc-post-body li {
  font-size: clamp(1rem, 0.98rem + 0.18vw, 1.125rem) !important;
  line-height: 1.78 !important;
}
.pcc-post-single__title {
  font-size: clamp(2.5rem, 6vw, 4.75rem) !important;
  line-height: 1.01 !important;
}
.pcc-post-body h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem) !important;
  line-height: 1.07 !important;
}
.pcc-post-body h3 {
  font-size: clamp(1.2rem, 1.1rem + 0.5vw, 1.65rem) !important;
}

.pcc-site-footer__cta-title {
  font-family: var(--pcc-font-display) !important;
  font-size: clamp(2rem, 4vw, 3.5rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.055em !important;
}
.pcc-site-footer__tagline,
.pcc-site-footer__copy,
.pcc-site-footer__legal a {
  font-size: 1rem !important;
  line-height: 1.65 !important;
}
.pcc-site-footer__link {
  font-size: 1.125rem !important;
  line-height: 1.25 !important;
}

/* Breed + state index pages */
.pci-card__tag,
.psi-card__tier {
  font-size: 12px !important;
  letter-spacing: 0.08em !important;
}
.pci-card__name,
.psi-card__name {
  font-size: 1.125rem !important;
  line-height: 1.12 !important;
  letter-spacing: -0.04em !important;
}
.pci-card__cost,
.psi-card__mult {
  font-size: clamp(1.35rem, 1.18rem + 0.65vw, 1.85rem) !important;
  letter-spacing: -0.045em !important;
}
.pci-card__annual,
.psi-card__annual,
.pci-card__cost span,
.pcc-stat-lbl {
  font-size: 0.875rem !important;
}
.pcc-content-wrap > h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem) !important;
  line-height: 1.06 !important;
  letter-spacing: -0.05em !important;
}

/* Breed detail */
#pcc-breed-v3 .v3-hero {
  padding: 34px 20px 26px !important;
}
#pcc-breed-v3 .v3-hero__badge,
#pcc-breed-v3 .v3-sidebar__card-label,
#pcc-breed-v3 .v3-eyebrow,
#pcc-breed-v3 .v3-table-header,
#pcc-breed-v3 .v3-table-header--3col,
#pcc-breed-v3 .v3-tier__label,
#pcc-breed-v3 .v3-bar__badge,
#pcc-breed-v3 .v3-unique-card__eyebrow {
  font-size: 12px !important;
  letter-spacing: 0.12em !important;
}
#pcc-breed-v3 .v3-hero__title {
  font-size: clamp(2rem, 3.8vw, 3.2rem) !important;
  line-height: 1.04 !important;
  max-width: 12ch !important;
}
#pcc-breed-v3 .v3-hero__sub,
#pcc-breed-v3 .v3-prose,
#pcc-breed-v3 .v3-note {
  font-size: clamp(1rem, 0.98rem + 0.18vw, 1.125rem) !important;
  line-height: 1.74 !important;
}
#pcc-breed-v3 .v3-h2,
#pcc-breed-v3 .v3-sidebar__browse,
#pcc-breed-v3 .v3-unique-card__title {
  font-family: var(--pcc-font-display) !important;
}
#pcc-breed-v3 .v3-h2 {
  font-size: clamp(1.9rem, 3.4vw, 3rem) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.05em !important;
}
#pcc-breed-v3 .v3-bar__label,
#pcc-breed-v3 .v3-table-row,
#pcc-breed-v3 .v3-table-row--3col,
#pcc-breed-v3 .v3-health-row__name,
#pcc-breed-v3 .v3-sidebar__link,
#pcc-breed-v3 .v3-unique-card__title {
  font-size: 1rem !important;
}
#pcc-breed-v3 .v3-stat__val,
#pcc-breed-v3 .v3-tier__val,
#pcc-breed-v3 .v3-table-total,
#pcc-breed-v3 .v3-bar__amount {
  font-size: clamp(1.25rem, 1.12rem + 0.55vw, 1.7rem) !important;
  letter-spacing: -0.04em !important;
}

/* State detail */
#pcc-state-wrapper .state-hero {
  padding: 42px 0 34px !important;
}
#pcc-state-wrapper .state-badge,
#pcc-state-wrapper .state-card__eyebrow,
#pcc-state-wrapper .state-table th {
  font-size: 12px !important;
  letter-spacing: 0.12em !important;
}
#pcc-state-wrapper .state-hero h1 {
  font-size: clamp(2rem, 3.8vw, 3.25rem) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.05em !important;
  max-width: 12ch;
}
#pcc-state-wrapper .state-hero p,
#pcc-state-wrapper .state-tip__text,
#pcc-state-wrapper .state-faq__a-inner,
#pcc-state-wrapper .scc-sub,
#pcc-state-wrapper .sic-sub,
#pcc-state-wrapper .state-fact__detail,
#pcc-state-wrapper .state-table,
#pcc-state-wrapper .state-quick-stats .sqs-row {
  font-size: 1rem !important;
  line-height: 1.72 !important;
}
#pcc-state-wrapper .state-card__title,
#pcc-state-wrapper .scc-title,
#pcc-state-wrapper .sic-title {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.04em !important;
}
#pcc-state-wrapper .scr-name,
#pcc-state-wrapper .state-faq__q,
#pcc-state-wrapper .state-related__link,
#pcc-state-wrapper .state-fact__label,
#pcc-state-wrapper .scc-features span,
#pcc-state-wrapper .state-table td {
  font-size: 0.95rem !important;
}
#pcc-state-wrapper .shn__val,
#pcc-state-wrapper .sqs-highlight {
  font-size: clamp(1.25rem, 1.12rem + 0.55vw, 1.7rem) !important;
  letter-spacing: -0.04em !important;
}

/* Insurance + quiz pages */
#pcc-ins-wrapper .ins-badge,
#pcc-ins-wrapper .ins-card__eyebrow,
#pcc-ins-wrapper .ins-cta__eyebrow,
#pcc-ins-wrapper .ins-risk__title,
#pcc-ins-wrapper .ins-covered__title,
#plc-quiz-root .qstep-num,
#plc-quiz-root .qprog-meta,
#plc-quiz-root .qbcard-lbl,
#plc-quiz-root .qres-verdict,
#plc-quiz-root .qrec h3 {
  font-size: 12px !important;
  letter-spacing: 0.12em !important;
}
#pcc-ins-wrapper .ins-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.75rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.055em !important;
  max-width: 10ch;
}
#pcc-ins-wrapper .ins-hero p,
#pcc-ins-wrapper .ins-risk__body,
#pcc-ins-wrapper .ins-rec__body,
#pcc-ins-wrapper .ins-how__card p,
#pcc-ins-wrapper .ins-source__desc,
#pcc-ins-wrapper .ins-cta__sub,
#plc-quiz-root .qstep-sub,
#plc-quiz-root .qopt-body span,
#plc-quiz-root .qres-hero p,
#plc-quiz-root .qins-item span,
#plc-quiz-root .qrec p {
  font-size: 1rem !important;
  line-height: 1.72 !important;
}
#pcc-ins-wrapper .ins-card__title,
#pcc-ins-wrapper .ins-verdict__title,
#pcc-ins-wrapper .ins-how__title,
#pcc-ins-wrapper .ins-sources__title,
#plc-quiz-root .qstep h2,
#plc-quiz-root .qres-hero h2 {
  font-size: clamp(1.8rem, 3vw, 2.9rem) !important;
  line-height: 1.06 !important;
  letter-spacing: -0.05em !important;
}
#pcc-ins-wrapper .ins-verdict__sub,
#pcc-ins-wrapper .ins-scenario__left,
#pcc-ins-wrapper .ins-scenario__sub,
#pcc-ins-wrapper .ins-chart-legend,
#pcc-ins-wrapper .ins-source__name,
#plc-quiz-root .qopt-body strong,
#plc-quiz-root .qinsights h3 {
  font-size: 1rem !important;
}
#pcc-ins-wrapper .ins-stat__num,
#pcc-ins-wrapper .ins-num-block__val,
#pcc-ins-wrapper .ins-scenario__saving,
#plc-quiz-root .qslider-val,
#plc-quiz-root .qbcard-val,
#plc-quiz-root .qscore-n {
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2.25rem) !important;
  letter-spacing: -0.05em !important;
}

@media (max-width: 640px) {
  .pcc-page-hero {
    padding: 28px 20px 24px;
  }
  .pcc-card {
    padding: 28px 22px;
  }
  .pcc-content-wrap {
    padding-left: 22px;
    padding-right: 22px;
  }
  .pcc-site-footer__link {
    font-size: 1rem !important;
  }
  #pcc-state-wrapper .state-hero,
  #pcc-breed-v3 .v3-hero {
    padding-top: 28px !important;
  }
}


/* v9 footer rebuild: simplified, scoped, mobile-safe */
.pcc-site-footer {
  position: relative;
  background: linear-gradient(180deg, #071427 0%, #061224 100%);
  padding: 56px 24px 28px;
  overflow: clip;
}
.pcc-site-footer__inner {
  max-width: 1180px;
}
.pcc-site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(4, minmax(0, 0.8fr));
  gap: 28px;
  padding: 0 0 30px;
  margin: 0 0 22px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.pcc-site-footer__col,
.pcc-site-footer__col--brand {
  min-width: 0;
}
.pcc-site-footer__col--brand {
  padding-right: 24px;
}
.pcc-site-footer .pcc-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.pcc-site-footer .pcc-logo__text,
.pcc-site-footer .pcc-logo__serif {
  color: #f8fbff !important;
}
.pcc-site-footer__tagline {
  margin: 18px 0 0;
  max-width: 32ch;
  color: rgba(226, 232, 240, .84) !important;
  font-size: 1rem !important;
  line-height: 1.72 !important;
}
.pcc-site-footer__col-title {
  margin: 0 0 14px;
  color: #93c5fd !important;
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: .12em !important;
  text-transform: uppercase;
}
.pcc-site-footer__link {
  display: block;
  margin: 0 0 12px;
  color: #f8fbff !important;
  opacity: .9;
  font-size: 1.05rem !important;
  line-height: 1.3 !important;
  text-decoration: none;
  transition: opacity .18s ease, transform .18s ease;
}
.pcc-site-footer__link:hover {
  opacity: 1;
  transform: translateX(2px);
}
.pcc-site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px 28px;
}
.pcc-site-footer__copy {
  margin: 0;
  max-width: 64ch;
  color: rgba(148,163,184,.95) !important;
  font-size: .98rem !important;
  line-height: 1.7 !important;
}
.pcc-site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 24px;
}
.pcc-site-footer__legal a {
  color: #f8fbff !important;
  opacity: .88;
  font-size: 1rem !important;
  text-decoration: none;
}
.pcc-site-footer__legal a:hover {
  opacity: 1;
}
@media (max-width: 900px) {
  .pcc-site-footer {
    padding: 48px 20px 26px;
  }
  .pcc-site-footer__top {
    grid-template-columns: minmax(0, 1fr) 1fr 1fr;
    gap: 26px 20px;
  }
  .pcc-site-footer__col--brand {
    grid-column: 1 / -1;
    padding-right: 0;
    margin-bottom: 6px;
  }
  .pcc-site-footer__bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .pcc-site-footer__legal {
    justify-content: flex-start;
  }
}
@media (max-width: 640px) {
  .pcc-site-footer {
    padding: 42px 20px 28px;
  }
  .pcc-site-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 24px 18px;
    padding-bottom: 24px;
    margin-bottom: 18px;
  }
  .pcc-site-footer__col--brand {
    grid-column: 1 / -1;
    margin-bottom: 4px;
  }
  .pcc-site-footer__tagline {
    max-width: 36ch;
  }
  .pcc-site-footer__link {
    font-size: 1.02rem !important;
    margin-bottom: 11px;
  }
}
@media (max-width: 460px) {
  .pcc-site-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 22px 14px;
  }
  .pcc-site-footer__copy {
    font-size: .94rem !important;
  }
  .pcc-site-footer__legal {
    gap: 12px 18px;
  }
}


/* v10 footer regression fix: restore working mobile structure from 1.0.107 */
.pcc-site-footer {
  background: linear-gradient(180deg, #071427 0%, #061224 100%) !important;
  color: #dbe7f5;
  padding: 40px 20px calc(30px + env(safe-area-inset-bottom, 0px)) !important;
  overflow: hidden;
}
.pcc-site-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
}
.pcc-site-footer__top {
  display: grid !important;
  grid-template-columns: minmax(0, 1.25fr) repeat(4, minmax(0, 0.72fr)) !important;
  gap: 28px 22px !important;
  padding: 0 0 28px !important;
  margin: 0 0 20px !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
}
.pcc-site-footer__col,
.pcc-site-footer__col--brand {
  min-width: 0;
  width: auto !important;
}
.pcc-site-footer__col--brand {
  padding-right: 18px !important;
}
.pcc-site-footer .pcc-logo,
.pcc-site-footer .pcc-logo__text {
  color: #f8fbff !important;
}
.pcc-site-footer .pcc-logo__serif {
  color: #f8fbff !important;
  font-style: italic;
}
.pcc-site-footer__tagline {
  margin: 16px 0 0 !important;
  max-width: 31ch !important;
  color: rgba(226,232,240,.86) !important;
  font-size: 1rem !important;
  line-height: 1.72 !important;
}
.pcc-site-footer__col-title {
  margin: 0 0 12px !important;
  color: #93c5fd !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
}
.pcc-site-footer__link {
  display: block;
  margin: 0 0 10px !important;
  color: #f8fbff !important;
  opacity: .92;
  font-size: 1rem !important;
  line-height: 1.28 !important;
  text-decoration: none;
}
.pcc-site-footer__bottom {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  gap: 14px 24px !important;
}
.pcc-site-footer__copy {
  margin: 0 !important;
  max-width: 58ch !important;
  color: rgba(148,163,184,.95) !important;
  font-size: .95rem !important;
  line-height: 1.7 !important;
}
.pcc-site-footer__legal {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: flex-end !important;
  gap: 12px 22px !important;
}
.pcc-site-footer__legal a {
  color: #f8fbff !important;
  opacity: .9;
  font-size: .98rem !important;
  text-decoration: none;
}
@media (max-width: 900px) {
  .pcc-site-footer__top {
    grid-template-columns: minmax(0, 1fr) 1fr 1fr !important;
  }
  .pcc-site-footer__col--brand {
    grid-column: 1 / -1;
    padding-right: 0 !important;
    margin-bottom: 4px;
  }
  .pcc-site-footer__bottom {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .pcc-site-footer__legal {
    justify-content: flex-start !important;
  }
}
@media (max-width: 640px) {
  .pcc-site-footer {
    padding: 36px 20px calc(28px + env(safe-area-inset-bottom, 0px)) !important;
  }
  .pcc-site-footer__top {
    grid-template-columns: 1fr 1fr !important;
    gap: 22px 18px !important;
    padding-bottom: 24px !important;
    margin-bottom: 16px !important;
  }
  .pcc-site-footer__col--brand {
    grid-column: 1 / -1 !important;
  }
  .pcc-site-footer__copy {
    max-width: none !important;
  }
}
@media (max-width: 420px) {
  .pcc-site-footer {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
  .pcc-site-footer__top {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px 14px !important;
  }
  .pcc-site-footer__link,
  .pcc-site-footer__legal a,
  .pcc-site-footer__copy {
    font-size: .94rem !important;
  }
}


/* v13 unified cards: breed + state + blog */
:root {
  --pcc-card-radius-unified: 20px;
  --pcc-card-border-unified: rgba(203,213,225,.95);
  --pcc-card-shadow-unified: 0 10px 28px rgba(148,163,184,.14);
  --pcc-card-shadow-unified-hover: 0 18px 38px rgba(13,27,42,.12);
}

.pcc-blog-grid,
.pci-grid,
.psi-grid {
  align-items: start;
}

.pcc-post-card {
  background: linear-gradient(180deg,#ffffff 0%,#fbfdff 100%);
  border: 1px solid var(--pcc-card-border-unified);
  border-radius: var(--pcc-card-radius-unified);
  box-shadow: var(--pcc-card-shadow-unified);
  overflow: hidden;
}
.pcc-post-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--pcc-card-shadow-unified-hover);
  border-color: rgba(29,95,168,.22);
}
.pcc-post-card__thumb {
  height: 208px;
  background: linear-gradient(180deg,#eef5ff 0%,#e3efff 100%);
}
.pcc-post-card__thumb-emoji {
  font-size: 52px;
  opacity: .85;
}
.pcc-post-card__cat {
  top: 14px;
  left: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
}
.pcc-post-card__body {
  padding: 22px 22px 20px;
}
.pcc-post-card__date {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 10px;
}
.pcc-post-card__title {
  font-size: clamp(1.25rem, 1.1rem + .35vw, 1.55rem) !important;
  line-height: 1.12 !important;
  letter-spacing: -.035em !important;
  margin-bottom: 12px;
}
.pcc-post-card__excerpt {
  font-size: 15px !important;
  line-height: 1.68 !important;
  color: #64748b;
}
.pcc-post-card__footer {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(203,213,225,.95);
}
.pcc-post-card__read,
.pcc-post-card__time {
  font-size: 13px !important;
  font-weight: 700;
}

@media (max-width: 760px) {
  .pcc-blog-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .pcc-post-card__thumb {
    height: 188px;
  }
}
