/* National Tow Connect — Modern Light Design
   Warm red/orange palette, ZocDoc-style layout, urgency-focused */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* Towing urgency palette */
  --bg: #f7f8f9;
  --bg-hero: #fff5f5;
  --bg-warm: #fee2e2;
  --bg-card: #ffffff;
  --bg-light: #fafafa;
  --red: #ef4444;
  --red-hover: #dc2626;
  --red-bright: #f87171;
  --orange: #f97316;
  --orange-dk: #ea580c;
  --orange-light: #fff7ed;
  --green: #22c55e;
  --green-light: #dcfce7;
  --text: #1a1a2e;
  --text-muted: rgba(26,26,46,.65);
  --text-placeholder: rgba(26,26,46,.4);
  --link: #dc2626;
  --border: rgba(26,26,46,.1);
  --border-light: rgba(26,26,46,.06);
  --white: #ffffff;
  --dark: #1a1a2e;
  --star: #fbbf24;
  --radius: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 999px;
  --shadow: 0 1px 4px rgba(0,0,0,.2);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.1);
  --shadow-md: 0 2px 8px rgba(0,0,0,.12);
  --shadow-lg: 0 4px 16px rgba(0,0,0,.15);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --transition: all .2s ease;
  --container: 1200px;
  --success: #22c55e;
  --accent: #f97316;
  --accent-dk: #ea580c;
}

/* -- Reset ------------------------------------------------- */
*, *::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: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: var(--link); text-decoration: none; transition: color .2s }
a:hover { text-decoration: underline }
img { max-width: 100%; display: block }
ul { list-style: none }
h1, h2, h3, h4 { line-height: 1.25; font-weight: 700 }

/* -- SR Only ---------------------------------------------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* -- Container -------------------------------------------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px }
@media (min-width: 768px) { .container { padding: 0 40px } }
@media (min-width: 1200px) { .container { padding: 0 24px } }

/* -- Utility ---------------------------------------------- */
.text-center { text-align: center }
.text-accent { color: var(--red) }

/* -- Header ----------------------------------------------- */
.site-header {
  background: var(--white);
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 16px;
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
}
.logo {
  display: flex; gap: 8px; align-items: center;
  font-weight: 700; font-size: 1.15rem;
  color: var(--text); text-decoration: none !important;
}
.logo:hover { text-decoration: none !important }
.logo-icon { font-size: 1.3rem }
.logo span { color: var(--red) }
.logo-text { color: var(--text) }

.header-emergency {
  display: flex; align-items: center; gap: 12px;
  font-size: .85rem; color: var(--text-muted);
}
.header-emergency span { font-weight: 500 }

.header-cta { display: flex; gap: 10px; align-items: center }

@media (max-width: 600px) {
  .header-inner { gap: 8px }
  .header-emergency { display: none }
  .logo-text { display: none }
}

/* -- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 20px; border-radius: var(--radius); font-weight: 600;
  font-size: .9rem; text-decoration: none !important; border: none;
  cursor: pointer; transition: var(--transition); font-family: var(--font);
  line-height: 1.4; white-space: nowrap;
}
.btn:hover { text-decoration: none !important }
.btn-primary {
  background: var(--red); color: #fff !important;
  font-weight: 700; border: none;
}
.btn-primary:hover { background: var(--red-hover); color: #fff !important; transform: translateY(-1px) }
.btn-outline {
  border: 1px solid var(--text); color: var(--text) !important;
  background: transparent;
}
.btn-outline:hover { background: var(--text); color: var(--white) !important }
.btn-ghost {
  background: var(--white); color: var(--text) !important;
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--bg); border-color: var(--text); color: var(--text) !important }
.btn-orange {
  background: var(--orange); color: #fff !important; font-weight: 700;
}
.btn-orange:hover { background: var(--orange-dk); color: #fff !important }
.btn-sm { padding: 8px 16px; font-size: .85rem }
.btn-lg { padding: 16px 32px; font-size: 1rem }
.btn-block { display: block; width: 100% }

/* -- Hero ------------------------------------------------- */
.hero {
  background: var(--bg-hero);
  padding: 0 0 48px;
  position: relative;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -.01em;
}
.hero p, .hero .subtitle, .hero-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 500px;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--bg-warm);
  color: var(--red);
  border-radius: var(--radius-pill);
  padding: 5px 16px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* -- Search Card ------------------------------------------ */
