/*
Theme Name: Nybro AutoClean
Theme URI: https://nybro-autoclean.com
Author: Marcus J. Holloway
Author URI: https://nybro-autoclean.com/about-us/
Description: A clean, fast, reader-friendly automotive theme for Nybro AutoClean — featuring a bright white design, readable typography, and modern layout for car wash, detailing, DIY repair, accessories, interior design, and EV content.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: Private
License URI: https://nybro-autoclean.com
Text Domain: nybro-autoclean
Tags: blog, automotive, clean, custom-menu, featured-images, footer-widgets, full-width-template, sticky-post, threaded-comments, translation-ready, white
*/

/* =============================================
   NYBRO AUTOCLEAN — MAIN STYLESHEET v2
   Clean White + Electric Blue Theme
   Optimized for Readability + Speed
   ============================================= */

:root {
  --white:       #ffffff;
  --bg:          #ffffff;
  --bg-alt:      #f7f9fc;
  --bg-hero:     #f0f6ff;
  --border:      #e5e9f0;
  --border-soft: #eef1f6;

  --text:        #1f2937;
  --text-soft:   #4b5563;
  --muted:       #6b7280;

  --primary:     #2563eb;
  --primary-dk:  #1d4ed8;
  --primary-lt:  #dbeafe;
  --accent:      #0ea5e9;
  --success:     #10b981;

  --navy:        #0f172a;
  --shadow-sm:   0 1px 2px rgba(15,23,42,0.05);
  --shadow:      0 4px 12px rgba(15,23,42,0.07);
  --shadow-lg:   0 10px 25px rgba(15,23,42,0.08);

  --radius:      10px;
  --radius-lg:   14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--primary); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--primary-dk); text-decoration: underline; }

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

/* =============================================
   TYPOGRAPHY — Clean, readable, no uppercase spam
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.6em;
  letter-spacing: -0.01em;
}
h1 { font-size: 2.2rem; }     /* ~37px */
h2 { font-size: 1.75rem; }    /* ~30px */
h3 { font-size: 1.35rem; }    /* ~23px */
h4 { font-size: 1.15rem; }    /* ~20px */
h5 { font-size: 1rem; }
h6 { font-size: 0.9rem; }

@media (max-width: 720px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.45rem; }
  h3 { font-size: 1.2rem; }
}

p { margin-bottom: 1.1em; color: var(--text); }

ul, ol { padding-left: 1.4em; margin-bottom: 1.2em; }
li { margin-bottom: 0.4em; color: var(--text); }

blockquote {
  border-left: 4px solid var(--primary);
  background: var(--bg-alt);
  padding: 16px 20px;
  margin: 1.4em 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text-soft);
  font-style: italic;
}

code {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 0.9em;
  font-family: 'SF Mono', Consolas, Monaco, monospace;
}

hr { border: 0; height: 1px; background: var(--border); margin: 2em 0; }

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2em 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
th, td { padding: 10px 14px; border-bottom: 1px solid var(--border); text-align: left; }
th { background: var(--bg-alt); font-weight: 600; color: var(--navy); }
tr:last-child td { border-bottom: 0; }

/* =============================================
   LAYOUT
   ============================================= */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-wrapper { min-height: 100vh; display: flex; flex-direction: column; }
.site-content { flex: 1; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.2s ease;
}
.site-header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-branding .site-logo { display: block; line-height: 0; }
.site-branding .site-logo img { max-height: 52px; width: auto; }
.site-title-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.main-navigation ul {
  display: flex;
  list-style: none;
  gap: 4px;
  padding: 0;
  margin: 0;
}
.main-navigation a {
  color: var(--text);
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.15s ease;
  display: block;
}
.main-navigation a:hover {
  color: var(--primary);
  background: var(--primary-lt);
  text-decoration: none;
}
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
  color: var(--primary);
  background: var(--primary-lt);
}

.main-navigation ul ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  display: none;
  flex-direction: column;
  padding: 8px;
  z-index: 200;
}
.main-navigation li { position: relative; }
.main-navigation li:hover > ul { display: flex; }

.menu-toggle {
  display: none;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 9px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
}
.menu-toggle:hover { background: var(--primary-dk); }

@media (max-width: 900px) {
  .menu-toggle { display: inline-block; }
  .main-navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 14px 20px;
  }
  .main-navigation.toggled { display: block; }
  .main-navigation ul { flex-direction: column; gap: 2px; }
  .main-navigation a { padding: 11px 14px; }
  .main-navigation ul ul { position: static; box-shadow: none; border: 0; padding-left: 16px; display: block; }
}

