/* StyleSeat Blog — components.css
   Template-level components. Class-scoped (.ssb-*) so rules survive
   WordPress/Elementor markup differences and win by specificity. */

/* ---------- Layout ---------- */
.ssb .ssb-container { max-width: var(--ssb-container); margin: 0 auto; padding: 0 var(--ssb-sp-4); }
@media (min-width: 1025px) { .ssb .ssb-container { padding: 0 var(--ssb-sp-6); } }

/* ---------- Header ---------- */
.ssb .ssb-header { background: var(--ssb-surface); border-bottom: 1px solid var(--ssb-border); }
.ssb .ssb-header-inner { display: flex; align-items: center; gap: var(--ssb-sp-6); min-height: 72px; }
.ssb .ssb-logo img { height: 44px; width: auto; display: block; }
.ssb .ssb-nav { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 500; }
.ssb .ssb-nav a { padding: 6px 0; }
.ssb .ssb-nav a:hover { color: var(--ssb-brand); }
.ssb .ssb-nav a[aria-current="page"] { color: var(--ssb-brand); border-bottom: 2px solid var(--ssb-brand); }
.ssb .ssb-header-actions { margin-left: auto; display: flex; align-items: center; gap: var(--ssb-sp-3); }
.ssb .ssb-header-link { font-size: 14px; font-weight: 500; color: var(--ssb-brand); padding: 10px 8px; }
@media (max-width: 1024px) {
  .ssb .ssb-nav, .ssb .ssb-header-link { display: none; } /* collapses to menu toggle (theme-provided) */
  .ssb .ssb-logo img { height: 38px; }
}

/* Buttons (chrome) */
.ssb .ssb-btn--outline { background: transparent; border: 1px solid var(--ssb-brand); color: var(--ssb-brand); }
.ssb .ssb-btn--outline:hover { background: var(--ssb-soft-green); color: var(--ssb-brand); }
.ssb .ssb-btn--lime { background: var(--ssb-accent); color: var(--ssb-brand); }
.ssb .ssb-btn--lime:hover { background: var(--ssb-accent-hover); color: var(--ssb-brand); }

/* ---------- Hero (photo-led, blog index) ---------- */
.ssb .ssb-hero { background: var(--ssb-bg-alt); padding: var(--ssb-sp-6) 0 var(--ssb-sp-7); }
.ssb .ssb-hero-panel { position: relative; border-radius: var(--ssb-radius-card); overflow: hidden; min-height: 420px; display: flex; align-items: center; }
.ssb .ssb-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
.ssb .ssb-hero-panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(18,17,17,.28) 0%, rgba(18,17,17,.08) 55%, rgba(18,17,17,0) 100%); }
.ssb .ssb-hero-copy { position: relative; z-index: 1; max-width: 560px; padding: var(--ssb-sp-7) var(--ssb-sp-7) 128px; display: flex; flex-direction: column; gap: 18px; } /* bottom padding clears the absolutely-positioned stat chips */
.ssb .ssb-hero-copy h1 { color: var(--ssb-accent); margin: 0; }
.ssb .ssb-eyebrow { font-size: var(--ssb-eyebrow-size); font-weight: 500; letter-spacing: var(--ssb-eyebrow-ls); text-transform: uppercase; }
.ssb .ssb-eyebrow--on-dark { color: var(--ssb-accent); }
.ssb .ssb-hero-stats { position: absolute; right: var(--ssb-sp-6); bottom: var(--ssb-sp-6); z-index: 1; display: flex; gap: var(--ssb-sp-3); }
.ssb .ssb-stat-chip { background: var(--ssb-overlay); backdrop-filter: blur(8px); border-radius: var(--ssb-radius-tile); padding: 14px 18px; }
.ssb .ssb-stat-chip .ssb-stat-num { font-family: var(--ssb-font-num); font-weight: 500; font-size: 22px; letter-spacing: -0.03em; color: var(--ssb-accent); display: block; }
.ssb .ssb-stat-chip .ssb-stat-label { font-size: 11px; color: rgba(255,255,255,.9); }
@media (max-width: 767px) {
  .ssb .ssb-hero-panel { min-height: 0; }
  .ssb .ssb-hero-copy { padding: 72px var(--ssb-sp-4) var(--ssb-sp-5); }
  .ssb .ssb-hero-stats { display: none; }
}

/* Search pill (decorative form; degrades to GET /?s=) */
.ssb .ssb-search { display: flex; align-items: center; gap: 12px; background: #FFFFFF; border: 1px solid var(--ssb-border); border-radius: var(--ssb-radius-pill); padding: 12px 20px; max-width: 420px; }
.ssb .ssb-search input { border: 0; outline-offset: 4px; font: 400 14px var(--ssb-font-text); color: var(--ssb-text); width: 100%; background: transparent; }
.ssb .ssb-search input::placeholder { color: var(--ssb-text-muted); }

/* ---------- Category filter nav (plain links, no JS) ---------- */
.ssb .ssb-cats { display: flex; flex-wrap: wrap; gap: var(--ssb-sp-2); }
.ssb .ssb-cats a {
  display: inline-block; font-size: 13px; font-weight: 500; padding: 8px 18px;
  background: var(--ssb-surface); border: 1px solid var(--ssb-border); border-radius: var(--ssb-radius-pill); color: var(--ssb-text);
}
.ssb .ssb-cats a:hover { border-color: var(--ssb-brand); color: var(--ssb-brand); }
.ssb .ssb-cats a[aria-current="page"], .ssb .ssb-cats a.is-active { background: var(--ssb-brand); border-color: var(--ssb-brand); color: #FFFFFF; }
.ssb .ssb-cats--sub a { padding: 6px 14px; font-size: 12px; }

/* ---------- Post card (all slots optional) ---------- */
.ssb .ssb-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--ssb-sp-5); }
@media (max-width: 1024px) { .ssb .ssb-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) { .ssb .ssb-grid { grid-template-columns: 1fr; } }