.search-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 16px;
  display: flex; flex-direction: column; gap: 0;
  max-width: 560px;
  width: 100%;
}
.search-row {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 12px;
  border-bottom: 1px solid var(--border-light);
  position: relative;
}
.search-row:last-of-type { border-bottom: none }
.search-row svg { flex-shrink: 0; color: var(--text-muted); width: 20px; height: 20px }
.search-row input {
  flex: 1; border: none; outline: none; background: transparent;
  font-size: 1rem; font-family: var(--font); font-weight: 500;
  color: var(--text); padding: 0;
}
.search-row input::placeholder { color: var(--text-placeholder); font-weight: 400 }
.search-submit {
  background: var(--red); color: #fff;
  border: none; border-radius: var(--radius);
  padding: 18px; width: 100%;
  font-size: 1.05rem; font-weight: 700;
  cursor: pointer; font-family: var(--font);
  transition: background .2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 8px;
}
.search-submit:hover { background: var(--red-hover) }

/* Legacy search bar (used on other pages) */
.search-bar {
  display: flex; align-items: stretch;
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow); overflow: hidden; max-width: 560px;
}
.search-bar input {
  flex: 1; padding: 16px 20px; border: none; outline: none;
  font-size: 1rem; font-family: var(--font); color: var(--text);
  background: transparent; min-width: 0;
}
.search-bar input::placeholder { color: var(--text-placeholder) }
.search-bar button {
  background: var(--red); color: #fff;
  border: none; padding: 16px 28px; font-weight: 700;
  font-size: 1rem; cursor: pointer; font-family: var(--font);
  transition: background .2s; white-space: nowrap;
}
.search-bar button:hover { background: var(--red-hover) }

/* -- Hero Stats ------------------------------------------- */
.hero-stats {
  display: flex; gap: 24px; flex-wrap: wrap; margin-top: 28px;
}
.hero-stat { text-align: center }
.hero-stat strong {
  display: block; font-size: 1.5rem; font-weight: 800; color: var(--red);
}
.hero-stat span { font-size: .8rem; color: var(--text-muted) }

/* -- Trust Row (below hero) ------------------------------- */
.trust-row {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  justify-content: center; padding: 20px 0;
}
.trust-row span {
  font-size: .85rem; color: var(--text-muted); font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border: 1px solid var(--border);
  border-radius: var(--radius-pill); background: var(--white);
}

/* -- Section Headers -------------------------------------- */
.section { padding: 64px 0 }
.section-alt { background: var(--bg-light) }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 40px }
.section-header h2 {
  font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700;
  margin-bottom: 10px; color: var(--text);
}
.section-header p { color: var(--text-muted); font-size: 1rem }

/* -- Listing Card ----------------------------------------- */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}
.listing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: var(--transition);
  position: relative;
}
.listing-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.listing-card.featured {
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red);
}
.card-featured-tag {
  position: absolute;
  top: -1px; right: 18px;
  background: var(--red);
  color: #fff;
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .8px;
  padding: 3px 10px;
  border-radius: 0 0 6px 6px;
}
.card-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px }
.card-name {
  font-size: 1.1rem; font-weight: 700;
  color: var(--text); text-decoration: none !important;
}
.card-name:hover { color: var(--red) }
.card-rating {
  display: flex; align-items: center; gap: 5px; flex-shrink: 0;
}
.stars { color: var(--star); font-size: .9rem; letter-spacing: -1px }
.rating-num { font-weight: 700; font-size: .95rem }
.review-count { color: var(--text-muted); font-size: .8rem }

.card-badges { display: flex; flex-wrap: wrap; gap: 6px }
.badge {
  display: inline-flex; align-items: center; gap: 3px;
  background: var(--bg-light); border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 3px 10px; font-size: .75rem; font-weight: 600;
}
.badge-verified { border-color: rgba(34,197,94,.3); color: var(--green); background: var(--green-light) }
.badge-top { border-color: rgba(251,191,36,.3); color: #b45309; background: #fef3c7 }
.badge-247 { border-color: rgba(239,68,68,.3); color: var(--red); background: #fef2f2 }

.card-phone a {
  font-size: 1.05rem; font-weight: 700; color: var(--red);
}
.card-area { font-size: .85rem; color: var(--text-muted) }
.card-area strong { color: var(--text) }

.card-services { display: flex; flex-wrap: wrap; gap: 5px }
.service-tag {
  background: var(--bg-light); border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 2px 8px; font-size: .75rem; color: var(--text-muted);
}
.card-footer { margin-top: auto; display: flex; gap: 8px }
.card-footer .btn { flex: 1 }

.upgrade-banner {
  background: var(--orange-light);
  border: 1px dashed rgba(249,115,22,.3);
  border-radius: var(--radius-md);
  padding: 8px 12px; font-size: .78rem;
  color: var(--text-muted); text-align: center;
}
.upgrade-banner a { color: var(--orange); font-weight: 600 }

/* -- Service Type Cards ----------------------------------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.service-card {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; padding: 28px 16px;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-decoration: none !important;
  color: var(--text) !important;
  transition: var(--transition);
  text-align: center;
}
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none !important;
}
.service-card .service-icon { font-size: 2.2rem }
.service-card .service-name { font-size: .9rem; font-weight: 600; color: var(--text) }

/* -- Neighborhood / City Grid ----------------------------- */
.neighborhood-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
}
.neighborhood-card {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: var(--transition); text-decoration: none !important;
  color: var(--text) !important; font-size: .9rem; font-weight: 500;
}
.neighborhood-card:hover { border-color: var(--text); box-shadow: var(--shadow-sm); text-decoration: none !important }

/* -- Value Prop Section ----------------------------------- */
.value-section { background: var(--bg-warm); padding: 80px 0 }
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 32px }
.value-item { text-align: center; padding: 24px }
.value-item h3 { font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: 10px }
.value-item p { color: var(--text-muted); font-size: .95rem; line-height: 1.6; margin-bottom: 20px }