/* =============================================
   HERO (Front page only)
   ============================================= */
.hero-banner {
  background: linear-gradient(180deg, var(--bg-hero) 0%, var(--white) 100%);
  padding: 70px 24px 60px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.hero-logo {
  max-width: 110px;
  margin: 0 auto 24px;
  display: block;
}
.hero-title {
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--navy);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.hero-title span {
  color: var(--primary);
  background: linear-gradient(120deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-desc {
  font-size: 1.12rem;
  color: var(--text-soft);
  max-width: 680px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.hero-tag {
  background: var(--white);
  color: var(--primary);
  padding: 7px 16px;
  border: 1px solid var(--primary-lt);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.15s;
}
.hero-tag:hover { background: var(--primary); color: #fff; }

@media (max-width: 720px) {
  .hero-banner { padding: 48px 20px 40px; }
  .hero-title { font-size: 1.9rem; }
  .hero-desc { font-size: 1rem; }
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--navy);
  padding: 36px 24px;
  color: #fff;
}
.stats-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.stat-num span { font-size: 1.3rem; color: var(--accent); }
.stat-lbl {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-top: 4px;
  font-weight: 500;
}
@media (max-width: 720px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-num { font-size: 1.7rem; }
}

/* =============================================
   SECTIONS
   ============================================= */
.nybro-section { padding: 64px 0; }
.nybro-section.alt-bg { background: var(--bg-alt); }

.section-eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 10px;
}
.section-heading {
  text-align: center;
  font-size: 2.1rem;
  margin-bottom: 12px;
  color: var(--navy);
}
.section-heading span { color: var(--primary); }
.section-intro {
  text-align: center;
  color: var(--text-soft);
  max-width: 640px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
}

/* =============================================
   NICHES GRID
   ============================================= */
.niches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 22px;
}
.niche-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}
.niche-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.niche-card-icon {
  font-size: 2rem;
  display: inline-block;
  margin-bottom: 10px;
}
.niche-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.niche-card-desc {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 14px;
}
.niche-card-meta {
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-soft);
}
.cat-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.cat-pill {
  background: var(--bg-alt);
  color: var(--text-soft);
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: 50px;
  font-weight: 500;
}

/* =============================================
   POSTS GRID (card layout)
   ============================================= */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.post-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.post-thumb, .post-thumb img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}
.post-thumb-placeholder {
  width: 100%;
  height: 190px;
  background: linear-gradient(135deg, var(--bg-hero), var(--primary-lt));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.post-card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.post-category { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.post-category a { color: var(--primary); }
.post-title { font-size: 1.15rem; margin-bottom: 10px; line-height: 1.4; }
.post-title a { color: var(--navy); }
.post-title a:hover { color: var(--primary); text-decoration: none; }
.post-excerpt { color: var(--text-soft); font-size: 0.95rem; margin-bottom: 16px; flex: 1; }
.post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--muted);
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
}
.read-more { color: var(--primary); font-weight: 600; }

/* =============================================
   SINGLE POST / PAGE
   ============================================= */
.content-area {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  padding: 40px 0 60px;
}
body.no-sidebar .content-area,
body.page .content-area { grid-template-columns: 1fr; max-width: 820px; margin: 0 auto; }

@media (max-width: 900px) {
  .content-area { grid-template-columns: 1fr; }
}

.entry-header { margin-bottom: 24px; }
.breadcrumbs {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 14px;
}
.breadcrumbs a { color: var(--primary); }
.breadcrumbs .sep { margin: 0 6px; color: var(--border); }

.entry-category {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.entry-category a { color: var(--primary); }

.entry-title {
  font-size: 2rem;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 14px;
}
@media (max-width: 720px) { .entry-title { font-size: 1.55rem; } }

.entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--muted);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.entry-meta a { color: var(--primary); }

.entry-thumbnail {
  border-radius: var(--radius-lg);
  margin: 24px 0;
  width: 100%;
  height: auto;
}

.entry-content { font-size: 1.05rem; line-height: 1.75; }
.entry-content h2 { margin-top: 1.6em; }
.entry-content h3 { margin-top: 1.4em; }
.entry-content img { border-radius: var(--radius); margin: 1.2em 0; }
.entry-content a { text-decoration: underline; text-underline-offset: 3px; }

.entry-footer { margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--border); }
.entry-tags { font-size: 0.9rem; color: var(--muted); }
.entry-tags a {
  display: inline-block;
  background: var(--bg-alt);
  color: var(--text-soft);
  padding: 4px 10px;
  border-radius: 50px;
  margin: 2px 4px 2px 0;
  font-size: 0.82rem;
  text-decoration: none;
}
.entry-tags a:hover { background: var(--primary-lt); color: var(--primary); }

