/* DookieDocs Blog — design tokens lifted from index.html */
:root {
  --brand-green:    #2f855a;
  --brand-green-lt: #48bb78;
  --brand-dark:     #1a202c;
  --brand-light:    #f0fff4;
  --accent:         #f6e05e;
  --text-body:      #4a5568;
  --text-muted:     #718096;
  --white:          #ffffff;
  --border:         #e2e8f0;
  --radius:         12px;
  --shadow:         0 8px 32px rgba(26,32,44,0.06);
  --font:           'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font);
  color: var(--brand-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  position: relative;
}

img { max-width: 100%; display: block; }
a { color: var(--brand-green); text-decoration: none; }
a:hover { color: var(--brand-green-lt); }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
body.blog-listing .container { max-width: 1280px; }
body.blog-listing main.section .container { padding: 0 32px; }

.section { padding: 80px 0; }

/* ---------- Nav ---------- */
body > nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-size: 20px; font-weight: 900;
  color: var(--brand-dark);
  display: flex; align-items: center; gap: 12px;
}
.nav-logo .logo-accent { color: var(--brand-green); }
.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px; font-weight: 600; color: var(--text-body);
  transition: color 0.15s;
}
.nav-links a[aria-current="page"] { color: var(--brand-green); }
.nav-links a:hover { color: var(--brand-green); }
.nav-cta { margin-left: 16px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--brand-dark); border-radius: 2px; transition: all 0.2s; }

/* Push content below fixed nav */
body > main { padding-top: 68px; }
body > main.section { padding-top: calc(68px + 48px); }
/* When a hero is already pushing content down, main doesn't need to */
body > header.blog-hero + main.section { padding-top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  border: 2px solid transparent; transition: all 0.18s;
}
@media (max-width: 767px) { .btn { padding: 12px 22px; font-size: 14px; } }
.btn-primary {
  background: var(--brand-green); color: var(--white);
  border-color: var(--brand-green);
}
.btn-primary:hover { background: var(--brand-green-lt); border-color: var(--brand-green-lt); }
.btn-outline {
  border-color: var(--brand-dark);
  color: var(--brand-dark);
  background: transparent;
}
.btn-outline:hover {
  background: var(--brand-dark);
  color: var(--white);
}

/* ---------- Hero ---------- */
.blog-hero {
  background: linear-gradient(180deg, var(--brand-light) 0%, #ffffff 100%);
  padding: 104px 0 24px;
  text-align: center;
}
.blog-hero .eyebrow {
  display: inline-block;
  background: transparent;
  padding: 0;
  border-radius: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-green);
  margin-bottom: 10px;
}
.blog-hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 8px;
  color: var(--brand-dark);
  letter-spacing: -0.02em;
}
.blog-hero .hero-sub {
  font-size: 17px;
  color: var(--text-body);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---------- Post grid (listing) ---------- */
.post-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
@media (max-width: 1199px) { .post-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px)  { .post-grid { grid-template-columns: 1fr; } }
.post-grid-loading,
.post-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 64px 24px;
  color: var(--text-muted);
}
.post-empty h3 {
  font-size: 22px;
  color: var(--brand-dark);
  margin: 0 0 8px;
}

.post-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 344px;
  box-shadow: 0 1px 2px rgba(26,32,44,0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(47,133,90,0.12);
  border-color: var(--brand-green);
}
.post-card-image-wrap {
  display: block;
  width: 100%;
  height: 160px;
  background: var(--brand-light);
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  flex-shrink: 0;
}
.post-card-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.post-card:hover .post-card-image-wrap img { transform: scale(1.03); }
.post-card-image-fallback {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
  background: var(--brand-light);
}
.post-card-body {
  padding: 12px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.post-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 8px;
  flex-wrap: wrap;
  row-gap: 2px;
}
.post-card-category { color: var(--brand-green); }
.post-card-meta time { color: var(--text-muted); }
.post-card-meta .dot { color: var(--text-muted); }
.post-card-title {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.28;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 1199px) { .post-card-title { font-size: 16px; } }
.post-card-title a { color: var(--brand-dark); }
.post-card-title a:hover { color: var(--brand-green); }
.post-card-excerpt {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-body);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-card-readmore {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-green);
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  align-self: flex-start;
}
.post-card-readmore:hover { opacity: 0.8; color: var(--brand-green); }