/* -- Trust Cards ------------------------------------------ */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px }
.trust-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 28px; text-align: center;
}
.trust-number { font-size: 2rem; font-weight: 800; color: var(--red); margin-bottom: 4px }
.trust-label { font-size: .9rem; color: var(--text-muted); font-weight: 500 }

/* -- Stat Badge ------------------------------------------- */
.stat-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; background: var(--bg-warm);
  border-radius: var(--radius-pill); font-size: .85rem;
  color: var(--text); font-weight: 500; margin-bottom: 12px;
}
.stat-badge strong { font-weight: 800; font-size: 1.1rem; color: var(--red) }

/* -- Blog Cards ------------------------------------------- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px }
.blog-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 24px;
  transition: var(--transition); text-decoration: none !important;
  color: var(--text) !important; display: block;
}
.blog-card:hover { box-shadow: var(--shadow-md); text-decoration: none !important }
.blog-card .blog-icon { font-size: 2rem; margin-bottom: 12px }
.blog-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: var(--text) }
.blog-card p { color: var(--text-muted); font-size: .875rem; line-height: 1.5 }
.blog-card .read-link { color: var(--red); font-size: .85rem; font-weight: 600; display: inline-block; margin-top: 12px }

/* -- Claim Section ---------------------------------------- */
.claim-section { background: var(--white); padding: 72px 0 }
.claim-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center }
.claim-form {
  background: var(--bg-light); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
}
.claim-form label {
  font-size: .8rem; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .06em;
}
.claim-form input {
  width: 100%; padding: 12px 14px; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--white);
  color: var(--text); font-size: .95rem; font-family: var(--font);
  transition: border-color .2s;
}
.claim-form input:focus { outline: none; border-color: var(--red) }

/* -- Pricing ---------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; max-width: 720px; margin: 0 auto;
}
.pricing-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 36px 28px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative; text-align: center;
}
.pricing-card.popular {
  border: 2px solid var(--text);
}
.popular-badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: #fff;
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 3px 14px; border-radius: var(--radius-pill);
}
.pricing-name { font-size: .85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted) }
.pricing-price { display: flex; align-items: flex-end; gap: 4px; justify-content: center }
.pricing-price .amount { font-size: 2.4rem; font-weight: 800; color: var(--text) }
.pricing-price .period { color: var(--text-muted); margin-bottom: 8px }
.pricing-desc { color: var(--text-muted); font-size: .9rem }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; text-align: left }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: .9rem }
.pricing-features li::before { content: '\2713'; color: var(--green); font-weight: 700; flex-shrink: 0 }
.pricing-features li.no::before { content: '\2715'; color: var(--border) }
.pricing-features li.no { color: var(--text-muted) }
.pricing-card .btn { margin-top: auto }

/* -- CTA Banner ------------------------------------------- */
.cta-banner {
  background: var(--text); border-radius: var(--radius-lg);
  padding: 56px 32px; text-align: center; color: var(--white);
}
.cta-banner h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; margin-bottom: 10px; color: #fff }
.cta-banner p { color: rgba(255,255,255,.6); margin-bottom: 24px; max-width: 520px; margin-left: auto; margin-right: auto }
.cta-banner .btn-row { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap }

/* -- Filter Bar ------------------------------------------- */
.filter-bar {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 16px 20px;
  margin-bottom: 28px; display: flex; flex-wrap: wrap;
  gap: 12px; align-items: center;
}
.filter-bar input, .filter-bar select {
  background: var(--bg-light); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text);
  padding: 9px 14px; font-size: .9rem; outline: none;
  transition: border-color .15s; font-family: var(--font);
}
.filter-bar input:focus, .filter-bar select:focus { border-color: var(--red) }
.filter-bar input { flex: 1; min-width: 180px }
.filter-bar select { min-width: 150px }
.results-count { color: var(--text-muted); font-size: .875rem; margin-left: auto }