.ssb .ssb-card {
  background: var(--ssb-surface); border: 1px solid var(--ssb-border);
  border-radius: var(--ssb-radius-card); overflow: hidden;
  display: flex; flex-direction: column;
}
.ssb .ssb-card:hover { box-shadow: var(--ssb-shadow-raised); }
.ssb .ssb-card-thumb { width: 100%; height: 200px; object-fit: cover; display: block; border-radius: 0; }
.ssb .ssb-card-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.ssb .ssb-card-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.ssb .ssb-tag {
  display: inline-block; font-size: 11px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  background: var(--ssb-soft-green); color: var(--ssb-soft-green-deep);
  padding: 4px 10px; border-radius: var(--ssb-radius-pill);
}
.ssb .ssb-card-title { font-size: 17px; font-weight: 500; line-height: 1.3; margin: 0; color: var(--ssb-text); text-wrap: pretty; }
.ssb .ssb-card-title a:hover { color: var(--ssb-brand); }
.ssb .ssb-card-excerpt { font-size: var(--ssb-small-size); line-height: var(--ssb-small-lh); color: var(--ssb-text-muted); margin: 0; }
.ssb .ssb-card-meta { margin-top: auto; padding-top: 8px; font-size: 12px; color: var(--ssb-text-muted); display: flex; gap: 6px; flex-wrap: wrap; }
/* Missing-slot safety: meta row collapses when empty; title keeps card usable alone */
.ssb .ssb-card-meta:empty { display: none; }

/* Featured card variant */
.ssb .ssb-card--featured .ssb-card-thumb { height: 300px; }
.ssb .ssb-card--featured .ssb-card-title { font-size: 22px; }
.ssb .ssb-badge { position: absolute; top: 16px; left: 16px; background: var(--ssb-accent); color: var(--ssb-brand); font-size: 11px; font-weight: 500; letter-spacing: .06em; padding: 5px 12px; border-radius: var(--ssb-radius-pill); }
.ssb .ssb-card-thumb-wrap { position: relative; }

/* ---------- Pro conversion band (soft green) ---------- */
.ssb .ssb-band {
  background: var(--ssb-soft-green); border-radius: var(--ssb-radius-card);
  padding: var(--ssb-sp-7) 56px; display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--ssb-sp-7); align-items: center;
}
.ssb .ssb-band h2 { color: var(--ssb-brand); margin: 0; font-weight: 400; font-size: 34px; letter-spacing: -0.02em; }
.ssb .ssb-band .ssb-eyebrow { color: var(--ssb-soft-green-text); }
.ssb .ssb-band-stats { display: grid; grid-template-columns: 1fr 1fr; gap: var(--ssb-sp-4); }
.ssb .ssb-band-stat { background: var(--ssb-surface); border-radius: var(--ssb-radius-tile); padding: 20px; }
.ssb .ssb-band-stat .ssb-stat-num { font-family: var(--ssb-font-num); font-weight: 500; font-size: 30px; letter-spacing: -0.03em; color: var(--ssb-brand); display: block; }
.ssb .ssb-band-stat .ssb-stat-label { font-size: 12px; line-height: 1.4; color: var(--ssb-text-muted); }
@media (max-width: 1024px) { .ssb .ssb-band { grid-template-columns: 1fr; padding: var(--ssb-sp-5); } .ssb .ssb-band h2 { font-size: 26px; } }

/* ---------- Geo chips ---------- */
.ssb .ssb-geo { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--ssb-sp-3); }
@media (max-width: 1024px) { .ssb .ssb-geo { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) { .ssb .ssb-geo { display: flex; flex-wrap: wrap; } }
.ssb .ssb-geo a {
  display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 500;
  background: var(--ssb-bg-alt); border: 1px solid var(--ssb-border); border-radius: var(--ssb-radius-tile); padding: 14px 16px; color: var(--ssb-text);
}
.ssb .ssb-geo a:hover { border-color: var(--ssb-brand); color: var(--ssb-brand); }

/* ---------- Breadcrumbs / byline / TOC (single post) ---------- */
.ssb .ssb-breadcrumbs { font-size: 12px; color: var(--ssb-text-muted); margin-bottom: var(--ssb-sp-4); }
.ssb .ssb-breadcrumbs a { color: var(--ssb-text-muted); text-decoration: underline; text-underline-offset: 2px; }
.ssb .ssb-breadcrumbs a:hover { color: var(--ssb-text); }
.ssb .ssb-byline { display: flex; align-items: center; gap: 12px; margin-bottom: var(--ssb-sp-5); }
.ssb .ssb-byline img { width: 36px; height: 36px; border-radius: var(--ssb-radius-pill); object-fit: cover; }
.ssb .ssb-byline-name { font-size: 13px; font-weight: 500; }
.ssb .ssb-byline-meta { font-size: 12px; color: var(--ssb-text-muted); }
.ssb .ssb-featured-img { width: 100%; height: auto; aspect-ratio: 1.9; object-fit: cover; border-radius: var(--ssb-radius-card); display: block; }
.ssb .ssb-toc { background: var(--ssb-bg-alt); border: 1px solid var(--ssb-border); border-radius: var(--ssb-radius-tile); padding: 20px 24px; margin: var(--ssb-sp-5) 0; }
.ssb .ssb-toc-title { font-size: 12px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--ssb-text-muted); margin: 0 0 8px; }
.ssb .ssb-toc ol { margin: 0; padding-left: 20px; font-size: 14px; }
.ssb .ssb-toc li { margin-bottom: 4px; }
.ssb .ssb-toc a { color: var(--ssb-link); text-decoration: underline; text-underline-offset: 2px; }
.ssb .ssb-toc a:hover { color: var(--ssb-link-hover); }

/* Quick-answer callout (featured-snippet target) */
.ssb .ssb-quick-answer { background: var(--ssb-bg-alt); border: 1px solid var(--ssb-border); border-radius: var(--ssb-radius-tile); padding: 20px 24px; margin: var(--ssb-sp-5) 0; }
.ssb .ssb-quick-answer .ssb-toc-title { margin-bottom: 6px; }
.ssb .ssb-quick-answer p { margin: 0; color: var(--ssb-text); }