.post-show-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.post-show-more-wrap .btn { min-width: 220px; justify-content: center; }
.post-show-more-wrap .btn:active { transform: translateY(1px); }
/* Re-assert outline-on-light look — local-seo.css ships a white-on-dark
   .btn-outline for hero overlays that would otherwise win the cascade. */
.post-show-more-wrap .btn.btn-outline {
  background: transparent;
  border-color: var(--brand-dark);
  color: var(--brand-dark);
}
.post-show-more-wrap .btn.btn-outline:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: var(--white);
}

@keyframes postCardIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.post-card.is-entering {
  animation: postCardIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) backwards;
  animation-delay: calc(var(--card-i, 0) * 70ms);
}
@media (prefers-reduced-motion: reduce) {
  .post-card.is-entering { animation: none; }
}

/* ---------- Post page ---------- */
.post-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}
.post-header {
  text-align: center;
  padding: 32px 0 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}
.post-header .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-green);
  margin-bottom: 14px;
}
.post-header h1 {
  font-size: clamp(28px, 4.4vw, 42px);
  font-weight: 900;
  line-height: 1.18;
  margin: 0 0 16px;
  color: var(--brand-dark);
  letter-spacing: -0.02em;
}
.post-meta {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.post-meta time { font-weight: 600; }

.post-featured-image {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0 0 40px;
  aspect-ratio: 16 / 9;
  background: var(--brand-light);
}
.post-featured-image img { width: 100%; height: 100%; object-fit: cover; }

.post-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-body);
}
.post-body h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--brand-dark);
  margin: 40px 0 14px;
  letter-spacing: -0.01em;
}
.post-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-dark);
  margin: 32px 0 12px;
}
.post-body p { margin: 0 0 18px; }
.post-body ul, .post-body ol { padding-left: 22px; margin: 0 0 18px; }
.post-body li { margin-bottom: 8px; }
.post-body a { color: var(--brand-green); text-decoration: underline; }
.post-body blockquote {
  border-left: 4px solid var(--brand-green);
  background: var(--brand-light);
  padding: 16px 22px;
  margin: 24px 0;
  border-radius: 6px;
  font-style: italic;
  color: var(--brand-dark);
}
.post-body img {
  border-radius: var(--radius);
  margin: 24px 0;
}
.post-body code {
  background: #f7fafc;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 14px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* ---------- Bottom CTA ---------- */
.post-cta {
  margin: 64px auto 0;
  max-width: 760px;
  background: var(--brand-light);
  border: 2px solid var(--brand-green);
  border-radius: var(--radius);
  padding: 36px 32px;
  text-align: center;
}
.post-cta h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--brand-dark);
  margin: 0 0 10px;
}
.post-cta p {
  font-size: 16px;
  color: var(--text-body);
  margin: 0 0 22px;
  line-height: 1.6;
}
.post-cta .btn { color: var(--white); }