/* -- Form Card -------------------------------------------- */
.form-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 36px;
  max-width: 720px; margin: 0 auto;
}
.form-group { margin-bottom: 20px }
.form-group label {
  display: block; font-size: .82rem; font-weight: 600;
  color: var(--text-muted); text-transform: uppercase;
  letter-spacing: .06em; margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--white);
  color: var(--text); font-size: .95rem; font-family: var(--font);
  transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--red);
}
.form-group textarea { min-height: 100px; resize: vertical }
.form-group .hint { font-size: .8rem; color: var(--text-muted); margin-top: 5px }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr } }

.checkbox-group { display: flex; flex-wrap: wrap; gap: 10px }
.checkbox-label {
  display: flex; align-items: center; gap: 7px;
  background: var(--bg-light); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 7px 14px;
  cursor: pointer; font-size: .875rem; transition: border-color .15s;
  user-select: none;
}
.checkbox-label:hover { border-color: var(--red) }
.checkbox-label input { width: 15px; height: 15px; accent-color: var(--red) }

/* -- Profile Page ----------------------------------------- */
.profile-hero {
  background: var(--bg-hero); border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.profile-header {
  display: flex; gap: 24px; align-items: flex-start; flex-wrap: wrap;
}
.profile-logo {
  width: 90px; height: 90px;
  background: var(--bg-light); border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; flex-shrink: 0;
}
.profile-info { flex: 1; min-width: 200px }
.profile-info h1 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 8px }
.profile-meta { display: flex; flex-wrap: wrap; gap: 12px; margin: 10px 0 }
.profile-meta .badge { font-size: .8rem }
.profile-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px }

.profile-grid {
  display: grid; grid-template-columns: 2fr 1fr;
  gap: 28px; margin-top: 32px;
}
@media (max-width: 768px) { .profile-grid { grid-template-columns: 1fr } }

.info-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 24px; margin-bottom: 20px;
}
.info-card h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 16px }

.detail-row { display: flex; gap: 10px; margin-bottom: 12px; font-size: .9rem }
.detail-label { color: var(--text-muted); min-width: 110px; flex-shrink: 0 }
.detail-value { color: var(--text) }

.review-item { padding: 16px 0; border-bottom: 1px solid var(--border) }
.review-item:last-child { border-bottom: none }
.review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; flex-wrap: wrap; gap: 8px }
.reviewer { font-weight: 600; font-size: .9rem }
.review-date { font-size: .8rem; color: var(--text-muted) }
.review-text { font-size: .9rem; color: var(--text-muted); line-height: 1.5 }

/* -- Blog Article ----------------------------------------- */
.blog-article {
  max-width: 760px; margin: 48px auto; padding: 0 20px;
}
.blog-article h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 10px }
.article-meta { color: var(--text-muted); font-size: .875rem; margin-bottom: 28px; display: flex; flex-wrap: wrap; gap: 14px }
.article-meta span::before { content: '\2022 ' }
.article-meta span:first-child::before { content: '' }
.blog-article h2 { font-size: 1.4rem; margin: 36px 0 14px; color: var(--red) }
.blog-article h3 { font-size: 1.1rem; margin: 24px 0 10px }
.blog-article p { margin-bottom: 16px; color: var(--text-muted); line-height: 1.75 }
.blog-article ul, .blog-article ol { margin: 0 0 16px 24px; color: var(--text-muted) }
.blog-article li { margin-bottom: 6px; line-height: 1.7 }
.blog-article strong { color: var(--text) }
.blog-article a { color: var(--red) }
.blog-callout {
  background: var(--bg-light); border-left: 4px solid var(--red);
  padding: 16px 20px; border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 24px 0; color: var(--text-muted);
}
.blog-callout strong { color: var(--text) }

/* -- Page Hero (inner pages) ------------------------------ */
.page-hero {
  padding: 48px 0 40px; background: var(--bg-hero);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 700;
  color: var(--text); margin-bottom: 10px;
}
.page-hero p { color: var(--text-muted); max-width: 520px; margin: 0 auto }

/* -- Breadcrumb ------------------------------------------- */
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: .82rem; color: var(--text-muted);
  margin-bottom: 20px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted) }
.breadcrumb a:hover { color: var(--red); text-decoration: none }
.breadcrumb .sep { color: var(--border) }

/* -- Footer ----------------------------------------------- */
.site-footer {
  background: var(--dark); color: rgba(255,255,255,.6);
  padding: 48px 0 24px; margin-top: 0;
}

.site-footer .logo { color: var(--white) !important }
.site-footer .logo span { color: var(--white) }
.site-footer .logo-text { color: #fff }
.footer-brand p { color: rgba(255,255,255,.5); font-size: .875rem; margin-top: 10px; max-width: 260px }
.footer-col h4, .site-footer h4 {
  font-size: .82rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--white); margin-bottom: 14px;
}
.footer-col ul, .site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 9px }
.footer-col ul li a, .site-footer li a {
  color: rgba(255,255,255,.6); font-size: .875rem;
  transition: color .15s; text-decoration: none;
}
.footer-col ul li a:hover, .site-footer li a:hover { color: var(--white); text-decoration: none }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px; display: flex;
  justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  font-size: .82rem; color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.4) }