/* Single-post layout */
.ssb .ssb-post-layout { display: grid; grid-template-columns: minmax(0, var(--ssb-article-width)) var(--ssb-sidebar-width); gap: 56px; justify-content: center; padding: var(--ssb-sp-6) 0 var(--ssb-sp-8); }
@media (max-width: 1024px) { .ssb .ssb-post-layout { grid-template-columns: 1fr; } }
.ssb .ssb-sidebar-card { background: var(--ssb-soft-green); border-radius: var(--ssb-radius-card); padding: 26px 24px; display: flex; flex-direction: column; gap: 12px; }
.ssb .ssb-sidebar-card h2 { font-size: 19px; margin: 0; }
@media (min-width: 1025px) { .ssb .ssb-sidebar-sticky { position: sticky; top: var(--ssb-sp-5); } }

/* Related posts */
.ssb .ssb-related { border-top: 1px solid var(--ssb-border); padding-top: var(--ssb-sp-6); margin-top: var(--ssb-sp-7); }

/* Footer CTA band */
.ssb .ssb-footer-cta { background: var(--ssb-soft-green); border-radius: var(--ssb-radius-card); padding: var(--ssb-sp-7); text-align: center; display: flex; flex-direction: column; align-items: center; gap: var(--ssb-sp-4); }
.ssb .ssb-footer-cta h2 { margin: 0; font-weight: 400; font-size: 32px; letter-spacing: -0.02em; }
.ssb .ssb-footer-cta p { margin: 0; color: var(--ssb-text-muted); font-size: 15px; }