/* ---------- Footer (mirrors index.html exactly) ---------- */
footer {
  background: var(--brand-dark); color: rgba(255,255,255,0.7);
  padding: 72px 24px 0; font-size: 15px;
  margin-top: 96px;
}
.footer-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.3fr 0.9fr 1.1fr 1.2fr; gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .logo {
  display: flex; align-items: center; gap: 12px;
  font-size: 20px; font-weight: 900; color: var(--white);
  margin-bottom: 20px;
}
.footer-brand .logo span { color: var(--brand-green-lt); }
.footer-brand p {
  font-size: 14.5px; line-height: 1.75;
  color: rgba(255,255,255,0.7); max-width: 320px; margin: 0;
}
.footer-meta {
  margin-top: 22px; display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: rgba(255,255,255,0.85); font-weight: 700;
}
.footer-meta .meta-icon {
  width: 30px; height: 30px; border-radius: 999px;
  background: rgba(72,187,120,0.15);
  border: 1px solid rgba(72,187,120,0.35);
  display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto;
  color: var(--brand-green-lt);
}
.footer-meta .meta-icon svg { width: 14px; height: 14px; }
.footer-ctas {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px;
}
.footer-ctas .btn { padding: 11px 20px; font-size: 13.5px; }
.footer-ctas .btn.cta-primary {
  background: var(--brand-green); border-color: var(--brand-green); color: var(--white);
}
.footer-ctas .btn.cta-primary:hover {
  background: var(--brand-green-lt); border-color: var(--brand-green-lt);
}
.footer-ctas .btn.cta-secondary {
  background: transparent; border: 1.5px solid rgba(255,255,255,0.25); color: var(--white);
}
.footer-ctas .btn.cta-secondary:hover {
  background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.4);
}
.footer-col h4 {
  font-size: 16px; font-weight: 800; color: var(--white);
  margin: 0 0 18px; letter-spacing: 0; text-transform: none;
}
.footer-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 11px;
}
.footer-col li { margin: 0; }
.footer-col a {
  font-size: 14px; color: rgba(255,255,255,0.65); font-weight: 500;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--brand-green-lt); }
.footer-contact {
  display: flex; flex-direction: column; gap: 14px;
}
.footer-contact .contact-row {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,0.85);
  font-weight: 500; line-height: 1.5;
}
.footer-contact .contact-row a {
  color: rgba(255,255,255,0.85); font-weight: 500;
}
.footer-contact .contact-row a:hover { color: var(--brand-green-lt); }
.footer-contact .contact-row .icon {
  width: 18px; height: 18px; flex: 0 0 auto; margin-top: 2px;
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
}
.footer-contact .contact-row .icon svg { width: 16px; height: 16px; fill: currentColor; }
.follow-block { margin-top: 22px; }
.follow-block h4 { margin-bottom: 12px; }
.footer-bottom {
  background: rgba(0,0,0,0.35);
  margin: 0 -24px;
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom .bottom-inner {
  max-width: 1180px; margin: 0 auto; width: 100%;
  display: flex; justify-content: flex-start; align-items: center;
  font-size: 13px; flex-wrap: wrap; gap: 12px;
  color: rgba(255,255,255,0.55);
}
.footer-bottom a {
  color: rgba(255,255,255,0.75); font-weight: 600;
}
.footer-bottom a:hover { color: var(--brand-green-lt); }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.18s, border-color 0.18s, transform 0.18s;
  color: rgba(255,255,255,0.85);
}
.social-links a:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}
.social-links svg { width: 18px; height: 18px; fill: rgba(255,255,255,0.85); }
.social-links a:hover svg { fill: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 767px) {
  .post-card { height: auto; }
}

@media (max-width: 640px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 24px; }

  .blog-hero { padding: 78px 0 40px; }
  body > header.blog-hero + main.section { padding-top: 16px; }
  .post-grid { gap: 22px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  .section { padding: 48px 0; }
  body > main.section { padding-top: calc(68px + 24px); }

  .post-cta { padding: 28px 22px; }
}


/* ============================================================
   Listing-page additions: filter pills, featured post,
   bottom CTA band, paw decorations
   ============================================================ */

/* ---------- Hero paw decorations ---------- */
.blog-hero { position: relative; overflow: hidden; }
.paw-decor {
  position: absolute;
  background-image: url('../paw-print.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}
.blog-hero .container { position: relative; z-index: 1; }
.paw-decor-1 { width: 110px; height: 110px; top: 96px; left: 6%; transform: rotate(-15deg); }
.paw-decor-2 { width: 90px; height: 90px; top: 140px; right: 8%; transform: rotate(20deg); }
.paw-decor-3 { width: 70px; height: 70px; bottom: 30px; left: 18%; transform: rotate(-30deg); }

/* ---------- Filter pills ---------- */
.post-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}
.filter-pill {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-body);
  cursor: pointer;
  transition: all 0.18s ease;
}
.filter-pill:hover { border-color: var(--brand-green); color: var(--brand-green); }
.filter-pill.is-active {
  background: var(--brand-green);
  color: var(--white);
  border-color: var(--brand-green);
}