.footer-bottom a:hover { color: var(--white) }

/* -- Hamburger / Mobile Nav ------------------------------- */








/* -- Responsive ------------------------------------------- */
@media (max-width: 900px) {
  
  .hero-grid { grid-template-columns: 1fr !important }
  
  .claim-grid { grid-template-columns: 1fr !important; gap: 32px !important }
}
@media (max-width: 680px) {
  .hero { padding: 0 0 32px }
  .hero h1 { font-size: 1.65rem }
  .section { padding: 48px 0 }
  
  .search-card { max-width: 100% }
  .pricing-grid { grid-template-columns: 1fr }
  .listings-grid { grid-template-columns: 1fr }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.5rem }
  .form-card { padding: 24px 18px }
}

/* -- Animations ------------------------------------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px) }
  to   { opacity: 1; transform: translateY(0) }
}
.fade-up { animation: fadeUp .4s ease forwards }


/* ============================================
   BLOG STYLES
   ============================================ */

/* Blog header override — match site-header */
.blog-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff; border-bottom: 1px solid rgba(58,47,31,.1);
}
.blog-header .header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 64px;
}

/* Blog index page */
.blog-index {
  max-width: 1200px; margin: 0 auto; padding: 48px 24px;
}
.blog-index h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem); color: #333; margin-bottom: 8px;
}
.blog-index .blog-subtitle {
  color: rgba(51,51,51,.68); font-size: 1rem; margin-bottom: 36px;
}

/* Post list grid */
.post-list {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px;
  list-style: none; padding: 0; margin: 0;
}

/* Post card */
.post-card {
  background: #fff; border: 1px solid rgba(58,47,31,.1); border-radius: 8px;
  padding: 24px; transition: box-shadow .2s, transform .15s; display: flex; flex-direction: column;
}
.post-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.08); transform: translateY(-2px);
}
.post-card h2, .post-card h3 {
  font-size: 1.15rem; line-height: 1.35; margin: 0 0 10px; color: #333;
}
.post-card h2 a, .post-card h3 a {
  color: #333; text-decoration: none;
}
.post-card h2 a:hover, .post-card h3 a:hover {
  color: #2755b6;
}

/* Post meta */
.post-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  font-size: .82rem; color: rgba(51,51,51,.6); margin-bottom: 10px;
}
.post-meta .category {
  display: inline-block; padding: 3px 10px; border-radius: 20px;
  font-size: .72rem; font-weight: 700; background: #eef2ff; color: #2755b6;
  border: 1px solid rgba(39,85,182,.15); text-decoration: none;
}
.post-meta .category:hover { background: #dde5ff; }
.post-meta .read-time { white-space: nowrap; }

/* Excerpt */
.excerpt {
  color: rgba(51,51,51,.68); font-size: .92rem; line-height: 1.55; flex: 1;
  margin-bottom: 14px;
}

/* Read more link */
.read-more {
  display: inline-flex; align-items: center; gap: 4px;
  color: #2755b6; font-weight: 600; font-size: .88rem; text-decoration: none;
  margin-top: auto;
}
.read-more:hover { text-decoration: underline; }
.read-more::after { content: " \2192"; }

/* ---- Blog post (single) ---- */
.blog-post {
  max-width: 740px; margin: 0 auto; padding: 48px 24px 64px;
}

/* Post header */
.post-header {
  margin-bottom: 32px; border-bottom: 1px solid rgba(58,47,31,.08); padding-bottom: 24px;
}
.post-header h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem); line-height: 1.25; color: #333; margin: 0 0 14px;
}

/* Lead paragraph */
.lead {
  font-size: 1.12rem; line-height: 1.65; color: rgba(51,51,51,.78);
  margin-bottom: 24px;
}

/* Article body prose */
.blog-post article h2 {
  font-size: 1.35rem; margin: 36px 0 12px; color: #333;
}
.blog-post article h3 {
  font-size: 1.12rem; margin: 28px 0 10px; color: #333;
}
.blog-post article p {
  font-size: 1rem; line-height: 1.7; color: #444; margin-bottom: 16px;
}
.blog-post article ul, .blog-post article ol {
  margin: 0 0 18px 20px; color: #444; line-height: 1.7;
}
.blog-post article li { margin-bottom: 6px; }
.blog-post article blockquote {
  border-left: 3px solid #2755b6; margin: 24px 0; padding: 12px 20px;
  background: #f8f9fc; color: #555; font-style: italic;
}