/* ---------- Pagination ---------- */
.ssb .ssb-pagination { display: flex; justify-content: center; gap: var(--ssb-sp-2); margin: var(--ssb-sp-7) 0; }
.ssb .ssb-pagination a, .ssb .ssb-pagination span {
  min-width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--ssb-border); border-radius: var(--ssb-radius-btn); font-size: 14px; font-weight: 500; padding: 0 12px;
}
.ssb .ssb-pagination a:hover { border-color: var(--ssb-brand); color: var(--ssb-brand); }
.ssb .ssb-pagination .current { background: var(--ssb-brand); border-color: var(--ssb-brand); color: #FFFFFF; }

/* ---------- Footer ---------- */
.ssb .ssb-footer { background: var(--ssb-brand); color: rgba(255,255,255,.75); padding: 56px 0 32px; margin-top: var(--ssb-sp-8); }
.ssb .ssb-footer a { color: rgba(255,255,255,.75); font-size: 13px; }
.ssb .ssb-footer a:hover { color: #FFFFFF; }
.ssb .ssb-footer-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--ssb-sp-7); padding-bottom: var(--ssb-sp-6); border-bottom: 1px solid rgba(255,255,255,.15); }
@media (max-width: 1024px) { .ssb .ssb-footer-cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 767px) { .ssb .ssb-footer-cols { grid-template-columns: 1fr; } }
.ssb .ssb-footer-heading { font-size: 12px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--ssb-accent); margin: 0 0 10px; }
.ssb .ssb-footer-col { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.ssb .ssb-footer-bottom { display: flex; align-items: center; gap: var(--ssb-sp-5); padding-top: var(--ssb-sp-5); font-size: 12px; color: rgba(255,255,255,.5); flex-wrap: wrap; }
.ssb .ssb-app-badges { display: flex; gap: 10px; }
.ssb .ssb-app-badges a { background: rgba(255,255,255,.12); color: #FFFFFF; font-size: 11px; font-weight: 500; padding: 8px 14px; border-radius: 6px; }
.ssb .ssb-app-badges a:hover { background: rgba(255,255,255,.2); }
.ssb .ssb-footer-citygrid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }


/* ---------- Liondar single-post heading compat ----------
   Liondar sets the single-post H1 size/weight through multi-class selectors
   (.bloglayout__One .single_blog_inner__Title, .single-blog-header
   h1.post-title.single_blog_inner__Title) that outrank .ssb h1. These match
   its specificity and hand control back to the tokens. No !important. */
.ssb .single-blog-header h1.post-title.single_blog_inner__Title,
.ssb .bloglayout__One h1.post-title.single_blog_inner__Title,
.ssb h1.post-title.single_blog_inner__Title {
  /* !important is required here and only here: Liondar's style.css declares
     `.bloglayout__One .single_blog_inner__Title { font-size: 42px !important }`
     (twice), which no amount of specificity can beat. design-notes.md section 4
     permits this as the last resort, commented. Everything else stays clean. */
  font-size: var(--ssb-h1-size) !important;
  font-weight: var(--ssb-h1-weight);
  line-height: var(--ssb-h1-lh);
  letter-spacing: var(--ssb-h1-ls);
}


/* ---------- Liondar article-body compat ----------
   base.css sets long-form type on the .ssb-content CONTAINER and lets it
   inherit. Liondar instead targets elements directly (.blog-details-content p,
   .single-blog-content .single-blog-inner .entry-content p a), and a direct rule
   always beats an inherited value no matter the specificity. So the tokens are
   restated at element level here, at specificity that outranks the theme.
   No !important needed. */
.ssb .entry-content .ssb-content p,
.ssb .entry-content .ssb-content li {
  font-size: var(--ssb-body-size);
  line-height: var(--ssb-body-lh);
  color: var(--ssb-text-body);
}
.ssb .entry-content .ssb-content h2 {
  font-size: var(--ssb-h2-size);
  font-weight: var(--ssb-h2-weight);
  line-height: var(--ssb-h2-lh);
  color: var(--ssb-text);
}
.ssb .entry-content .ssb-content h3 {
  font-size: var(--ssb-h3-size);
  font-weight: var(--ssb-h3-weight);
  line-height: var(--ssb-h3-lh);
  color: var(--ssb-text);
}
.ssb .entry-content .ssb-content h4 {
  font-size: var(--ssb-h4-size);
  font-weight: var(--ssb-h4-weight);
  line-height: var(--ssb-h4-lh);
  color: var(--ssb-text);
}
/* Body links: the theme pins these to black at (0,3,1); match and exceed it. */
.ssb .single-blog-content .single-blog-inner .entry-content .ssb-content a,
.ssb .single-blog-content .single-blog-inner .entry-content .ssb-content p a,
.ssb .single-blog-content .single-blog-inner .entry-content .ssb-content li a { color: var(--ssb-link); }
.ssb .single-blog-content .single-blog-inner .entry-content .ssb-content a:hover { color: var(--ssb-link-hover); }
.ssb .single-blog-content .single-blog-inner .entry-content .ssb-content a:visited { color: var(--ssb-link-visited); }


/* ---------- Sidebar card (single posts) ----------
   The reference markup carried these two as inline styles; they belong here.
   .ssb-sidebar-card / .ssb-sidebar-sticky positioning already exist above. */
.ssb .ssb-sidebar-sticky { display: flex; flex-direction: column; gap: var(--ssb-sp-5); margin-bottom: var(--ssb-sp-5); }
.ssb .ssb-sidebar-card-copy { margin: 0; font-size: var(--ssb-small-size); line-height: var(--ssb-small-lh); color: var(--ssb-text-muted); }
.ssb .ssb-sidebar-card .ssb-btn { align-self: flex-start; }


/* ---------- Geo section header (single posts) ----------
   The reference markup carried this header as inline styles. .ssb-geo (the link
   grid) and .ssb-footer-cta already exist above. */
.ssb .ssb-geo-section { margin: var(--ssb-sp-7) 0 var(--ssb-sp-6); }
.ssb .ssb-geo-head { display: flex; align-items: flex-end; gap: var(--ssb-sp-4); margin-bottom: var(--ssb-sp-5); flex-wrap: wrap; }
.ssb .ssb-geo-head > div { flex: 1; min-width: 260px; }
.ssb .ssb-geo-head h2 { margin: 0 0 6px; font-weight: 400; font-size: 28px; letter-spacing: -0.01em; }
.ssb .ssb-geo-head p { margin: 0; font-size: 14px; color: var(--ssb-text-muted); }
.ssb .ssb-footer-cta { margin-bottom: var(--ssb-sp-7); }
.ssb .ssb-footer-cta .ssb-eyebrow { color: var(--ssb-soft-green-text); margin: 0; }


/* ---------- Rebuilt index (front page) ----------
   Classes the reference markup carried as inline styles, plus the wrappers this
   plugin introduces. Everything else (.ssb-hero, .ssb-grid, .ssb-band,
   .ssb-cats, .ssb-search, .ssb-card) already exists above. */
.ssb .ssb-index { padding-bottom: var(--ssb-sp-8); }
.ssb .ssb-index-section { padding-top: var(--ssb-sp-7); }
.ssb .ssb-hero-tagline { margin: 0; color: rgba(255,255,255,.85); font-size: 16px; max-width: 440px; }
.ssb .ssb-btn--on-photo { border-color: rgba(255,255,255,.6); color: #FFFFFF; background: transparent; }
.ssb .ssb-btn--on-photo:hover { background: rgba(255,255,255,.12); color: #FFFFFF; border-color: #FFFFFF; }
.ssb .ssb-visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.ssb .ssb-section-head { display: flex; align-items: center; gap: var(--ssb-sp-4); flex-wrap: wrap; margin-bottom: var(--ssb-sp-5); }
.ssb .ssb-section-head h2 { margin: 0; flex: 1; font-weight: 400; font-size: 28px; letter-spacing: -0.01em; }
.ssb .ssb-index-actions { display: flex; justify-content: center; margin-top: var(--ssb-sp-6); }
.ssb .ssb-band-copy { display: flex; flex-direction: column; gap: var(--ssb-sp-4); align-items: flex-start; }
.ssb .ssb-band-copy h2 { margin: 0; }
.ssb .ssb-band-copy p { margin: 0; font-size: 15px; color: var(--ssb-text-body); }
.ssb .ssb-band-actions { display: flex; gap: var(--ssb-sp-3); flex-wrap: wrap; }
/* The index geo block sits inside .ssb-container already, so drop its own margin. */
.ssb .ssb-index .ssb-geo-section { margin-top: var(--ssb-sp-7); }


/* ---------- Header: white, per spec ----------
   design-notes maps the header to .ssb-header — white surface, hairline bottom
   border, dark nav text. But Liondar renders its OWN <header
   class="theme_header__main"> in brand green (#002918), so none of the
   .ssb-header rules above ever matched anything. These map the spec onto the
   theme's actual markup. The lime wordmark is swapped for the black one by an
   inline rule from ssb_styles_enqueue() — lime on white fails contrast. */
.ssb header.theme_header__main,
.ssb header.theme_header__main .theme-header-area,
.ssb header.theme_header__main .container { background-color: var(--ssb-surface); }
.ssb header.theme_header__main { border-bottom: 1px solid var(--ssb-border); }
.ssb header.theme_header__main a,
.ssb header.theme_header__main .theme-header-area a { color: var(--ssb-text); }
.ssb header.theme_header__main a:hover,
.ssb header.theme_header__main a:focus-visible,
.ssb header.theme_header__main .theme-header-area a:hover { color: var(--ssb-brand); }
/* Icon buttons (search, menu toggle) inherit the new text colour. */
.ssb header.theme_header__main svg { fill: currentColor; stroke: currentColor; }
.ssb header.theme_header__main i,
.ssb header.theme_header__main .theme-header-area i { color: var(--ssb-text); }

/* Liondar declares `#theme-header-one #primary-menu a { color: #FFF !important }`
   — two IDs plus !important, twice — and an !important background on the header
   itself. Nothing outranks that without !important, so this is the second (and
   last) documented use of it, per design-notes.md section 4. Without these the
   nav renders white-on-white and the menu disappears entirely. */
.ssb #theme-header-one,
.ssb #theme-header-one .theme-header-area { background-color: var(--ssb-surface) !important; }
.ssb #theme-header-one #primary-menu a { color: var(--ssb-text) !important; }
.ssb #theme-header-one #primary-menu a:hover,
.ssb #theme-header-one #primary-menu a:focus-visible { color: var(--ssb-brand) !important; }


/* ---------- Listing templates (archive / search / 404) ----------
   .ssb-breadcrumbs, .ssb-cats, .ssb-grid, .ssb-card, .ssb-pagination and
   .ssb-search all already exist above; these are the wrappers the reference
   markup carried as inline styles. */
.ssb .ssb-listing { padding: var(--ssb-sp-7) var(--ssb-sp-4) var(--ssb-sp-8); }
.ssb .ssb-listing-head { max-width: 720px; margin-bottom: var(--ssb-sp-5); }
.ssb .ssb-listing-head h1 { margin: 0 0 var(--ssb-sp-2); }
.ssb .ssb-listing-desc { color: var(--ssb-text-muted); font-size: 15px; }
.ssb .ssb-listing-desc p { margin: 0; }
.ssb .ssb-results-count { margin: 0; color: var(--ssb-text-muted); font-size: 15px; }
.ssb .ssb-listing .ssb-cats--sub { margin-bottom: var(--ssb-sp-6); }
.ssb .ssb-search--inset { background: var(--ssb-bg-alt); margin-bottom: var(--ssb-sp-6); }
.ssb .ssb-listing-empty { color: var(--ssb-text-muted); }
/* 404 */
.ssb .ssb-listing--404 { max-width: 640px; }
.ssb .ssb-404 { text-align: center; padding: var(--ssb-sp-8) 0; }
.ssb .ssb-404 h1 { margin: 0 0 var(--ssb-sp-3); }
.ssb .ssb-404-code { color: var(--ssb-soft-green-text); margin: 0 0 var(--ssb-sp-3); }
.ssb .ssb-404-copy { color: var(--ssb-text-muted); margin: 0; }
.ssb .ssb-404 .ssb-search--inset { margin: var(--ssb-sp-5) auto; }

/* ---------- Mobile: SlickNav hamburger + dropdown ----------
   The theme draws the hamburger bars with background-color:#FFF and renders the
   dropdown panel black with lime links — both built for the dark green header.
   On the white header the bars were invisible (zero contrast). Lime on white
   would also fail, so the panel becomes a white surface with dark text, matching
   the desktop header. */
.ssb .slicknav_btn .slicknav_icon-bar,
.ssb .slicknav_menu .slicknav_icon-bar { background-color: var(--ssb-text); }
.ssb .slicknav_btn:hover .slicknav_icon-bar,
.ssb .slicknav_btn:focus-visible .slicknav_icon-bar { background-color: var(--ssb-brand); }
.ssb .slicknav_btn:focus-visible { outline: 2px solid var(--ssb-focus); outline-offset: 2px; }
.ssb .slicknav_nav,
.ssb .slicknav_menu .slicknav_nav { background-color: var(--ssb-surface); border-top: 1px solid var(--ssb-border); }
.ssb .slicknav_nav a,
.ssb .slicknav_menu .slicknav_nav a { color: var(--ssb-text); }
.ssb .slicknav_nav a:hover,
.ssb .slicknav_nav a:focus-visible { color: var(--ssb-brand); }
.ssb .slicknav_nav li { border-bottom: 1px solid var(--ssb-border-soft); }
.ssb .slicknav_nav li:last-child { border-bottom: 0; }
/* Active menu item: the theme forces `#theme-header-one .is-active a { color:
   var(--lime-bright) !important }`. Lime (#CDF545) on white is about 1.4:1 — a
   WCAG failure, not just off-design — so this has to be matched. The design uses
   brand green for the active nav state. Third and last !important block. */
.ssb #theme-header-one .is-active a,
.ssb #theme-header-one .is-active > a { color: var(--ssb-brand) !important; }

/* ---------- WCAG AA corrections ----------
   Audited across index, single post, archive and 404. Three defects, two of them
   token-level and all measured against design-notes.md section 4's own promise
   that all text is at least WCAG AA on its background:
   1. --ssb-soft-green-text (#4C8D36) measured 4.06:1 on white and 3.88:1 on soft
      green, i.e. it failed everywhere it was used. Darkened in tokens.css.
   2. --ssb-text-muted (#757575) is fine on white (4.6:1) but 4.38:1 on
      --ssb-bg-alt and 4.41:1 on --ssb-soft-green. Those usages now take
      --ssb-text-muted-on-tint.
   3. Eyebrows rendered at 15px because the band and footer-CTA paragraph rules
      override .ssb-eyebrow's 12px. */
.ssb .ssb-toc .ssb-toc-title,
.ssb .ssb-quick-answer .ssb-toc-title,
.ssb .ssb-sidebar-card .ssb-sidebar-card-copy,
.ssb .ssb-footer-cta p { color: var(--ssb-text-muted-on-tint); }
.ssb .ssb-band-copy p.ssb-eyebrow,
.ssb .ssb-footer-cta p.ssb-eyebrow {
  font-size: var(--ssb-eyebrow-size);
  letter-spacing: var(--ssb-eyebrow-ls);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   Search — zero results (from the "Search no-results" design).
   Page-specific styles in that file, moved here on wiring up as its comment
   asked. The search form itself reuses .ssb-search--inset, so the design's
   inline background is not needed.
   -------------------------------------------------------------------------- */
.ssb .ssb-listing--noresults { padding-top: 0; padding-bottom: 0; }
.ssb .ssb-noresults { max-width: 640px; margin: 0 auto; padding: 72px 24px 88px; text-align: center; }
.ssb .ssb-noresults h1 { font-size: 32px; font-weight: 400; letter-spacing: -0.01em; margin: 0 0 8px; }
.ssb .ssb-noresults-copy { color: var(--ssb-text-muted); margin: 0 0 8px; }
.ssb .ssb-noresults .ssb-search--inset { margin: var(--ssb-sp-4) auto 0; }
.ssb .ssb-popular-wrap { margin-top: var(--ssb-sp-6); }
.ssb .ssb-popular-head { color: var(--ssb-text-muted); margin: 0 0 12px; }
.ssb .ssb-popular { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.ssb .ssb-popular a {
  background: var(--ssb-soft-green); color: var(--ssb-soft-green-deep);
  border-radius: var(--ssb-radius-pill); padding: 8px 16px; font-size: 13px; font-weight: 500;
}
.ssb .ssb-popular a:hover { background: var(--ssb-accent); color: var(--ssb-brand); }
.ssb .ssb-noresults-fallback {
  border-top: 1px solid var(--ssb-border); margin-top: var(--ssb-sp-6); padding-top: var(--ssb-sp-6);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: left;
}
@media (max-width: 767px) { .ssb .ssb-noresults-fallback { grid-template-columns: 1fr; } }
.ssb .ssb-noresults-fallback a { display: flex; flex-direction: column; gap: 8px; }
.ssb .ssb-noresults-fallback img {
  width: 100%; height: 110px; object-fit: cover; border-radius: var(--ssb-radius-tile);
}
.ssb .ssb-noresults-fallback span { font-size: 13px; font-weight: 500; line-height: 1.4; }

/* WCAG AA: .ssb-search--inset tints the field to --ssb-bg-alt, on which the
   default placeholder colour (--ssb-text-muted #757575) measures 4.38:1 and
   fails. This affected the existing search and 404 templates too, not just the
   new one. --ssb-text-muted-on-tint is 4.70:1. */
.ssb .ssb-search--inset input::placeholder { color: var(--ssb-text-muted-on-tint); }

/* --------------------------------------------------------------------------
   Sidebar signup card — make the sticky actually persist, and stack above.

   position:sticky is constrained by its CONTAINING BLOCK, which here is
   Liondar's .sidebar.blog-sidebar — a content-height div (~824px) inside a
   .col-lg-4 that the flex row stretches to the full article height (~49,900px
   on a long post). So the card unpinned at roughly 900px of scroll and was gone
   for the remaining ~98% of the article: persistent in name only.

   Stretching .sidebar to fill its column gives the sticky room to travel the
   whole article. Verified safe: that div has no background, border or padding,
   and it is flex-direction:column, so its widgets keep their own heights.

   z-index is explicit so the card paints above positioned page content rather
   than being overlapped by a later section.
   -------------------------------------------------------------------------- */
.ssb .sidebar.blog-sidebar { min-height: 100%; }
@media (min-width: 1025px) {
  .ssb .ssb-sidebar-sticky { z-index: 2; }
}

/* --------------------------------------------------------------------------
   Categories dropdown (desktop) — v2 design: white panel, lime hover.

   The design ships as .nav-item / .dropdown, which do not exist here. The real
   element is Liondar's `ul.liondar-submenu` inside #primary-menu, so the design
   is mapped onto that. Replaces the v1 lime-panel treatment.

   Why every override carries TWO ids: the white-header work added
     .ssb #theme-header-one #primary-menu a { color: var(--ssb-text) !important }
   at specificity (2,1,1). Anything less loses to it. (That rule is also what
   originally left the submenu near-black on dark green at 1.19:1.)

   Four site-specific adaptations the design cannot know about:

   1. REVEAL MECHANISM. The design hides the panel with `display: none` and shows
      it with `display: flex`. Liondar instead reveals it with opacity/visibility
      (`main.css`: `li:hover ul.liondar-submenu`). So `display: flex` is set
      unconditionally here — switching to `display: none` would fight the theme's
      own reveal and the panel would never open.
   2. HOVER BACKGROUND. `main.css` sets
        ul.liondar-submenu li a:hover { color: #000; background: transparent }
      Both halves have to be overridden or the lime highlight never paints and the
      text lands at 1.33:1 on it.
   3. HOVER BRIDGE. The panel opens on pure CSS hover, so the design's
      `top: calc(100% + 16px)` would leave a dead 16px band that drops the hover
      chain and makes the menu unreachable. The ::before spans it invisibly.
   4. KEYBOARD. The design asks for `:focus-within`, which the theme does not
      implement — it opens on `:hover` only. Added below, so the panel is
      reachable by tab as well as by pointer.

   Contrast: rest #121111 on #FFFFFF = 18.85:1. Hover #002918 on #CDF545 = 12.59:1.
   -------------------------------------------------------------------------- */
@media (min-width: 1025px) {
  .ssb #theme-header-one #primary-menu .liondar-submenu:not(.slicknav_hidden) {
    display: flex !important; /* see note 1 */
    flex-direction: column;
    gap: 4px;
    background: var(--ssb-surface) !important;
    border: 1px solid var(--ssb-border) !important;
    width: 300px !important;
    min-width: 300px !important;
    padding: 10px !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 32px rgba(18, 17, 17, 0.14) !important;
    top: calc(100% + 16px) !important;
    left: -24px !important;
  }

  /* Invisible hover bridge across the 16px gap — see note 3. */
  .ssb #theme-header-one #primary-menu .liondar-submenu:not(.slicknav_hidden)::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -16px;
    height: 16px;
  }

  /* Keyboard parity with the design's :focus-within — see note 4. */
  .ssb #theme-header-one #primary-menu li:focus-within > .liondar-submenu:not(.slicknav_hidden) {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .ssb #theme-header-one #primary-menu .liondar-submenu:not(.slicknav_hidden) li {
    width: 100%;
  }

  .ssb #theme-header-one #primary-menu .liondar-submenu:not(.slicknav_hidden) li a {
    display: block !important;
    padding: 16px 20px !important;
    border-radius: 8px;
    font-size: 16px !important;
    /* main.css sets `ul.liondar-submenu li a { font-weight: 400 !important }`,
       so the design's 600 needs !important or it renders at 400. */
    font-weight: 600 !important;
    letter-spacing: 0.08em;
    text-transform: uppercase !important;
    background: transparent;
    color: var(--ssb-text) !important; /* #121111 on white = 18.85:1 */
    transition: background 140ms ease, color 140ms ease;
  }

  .ssb #theme-header-one #primary-menu .liondar-submenu:not(.slicknav_hidden) li a:hover,
  .ssb #theme-header-one #primary-menu .liondar-submenu:not(.slicknav_hidden) li a:focus,
  .ssb #theme-header-one #primary-menu .liondar-submenu:not(.slicknav_hidden) li a:focus-visible {
    background: var(--ssb-accent) !important; /* see note 2 */
    color: var(--ssb-brand) !important;       /* #002918 on #CDF545 = 12.59:1 */
  }
}