/* =============================================
   SIDEBAR
   ============================================= */
.widget-area .widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.widget-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}
.widget ul { list-style: none; padding: 0; }
.widget ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 0;
}
.widget ul li:last-child { border-bottom: 0; }
.widget ul li a { color: var(--text); }
.widget ul li a:hover { color: var(--primary); text-decoration: none; }
.widget input[type=search], .widget input[type=text] {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
}
.widget input[type=submit], .widget button {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
}
.widget input[type=submit]:hover, .widget button:hover { background: var(--primary-dk); }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.15s ease;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dk); color: #fff; text-decoration: none; }
.btn-outline { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; text-decoration: none; }

/* =============================================
   PAGINATION
   ============================================= */
.pagination { margin-top: 40px; text-align: center; }
.pagination .nav-links {
  display: inline-flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}
.pagination .page-numbers {
  padding: 9px 14px;
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-weight: 500;
  min-width: 40px;
  display: inline-block;
}
.pagination .page-numbers:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; }
.pagination .page-numbers.current {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* =============================================
   COMMENTS
   ============================================= */
.comments-area { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }
.comments-title { margin-bottom: 20px; }
.comment-list { list-style: none; padding: 0; }
.comment { padding: 16px 0; border-bottom: 1px solid var(--border-soft); }
.comment-meta { font-size: 0.88rem; color: var(--muted); margin-bottom: 8px; }
.comment-reply-link { color: var(--primary); font-size: 0.88rem; font-weight: 600; }
.comment-form input[type=text], .comment-form input[type=email], .comment-form input[type=url], .comment-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 12px;
  font-family: inherit;
  font-size: 0.95rem;
}
.comment-form textarea { min-height: 120px; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--navy);
  color: #cbd5e1;
  padding: 56px 0 24px;
  margin-top: 60px;
  font-size: 0.94rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 32px;
}
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand img { max-width: 150px; background: #fff; padding: 10px; border-radius: 10px; margin-bottom: 16px; }
.footer-brand .site-title-text { color: #fff; }
.footer-desc { color: #94a3b8; font-size: 0.9rem; line-height: 1.65; margin-bottom: 14px; }
.footer-email { color: var(--accent); font-weight: 600; font-size: 0.92rem; }

.footer-col-title {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { padding: 5px 0; border: 0; margin: 0; }
.footer-links a { color: #cbd5e1; font-size: 0.92rem; }
.footer-links a:hover { color: var(--accent); text-decoration: none; }

.footer-divider { border: 0; height: 1px; background: rgba(255,255,255,0.08); margin-bottom: 20px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: #94a3b8;
}

/* =============================================
   404 PAGE
   ============================================= */
.error-404 {
  text-align: center;
  padding: 100px 20px;
  max-width: 560px;
  margin: 0 auto;
}
.error-404 .error-code {
  font-size: 6rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 20px;
}

/* =============================================
   UTILITIES / ALIGNMENTS (WP core classes)
   ============================================= */
.alignleft { float: left; margin: 0 20px 10px 0; }
.alignright { float: right; margin: 0 0 10px 20px; }
.aligncenter { margin: 0 auto 10px; display: block; }
.alignwide { max-width: 100%; }
.alignfull { max-width: 100%; width: 100%; }
.wp-caption { max-width: 100%; }
.wp-caption-text {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 6px;
  font-style: italic;
}
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.sticky { display: block; }
.bypostauthor { display: block; }

/* =============================================
   AUTHOR CARDS (used on About Us page)
   ============================================= */
.author-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
  margin: 30px 0;
}
.author-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}
.author-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.author-card .author-photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: block;
  border: 3px solid var(--primary-lt);
  object-fit: cover;
}
.author-card .author-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.author-card .author-role {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.author-card .author-bio {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 14px;
}
.author-card .author-meta {
  font-size: 0.82rem;
  color: var(--muted);
  padding-top: 12px;
  border-top: 1px solid var(--border-soft);
}
.author-card .author-meta a { color: var(--primary); }
.author-card.featured { border-color: var(--primary); }
.author-card .founder-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
}

/* Gutenberg alignment support */
.wp-block-image img { border-radius: var(--radius); }
.wp-block-quote {
  border-left: 4px solid var(--primary);
  background: var(--bg-alt);
  padding: 16px 20px;
  margin: 1.4em 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.wp-block-table table { margin: 0; }
.wp-block-button__link { background: var(--primary); color: #fff; border-radius: 8px; padding: 12px 24px; }