/* Related content */
.related-content {
  margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(58,47,31,.08);
}
.related-content h2, .related-content h3 {
  font-size: 1.2rem; margin-bottom: 18px; color: #333;
}
.related-content ul {
  list-style: none; padding: 0; display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px;
}
.related-content li a {
  display: block; padding: 14px 18px; background: #fff;
  border: 1px solid rgba(58,47,31,.1); border-radius: 6px;
  color: #333; text-decoration: none; font-weight: 600; font-size: .92rem;
  transition: border-color .15s, box-shadow .15s;
}
.related-content li a:hover {
  border-color: #2755b6; box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

/* CTA section */
.cta-section {
  margin: 48px 0; padding: 32px; border-radius: 8px;
  background: #fef9c3; text-align: center;
  border: 1px solid rgba(253,237,90,.4);
}
.cta-section h2, .cta-section h3 {
  font-size: 1.15rem; color: #333; margin-bottom: 8px;
}
.cta-section p { color: rgba(51,51,51,.7); margin-bottom: 16px; }
.cta-section a.btn, .cta-section .btn {
  display: inline-block; padding: 10px 24px;
}

/* Post footer & tags */
.post-footer {
  margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(58,47,31,.08);
}
.post-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px;
}
.post-tags a, .post-tags span {
  display: inline-block; padding: 4px 12px; background: #f1f5f9;
  border-radius: 4px; font-size: .8rem; color: #555; text-decoration: none;
}
.post-tags a:hover { background: #e2e8f0; color: #333; }

/* Blog responsive */
@media (max-width: 640px) {
  .post-list { grid-template-columns: 1fr; }
  .blog-index { padding: 32px 16px; }
  .blog-post { padding: 32px 16px 48px; }
  .post-header h1 { font-size: 1.5rem; }
  .related-content ul { grid-template-columns: 1fr; }
  .cta-section { padding: 24px 16px; }
}

/* ── Header Nav & CTA (Design D consistency) ───────────────── */
.header-nav { display: flex; gap: 24px; align-items: center }
.header-nav a {
  color: var(--text); font-size: .92rem; font-weight: 500;
  text-decoration: none; transition: color .2s; padding: 4px 0;
}
.header-nav a:hover { color: var(--accent, #0f766e) }
.header-right { display: flex; gap: 10px; align-items: center }

/* ── Mobile Nav ──────────────────────────────────────────────── */
.hamburger { display: none; background: none; border: none; padding: 8px; cursor: pointer; flex-shrink: 0 }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; transition: all .2s }
.mobile-nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 200; opacity: 0; transition: opacity .3s; backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px) }
.mobile-nav-overlay.open { display: block; opacity: 1 }
.mobile-nav-panel { position: fixed; top: 0; right: 0; width: min(300px, 85vw); height: 100vh; background: #fff; z-index: 201; transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1); padding: 24px; overflow-y: auto; box-shadow: -4px 0 24px rgba(0,0,0,.15) }
.mobile-nav-panel.open { transform: translateX(0) }
.mobile-nav-panel a { display: block; padding: 14px 16px; color: var(--text); font-size: 1rem; font-weight: 500; border-radius: 8px; text-decoration: none; margin-bottom: 2px }
.mobile-nav-panel a:hover { background: rgba(0,0,0,.04) }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer { background: #0f172a; color: #94a3b8; padding: 48px 0 }
.site-footer .container { max-width: var(--container, 1200px); margin: 0 auto; padding: 0 24px }
.site-footer .logo { color: #fff !important }
.site-footer .logo span { color: #fff }
.site-footer h4 { color: #fff; font-size: .82rem; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .05em }
.site-footer a { color: #94a3b8; text-decoration: none; font-size: .88rem; display: block; margin-bottom: 8px }
.site-footer a:hover { color: #fff }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; font-size: .78rem; text-align: center }
.footer-bottom p { margin: 0 }

/* ── Responsive — Desktop first, then tablet/mobile ────────── */
@media (max-width: 900px) {
  .header-nav { display: none }
  .header-right { display: none }
  .hamburger { display: block }
  .footer-grid { grid-template-columns: 1fr 1fr }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr }
  .site-header .header-inner { padding: 0 16px }
  .site-footer .container { padding: 0 16px }
}
/* ══════════════════════════════════════════════════════════════
   OVA Shared — Mega Menu + Login Dropdown + Mobile Nav
   Appended to each site's style.css
   ══════════════════════════════════════════════════════════════ */

/* ── Header Nav with Mega Menu ─────────────────────────────── */
.header-nav { display: flex; gap: 4px; align-items: center }
.header-nav > .nav-item { position: relative }
.header-nav > .nav-item > a {
  color: var(--text, #1a1a2e); font-size: .92rem; font-weight: 500;
  text-decoration: none; padding: 8px 14px; border-radius: 8px;
  transition: background .15s, color .15s; display: flex; align-items: center; gap: 4px;
}
.header-nav > .nav-item > a:hover { background: rgba(0,0,0,.04); color: var(--accent, #059669) }
.header-nav > .nav-item > a .chevron { font-size: .6rem; opacity: .4; transition: transform .2s }
.header-nav > .nav-item:hover > a .chevron { transform: rotate(180deg); opacity: .7 }

/* Dropdown panel */
.nav-dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  min-width: 220px; background: #fff; border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px; padding: 8px; box-shadow: 0 8px 32px rgba(0,0,0,.1);
  opacity: 0; visibility: hidden; transition: opacity .2s, visibility .2s, transform .2s;
  transform: translateX(-50%) translateY(4px); z-index: 50;
}
.nav-item:hover > .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  color: var(--text, #334155); font-size: .88rem; font-weight: 500;
  text-decoration: none; border-radius: 8px; transition: background .12s;
}
.nav-dropdown a:hover { background: rgba(0,0,0,.04) }
.nav-dropdown a .dd-icon { font-size: 1.1rem; width: 28px; text-align: center; flex-shrink: 0 }
.nav-dropdown a .dd-text { display: flex; flex-direction: column }
.nav-dropdown a .dd-label { font-weight: 600; font-size: .86rem }
.nav-dropdown a .dd-desc { font-size: .75rem; color: rgba(0,0,0,.45); font-weight: 400 }
.nav-dropdown hr { border: none; border-top: 1px solid rgba(0,0,0,.06); margin: 4px 8px }

/* ── Login Dropdown ────────────────────────────────────────── */
.login-wrap { position: relative }
.login-trigger {
  cursor: pointer; display: inline-flex; align-items: center; gap: 4px;
}
.login-dropdown {
  position: absolute; top: calc(100% + 6px); right: 0;
  min-width: 200px; background: #fff; border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px; padding: 8px; box-shadow: 0 8px 32px rgba(0,0,0,.12);
  opacity: 0; visibility: hidden; transition: opacity .2s, visibility .2s;
  z-index: 60;
}
.login-wrap:hover .login-dropdown,
.login-wrap:focus-within .login-dropdown {
  opacity: 1; visibility: visible;
}
.login-dropdown .ld-label {
  font-size: .72rem; font-weight: 600; color: rgba(0,0,0,.4);
  text-transform: uppercase; letter-spacing: .05em; padding: 6px 14px 2px;
}
.login-dropdown .ld-btn {
  display: block; padding: 10px 14px; color: var(--text, #334155);
  font-size: .88rem; font-weight: 600; text-decoration: none;
  border-radius: 8px; transition: background .12s;
}
.login-dropdown .ld-btn:hover { background: rgba(0,0,0,.04) }
.login-dropdown hr { border: none; border-top: 1px solid rgba(0,0,0,.06); margin: 4px 8px }

/* ── Header Right CTAs ─────────────────────────────────────── */
.header-right { display: flex; gap: 8px; align-items: center }

/* ── Mobile Nav ────────────────────────────────────────────── */
.hamburger { display: none; background: none; border: none; padding: 8px; cursor: pointer; flex-shrink: 0; -webkit-tap-highlight-color: transparent }
.hamburger span { display: block; width: 20px; height: 2px; background: var(--text, #334155); margin: 5px 0; border-radius: 2px; transition: all .2s }
.mobile-nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 200; opacity: 0; transition: opacity .3s; backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px) }
.mobile-nav-overlay.open { display: block; opacity: 1 }
.mobile-nav-panel { position: fixed; top: 0; right: 0; width: min(320px, 88vw); height: 100vh; background: #fff; z-index: 201; transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1); padding: 20px; overflow-y: auto; box-shadow: -4px 0 24px rgba(0,0,0,.12) }
.mobile-nav-panel.open { transform: translateX(0) }
.mobile-nav-panel .mnav-close { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid rgba(0,0,0,.06) }
.mobile-nav-panel .mnav-close span { font-weight: 700; font-size: 1.05rem }
.mobile-nav-panel .mnav-close button { background: none; border: none; font-size: 1.4rem; cursor: pointer; color: rgba(0,0,0,.4); padding: 4px }
.mobile-nav-panel .mnav-section { font-size: .72rem; font-weight: 600; color: rgba(0,0,0,.35); text-transform: uppercase; letter-spacing: .06em; padding: 14px 16px 4px }
.mobile-nav-panel a { display: block; padding: 12px 16px; color: var(--text, #334155); font-size: .95rem; font-weight: 500; border-radius: 8px; text-decoration: none; transition: background .12s }
.mobile-nav-panel a:hover { background: rgba(0,0,0,.04) }
.mobile-nav-panel .mnav-cta { margin-top: 16px; text-align: center; padding: 14px 16px; border-radius: 10px; font-weight: 700; font-size: .95rem; display: block }
.mobile-nav-panel .mnav-cta-primary { background: var(--accent, #059669); color: #fff }
.mobile-nav-panel .mnav-cta-outline { border: 1.5px solid rgba(0,0,0,.12); color: var(--text, #334155); margin-top: 8px }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer { background: #0f172a; color: #94a3b8; padding: 48px 0 24px }
.site-footer .container { max-width: var(--container, 1200px); margin: 0 auto; padding: 0 24px }
.site-footer .logo { color: #fff !important }
.site-footer .logo span { color: #fff }
.site-footer h4 { color: #fff; font-size: .82rem; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .05em }
.site-footer a { color: #94a3b8; text-decoration: none; font-size: .88rem; display: block; margin-bottom: 8px; transition: color .15s }
.site-footer a:hover { color: #fff }
.site-footer ul { list-style: none; padding: 0; margin: 0 }
.site-footer li { margin-bottom: 0 }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 28px; margin-bottom: 32px }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; display: flex; justify-content: space-between; font-size: .78rem; flex-wrap: wrap; gap: 8px }
.powered-by { text-align: center; font-size: .75rem; margin-top: 12px; opacity: .5 }
.powered-by a { display: inline; color: #94a3b8 }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .header-nav { display: none }
  .header-right .btn-ghost { display: none }
  .header-right .btn-primary { display: none }
  .hamburger { display: block }
  .footer-grid { grid-template-columns: 1fr 1fr }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr }
  .site-header .header-inner { padding: 0 16px }
  .site-footer .container { padding: 0 16px }
  .footer-bottom { flex-direction: column; text-align: center }
}

/* ── Blog — Design D Enhancements ──────────────────────────── */
.blog-hero { background: var(--bg-hero, #f8fafc); padding: 48px 0 32px; border-bottom: 1px solid rgba(0,0,0,.06) }
.blog-hero h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 900; color: var(--text, #0f172a); line-height: 1.2 }
.blog-hero .post-meta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; font-size: .82rem; color: rgba(0,0,0,.45); margin-bottom: 12px }
.blog-hero .post-meta .tag { background: var(--accent, #059669); color: #fff; padding: 3px 12px; border-radius: 20px; font-size: .75rem; font-weight: 600 }

.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px }
.blog-card { background: #fff; border: 1px solid rgba(0,0,0,.06); border-radius: 14px; overflow: hidden; transition: box-shadow .2s, transform .15s }
.blog-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); transform: translateY(-2px) }
.blog-card-body { padding: 20px 22px }
.blog-card-meta { font-size: .78rem; color: rgba(0,0,0,.4); margin-bottom: 8px }
.blog-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text, #0f172a); line-height: 1.3; margin-bottom: 8px }
.blog-card h3 a { color: inherit; text-decoration: none }
.blog-card h3 a:hover { color: var(--accent, #059669) }
.blog-card p { font-size: .88rem; color: rgba(0,0,0,.55); line-height: 1.6; margin-bottom: 12px }
.blog-card .read-more { font-size: .84rem; font-weight: 600; color: var(--accent, #059669); text-decoration: none }
.blog-card .read-more:hover { text-decoration: underline }
.blog-card-badge { padding: 14px 22px 0 }
.badge { display: inline-block; padding: 3px 12px; border-radius: 20px; font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .03em }

/* Blog post article */
.blog-article { max-width: 760px; margin: 0 auto; padding: 32px 16px 64px }
.blog-article h2 { font-size: 1.4rem; font-weight: 800; color: var(--text, #0f172a); margin: 36px 0 14px; line-height: 1.3 }
.blog-article h3 { font-size: 1.1rem; font-weight: 700; color: var(--text, #0f172a); margin: 28px 0 10px }
.blog-article p { font-size: 1rem; color: rgba(0,0,0,.65); line-height: 1.8; margin-bottom: 16px }
.blog-article ul, .blog-article ol { margin: 16px 0 16px 24px; color: rgba(0,0,0,.65); font-size: .95rem; line-height: 1.7 }
.blog-article li { margin-bottom: 6px }
.blog-article blockquote { border-left: 4px solid var(--accent, #059669); padding: 16px 24px; margin: 24px 0; background: var(--bg-hero, #f8fafc); border-radius: 0 10px 10px 0; font-style: italic; color: rgba(0,0,0,.6) }
.blog-article img { width: 100%; border-radius: 12px; margin: 20px 0 }
.blog-article table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: .9rem }
.blog-article th { background: var(--bg-hero, #f8fafc); padding: 10px 14px; text-align: left; font-weight: 600; border-bottom: 2px solid rgba(0,0,0,.08) }
.blog-article td { padding: 10px 14px; border-bottom: 1px solid rgba(0,0,0,.04) }

@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr }
  .blog-hero { padding: 32px 0 24px }
  .blog-article { padding: 24px 16px 48px }
}