/* --------------------------------------------------------------------------
   Hero banner crop.

   The banner is 2120x742 (aspect 2.86); the hero panel renders around 2.45 at
   desktop, so `object-fit: cover` overflows by ~14% horizontally. Centred, that
   takes ~7% off each side — and the right side is where the subjects are, so it
   clips the client's hair.

   Measured on the source: the left 55.7% of the frame is flat backdrop, subjects
   occupy the right 44%. Anchoring right takes the whole 14% off the LEFT, which
   is flat colour, and keeps the subjects intact. The hero copy is 560px of a
   ~1250px panel, so it still sits entirely over flat backdrop.

   Left at the default 50% below 1025px: there the panel is portrait-ish and cover
   crops hard horizontally, where a centred band keeps text over flat colour
   rather than over faces.
   -------------------------------------------------------------------------- */
@media (min-width: 1025px) {
  .ssb .ssb-hero-img { object-position: 100% 50%; }
}


/* --------------------------------------------------------------------------
   Hub-page components  —  added for /for-pros/, named for reuse
   --------------------------------------------------------------------------
   Nothing here is page-private. These are the patterns the library was missing
   when the For Pros hub was built; any future hub (For Clients, Trends, Guides)
   composes from them rather than inventing a parallel set. Every value is a
   token — no new hex.
   -------------------------------------------------------------------------- */