/* ---------- Featured post (large card) ---------- */
.post-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 1080px;
  margin: 0 auto 48px;
  box-shadow: 0 4px 20px rgba(26,32,44,0.04);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  max-height: 360px;
}
.post-featured:hover {
  box-shadow: 0 12px 32px rgba(47,133,90,0.12);
  transform: translateY(-2px);
  border-color: var(--brand-green);
}
.post-featured-image-wrap {
  position: relative;
  display: block;
  background: var(--brand-light);
  overflow: hidden;
  height: 100%;
  min-height: 360px;
}
.post-featured-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.post-featured:hover .post-featured-image-wrap img { transform: scale(1.04); }
.post-featured-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--brand-green);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  z-index: 2;
}
.post-featured-body {
  padding: 36px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.post-featured-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.post-featured-category { color: var(--brand-green); }
.post-featured-meta time { color: var(--text-muted); }
.post-featured-meta .dot { color: var(--text-muted); }
.post-featured-title {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  line-height: 1.22;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.post-featured-title a { color: var(--brand-dark); }
.post-featured-title a:hover { color: var(--brand-green); }
.post-featured-excerpt {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-body);
  margin: 0 0 20px;
}
.post-featured-readmore {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-green);
  align-self: flex-start;
}
.post-featured-readmore:hover { color: var(--brand-green-lt); }

/* ---------- Bottom CTA band ---------- */
.blog-cta-band {
  margin: 0 24px 36px;
}
.blog-cta-band .container {
  max-width: 1100px;
  background: var(--brand-light);
  border: 1.5px solid #c6f6d5;
  border-radius: var(--radius);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas:
    "mascot text   action"
    "mascot badges action";
  gap: 14px 28px;
  align-items: center;
}
.cta-mascot {
  grid-area: mascot;
  width: 88px;
  height: 88px;
  align-self: center;
}
.cta-mascot img { width: 100%; height: 100%; object-fit: contain; }
.cta-text {
  grid-area: text;
  align-self: center;
}
.cta-text h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 6px;
  color: var(--brand-dark);
  letter-spacing: -0.01em;
}
.cta-text p {
  font-size: 14px;
  color: var(--text-body);
  margin: 0;
  line-height: 1.5;
}
.cta-action {
  grid-area: action;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  align-self: center;
}
.cta-btn {
  color: var(--white) !important;
  white-space: nowrap;
}
.cta-tagline {
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-green);
  letter-spacing: 0.04em;
}
.cta-badges {
  grid-area: badges;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
  align-self: start;
  flex-wrap: wrap;
}
.cta-badges li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-body);
}
.badge-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--brand-green);
  color: var(--brand-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------- Empty state inside grid ---------- */
.post-empty {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 24px;
  text-align: center;
  margin-top: 24px;
}

/* ---------- Responsive: stack featured + CTA on tablet/mobile ---------- */
@media (max-width: 900px) {
  .post-featured {
    grid-template-columns: 1fr;
  }
  .post-featured-body {
    padding: 28px 24px;
  }
  .blog-cta-band .container {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "mascot text"
      "action action"
      "badges badges";
    gap: 16px 20px;
    text-align: left;
  }
  .cta-action { align-items: flex-start; }
  .cta-badges { justify-self: start; }
}

@media (max-width: 640px) {
  .post-featured-body { padding: 22px 20px; }
  .post-featured-title { font-size: 22px; }
  .blog-cta-band { margin-left: 16px; margin-right: 16px; }
  .blog-cta-band .container { padding: 22px 20px; }
  .cta-mascot { width: 64px; height: 64px; }
  .cta-text h3 { font-size: 18px; }
  .cta-badges { gap: 12px; }
  .paw-decor-1, .paw-decor-2, .paw-decor-3 { display: none; }
}