/* ---- Generic page scaffolding ---- */
.ssb .ssb-page { padding-bottom: var(--ssb-sp-8); }
.ssb .ssb-section { padding-top: var(--ssb-sp-7); }
/* Content + sidebar split, wider than the single-post .ssb-post-layout. */
.ssb .ssb-split { display: grid; grid-template-columns: 1.5fr 1fr; gap: var(--ssb-sp-7); align-items: start; }

/* ---- Shared text roles ---- */
.ssb .ssb-lede { margin: 0; max-width: 520px; font-size: 17px; line-height: 1.5; color: var(--ssb-text-body); }
.ssb .ssb-note { margin: 0; font-size: var(--ssb-caption-size); line-height: var(--ssb-caption-lh); color: var(--ssb-text-muted-on-tint); }
.ssb .ssb-meta { font-size: 12px; color: var(--ssb-text-muted); }
.ssb .ssb-textlink {
  font-size: 14px; font-weight: 500; color: var(--ssb-brand);
  border-bottom: 1px solid rgba(0, 41, 24, .35); padding-bottom: 2px;
}
.ssb .ssb-textlink:hover { border-bottom-color: var(--ssb-brand); }
.ssb .ssb-section-head .ssb-textlink { flex: 0 0 auto; }
/* Badge + supporting line, as an eyebrow. */
.ssb .ssb-eyebrow-row { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin: 0; font-size: var(--ssb-caption-size); color: var(--ssb-text-muted-on-tint); }
/* .ssb-badge is absolutely positioned for photo overlays; this un-pins it. */
.ssb .ssb-badge--inline { position: static; top: auto; left: auto; }

/* ---- Hub hero: soft-green band, copy left, photo tile right ----
   Distinct from .ssb-hero, which is the index's photo panel with a dark
   gradient and white copy laid over it. */
.ssb .ssb-hubhero {
  background: var(--ssb-soft-green);
  border-bottom: 1px solid var(--ssb-border);
  padding: var(--ssb-sp-8) 0 calc(var(--ssb-sp-8) + var(--ssb-sp-5));
}
.ssb .ssb-hubhero-grid {
  display: grid; grid-template-columns: 1fr 520px;
  gap: var(--ssb-sp-8); align-items: center;
}
.ssb .ssb-hubhero-copy { display: flex; flex-direction: column; align-items: flex-start; gap: var(--ssb-sp-5); }
.ssb .ssb-hubhero-copy h1 {
  margin: 0; color: var(--ssb-brand); font-weight: 400;
  font-size: clamp(32px, 4.2vw, 52px); line-height: 1.12;
  letter-spacing: -0.03em; text-wrap: balance;
}
.ssb .ssb-hubhero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: var(--ssb-sp-5); }
.ssb .ssb-hubhero-media { position: relative; }
.ssb .ssb-hubhero-img {
  display: block; width: 100%; height: 400px; object-fit: cover;
  border-radius: var(--ssb-radius-card);
}

/* ---- Spotlight: compact article card that can overlap a photo ---- */
.ssb .ssb-hubhero-media .ssb-spotlight {
  position: absolute; left: -32px; bottom: -28px; width: 340px; max-width: calc(100% - 24px);
}
.ssb .ssb-spotlight {
  display: flex; flex-direction: column; gap: 6px;
  background: var(--ssb-surface); border: 1px solid var(--ssb-border);
  border-radius: var(--ssb-radius-tile); box-shadow: var(--ssb-shadow-raised);
  padding: 18px 22px; color: var(--ssb-text);
}
.ssb .ssb-spotlight:hover { box-shadow: var(--ssb-shadow-overlay); }
.ssb .ssb-spotlight .ssb-eyebrow { color: var(--ssb-soft-green-text); }
.ssb .ssb-spotlight-title { font-size: 17px; font-weight: 500; line-height: 1.3; color: var(--ssb-text); text-wrap: pretty; }
.ssb .ssb-spotlight:hover .ssb-spotlight-title { color: var(--ssb-brand); }

/* ---- Category rail: hairline band wrapping a .ssb-cats row ---- */
.ssb .ssb-catbar { border-bottom: 1px solid var(--ssb-border); padding: var(--ssb-sp-5) 0; }

/* ---- Perk tiles: the checklist sibling of .ssb-band-stats ---- */
.ssb .ssb-band-perks { display: flex; flex-direction: column; gap: var(--ssb-sp-3); }
.ssb .ssb-band-perk {
  display: flex; align-items: flex-start; gap: var(--ssb-sp-3);
  background: var(--ssb-surface); border-radius: var(--ssb-radius-tile); padding: 16px 18px;
}
.ssb .ssb-band-perk-check {
  flex: 0 0 auto; width: 22px; height: 22px; border-radius: 6px;
  background: var(--ssb-accent); color: var(--ssb-brand);
  display: inline-flex; align-items: center; justify-content: center;
}
.ssb .ssb-band-perk-copy { display: flex; flex-direction: column; gap: 2px; }
.ssb .ssb-band-perk-copy strong { font-size: 14px; font-weight: 500; color: var(--ssb-text); }
.ssb .ssb-band-perk-copy span { font-size: var(--ssb-caption-size); line-height: var(--ssb-caption-lh); color: var(--ssb-text-muted); }
.ssb .ssb-band .ssb-note { color: var(--ssb-text-muted-on-tint); }
.ssb .ssb-band .ssb-band-actions { align-items: center; }

/* ---- Ranked list ("most read") ---- */
.ssb .ssb-ranked { list-style: none; margin: 0; padding: 0; }
.ssb .ssb-ranked li { border-bottom: 1px solid var(--ssb-border-soft); }
.ssb .ssb-ranked li:last-child { border-bottom: 0; }
.ssb .ssb-ranked a {
  display: flex; align-items: center; gap: var(--ssb-sp-5);
  padding: 18px var(--ssb-sp-2); color: var(--ssb-text);
}
.ssb .ssb-ranked a:hover { background: var(--ssb-bg-alt); }
.ssb .ssb-ranked-num {
  flex: 0 0 44px; font-family: var(--ssb-font-num); font-weight: 500;
  font-size: 28px; line-height: 1; letter-spacing: -0.03em; color: var(--ssb-brand);
}
.ssb .ssb-ranked-copy { display: flex; flex-direction: column; gap: 4px; }
.ssb .ssb-ranked-title { font-size: 16px; font-weight: 500; line-height: 1.3; text-wrap: pretty; }
.ssb .ssb-ranked a:hover .ssb-ranked-title { color: var(--ssb-brand); }

/* ---- Forms inside a sidebar card (e.g. an MC4WP newsletter embed) ---- */
.ssb .ssb-sidebar-card .mc4wp-form-fields { display: flex; flex-wrap: wrap; gap: var(--ssb-sp-2); }
.ssb .ssb-sidebar-card input[type="email"],
.ssb .ssb-sidebar-card input[type="text"] {
  flex: 1 1 160px; min-width: 0;
  font: 400 13px/1.4 var(--ssb-font-text); color: var(--ssb-text);
  background: var(--ssb-surface); border: 1px solid var(--ssb-border);
  border-radius: var(--ssb-radius-btn); padding: 11px 14px;
}
.ssb .ssb-sidebar-card input[type="email"]:focus,
.ssb .ssb-sidebar-card input[type="text"]:focus { border-color: var(--ssb-brand); outline: 2px solid var(--ssb-focus); outline-offset: 1px; }
.ssb .ssb-sidebar-card input[type="submit"],
.ssb .ssb-sidebar-card button[type="submit"] {
  flex: 0 0 auto; font: 500 13px var(--ssb-font-text);
  background: var(--ssb-brand); color: #FFFFFF; border: 0; cursor: pointer;
  border-radius: var(--ssb-radius-btn); padding: 11px 18px;
}
.ssb .ssb-sidebar-card input[type="submit"]:hover,
.ssb .ssb-sidebar-card button[type="submit"]:hover { background: var(--ssb-brand-hover); }
.ssb .ssb-sidebar-card .mc4wp-response { font-size: var(--ssb-caption-size); color: var(--ssb-text-muted-on-tint); }

/* ---- Dismissible sticky conversion bar ---- */
.ssb .ssb-stickybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between; gap: var(--ssb-sp-4);
  background: rgba(255, 255, 255, .97); backdrop-filter: blur(8px);
  border-top: 1px solid var(--ssb-border); box-shadow: 0 -2px 12px rgba(203, 203, 203, .5);
  padding: var(--ssb-sp-3) var(--ssb-sp-6);
}
.ssb .ssb-stickybar[hidden] { display: none; }
.ssb .ssb-stickybar p { margin: 0; font-size: 14px; font-weight: 500; color: var(--ssb-text); }
.ssb .ssb-stickybar-actions { display: flex; align-items: center; gap: var(--ssb-sp-3); }
.ssb .ssb-stickybar-close {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; padding: 0;
  background: transparent; border: 0; border-radius: var(--ssb-radius-btn);
  color: var(--ssb-text-muted); cursor: pointer;
}
.ssb .ssb-stickybar-close:hover { background: var(--ssb-bg-alt); color: var(--ssb-text); }
/* Class lands on <html> when the bar is showing, so the page clears it. */
.ssb-has-stickybar .ssb-page,
.ssb-has-stickybar .ssb-index { padding-bottom: calc(var(--ssb-sp-8) + 72px); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .ssb .ssb-hubhero { padding: var(--ssb-sp-7) 0; }
  .ssb .ssb-hubhero-grid { grid-template-columns: 1fr; gap: var(--ssb-sp-6); }
  .ssb .ssb-hubhero-img { height: 320px; }
  .ssb .ssb-hubhero-media .ssb-spotlight { position: static; left: auto; bottom: auto; width: auto; max-width: none; margin-top: var(--ssb-sp-4); }
  .ssb .ssb-split { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .ssb .ssb-hubhero { padding: var(--ssb-sp-6) 0; }
  .ssb .ssb-hubhero-img { height: 240px; }
  .ssb .ssb-hubhero-actions { gap: var(--ssb-sp-4); }
  .ssb .ssb-ranked a { gap: var(--ssb-sp-4); padding: 16px 0; }
  .ssb .ssb-ranked-num { flex-basis: 36px; font-size: 22px; }
  .ssb .ssb-stickybar { padding: var(--ssb-sp-3) var(--ssb-sp-4); justify-content: center; }
  .ssb .ssb-stickybar p { display: none; }
  .ssb .ssb-stickybar-actions { width: 100%; }
  .ssb .ssb-stickybar-actions .ssb-btn { flex: 1; }
}
