/* ═══════════════════════════════════════════════════════════════
   Blog Common CSS – Shared styles for blog article pages
   ═══════════════════════════════════════════════════════════════ */

/* ── CSS VARIABLES ── */
:root {
  --primary: #c9a84c;
  --primary-dark: #a8872f;
  --dark: #1a1a1a;
  --text: #333333;
  --muted: #777777;
  --bg-light: #faf9f7;
  --white: #ffffff;
  --border: #e8e2d9;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;
}

/* ── BOX SIZING RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ── BODY ── */
body {
  font-family: var(--font-body);
  color: var(--text);
  background: #DDB4423B;
  font-size: 16px;
  line-height: 1.8;
}

/* ── NAVBAR ── */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.navbar-brand img {
  height: 48px;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark) !important;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--primary) !important;
}

.btn-consultation .btn {
  background: var(--primary);
  border: none;
  color: var(--dark);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}

.btn-consultation .btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* ── BLOG HERO ── */
.blog-hero {
  padding: 140px 0 60px;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
}

.blog-category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tag {
  display: inline-block;
  background: var(--primary);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 2px;
}

.tag.outline {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary-dark);
}

.blog-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 1.2rem;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
}

.author-info span {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.read-time {
  font-size: 0.75rem;
  color: var(--muted);
  padding-left: 1rem;
  border-left: 1px solid var(--border);
}


/* ── ARTICLE LAYOUT ── */
.blog-article {
  padding: 70px 0 80px;
}

.article-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--dark);
  margin-top: 3rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  position: relative;
  padding-left: 1.2rem;
}

.article-content h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.2em;
  bottom: 0.2em;
  width: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.article-content h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

.article-content p {
  font-size: 1rem;
  line-height: 1.85;
  color: #444;
  margin-bottom: 1.3rem;
}

.article-content strong {
  color: var(--dark);
  font-weight: 700;
}

/* ── LEAD PARAGRAPH ── */
.lead-paragraph {
  font-size: 1.15rem !important;
  line-height: 1.9 !important;
  color: #2a2a2a !important;
  font-weight: 500;
  border-left: 4px solid var(--primary);
  padding-left: 1.5rem;
  margin-bottom: 2rem !important;
}

/* ── PULL QUOTE ── */
.pull-quote {
  background: var(--dark);
  color: var(--white);
  padding: 2.5rem 2.5rem;
  margin: 3rem 0;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.pull-quote::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 8rem;
  color: var(--primary);
  opacity: 0.2;
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  line-height: 1;
}

.pull-quote p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.35rem !important;
  line-height: 1.6 !important;
  color: var(--white) !important;
  margin: 0 !important;
  position: relative;
  z-index: 1;
}

.pull-quote cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.8rem;
  font-style: normal;
  color: var(--primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: linear-gradient(135deg, #fffbf0 0%, #fdf5dc 100%);
  border: 1px solid #e8d9a0;
  border-left: 4px solid var(--primary);
  padding: 1.5rem 2rem;
  border-radius: 2px;
  margin: 2rem 0;
}

.highlight-box p {
  margin: 0 !important;
  font-size: 0.95rem !important;
  color: #5a4a1a !important;
  font-weight: 500;
}

.highlight-box strong {
  color: #3a2e0a;
}

/* ── INTERNAL LINK BOX ── */
.internal-link-box {
  background: var(--bg-light);
  border: 1px solid var(--border);
  padding: 1.5rem 2rem;
  border-radius: 2px;
  margin: 2.5rem 0;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.internal-link-box .link-icon {
  font-size: 2rem;
  color: var(--primary);
  flex-shrink: 0;
}

.internal-link-box p {
  margin: 0 !important;
  font-size: 0.92rem !important;
  color: var(--text) !important;
}

.internal-link-box a {
  color: var(--primary-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.internal-link-box a:hover {
  color: var(--primary);
}

/* ── CTA BOX ── */
.cta-box {
  background: var(--dark);
  color: var(--white);
  padding: 3rem;
  border-radius: 2px;
  text-align: center;
  margin-top: 4rem;
}

.cta-box h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.cta-box .phone {
  color: var(--primary);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.cta-box .btn-cta {
  background: var(--primary);
  color: var(--dark);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2.5rem;
  border: none;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
}

.cta-box .btn-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  color: var(--dark);
}

/* ── SIDEBAR ── */
.sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  padding: 1.8rem;
  border-radius: 2px;
  margin-bottom: 1.8rem;
}

.sidebar-card h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--primary);
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc-list li {
  margin-bottom: 0.7rem;
}

.toc-list a {
  font-size: 0.83rem;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  transition: color 0.2s;
}

.toc-list a::before {
  content: '→';
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 1px;
}

.toc-list a:hover {
  color: var(--primary-dark);
}

.contact-sidebar {
  background: var(--dark);
  color: var(--white);
  padding: 1.8rem;
  border-radius: 2px;
}

.contact-sidebar h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.contact-sidebar p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1rem;
}

.contact-sidebar .phone-link {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
  display: block;
  margin-bottom: 1rem;
}

.contact-sidebar .btn-sm-cta {
  display: block;
  background: var(--primary);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.7rem 1rem;
  text-align: center;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
}

.contact-sidebar .btn-sm-cta:hover {
  background: var(--primary-dark);
}



/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .blog-hero {
    padding: 120px 0 50px;
  }

  .blog-banner-image {
    height: 260px;
  }

  .pull-quote {
    padding: 2rem 1.5rem;
  }

  .cta-box {
    padding: 2rem 1.5rem;
  }

  .blog-article {
    padding: 50px 0 60px;
  }

  .sidebar {
    position: static;
    margin-top: 3rem;
  }
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.65s ease both;
}

.delay-1 {
  animation-delay: 0.15s;
}

.delay-2 {
  animation-delay: 0.3s;
}

.delay-3 {
  animation-delay: 0.45s;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0 2.5rem;
}

.benefit-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  padding: 1.5rem;
  border-radius: 2px;
  transition: box-shadow 0.25s, transform 0.25s;
}

.benefit-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.benefit-icon {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 0.7rem;
}

.benefit-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.benefit-card p {
  font-size: 0.88rem !important;
  line-height: 1.6 !important;
  color: var(--muted) !important;
  margin-bottom: 0 !important;
}

/* ── NUMBERED STEPS ── */
.steps-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
}

.steps-list li {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--dark);
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  margin-top: 2px;
}

.step-content h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.step-content p {
  font-size: 0.93rem !important;
  color: #555 !important;
  margin-bottom: 0 !important;
}

/* ── SIDEBAR ── */
.sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  padding: 1.8rem;
  border-radius: 2px;
  margin-bottom: 1.8rem;
}

.sidebar-card h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--primary);
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc-list li {
  margin-bottom: 0.7rem;
}

.toc-list a {
  font-size: 0.83rem;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  transition: color 0.2s;
}

.toc-list a::before {
  content: '→';
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 1px;
}

.toc-list a:hover {
  color: var(--primary-dark);
}

.contact-sidebar {
  background: var(--dark);
  color: var(--white);
  padding: 1.8rem;
  border-radius: 2px;
}

.contact-sidebar h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.contact-sidebar p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1rem;
}

.contact-sidebar .phone-link {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
  display: block;
  margin-bottom: 1rem;
}

.contact-sidebar .btn-sm-cta {
  display: block;
  background: var(--primary);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.7rem 1rem;
  text-align: center;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
}

.contact-sidebar .btn-sm-cta:hover {
  background: var(--primary-dark);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin: 1.8rem 0 2.5rem;
}

@media (max-width: 560px) {
  .benefit-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  padding: 1.6rem;
  border-radius: 2px;
  transition: box-shadow 0.25s, transform 0.25s;
}

.benefit-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.benefit-icon {
  font-size: 1.7rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.benefit-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.benefit-card p {
  font-size: 0.88rem !important;
  line-height: 1.65 !important;
  color: var(--muted) !important;
  margin: 0 !important;
}

/* ── BEFORE / AFTER COMPARE ── */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: 1.5rem 0 2rem;
}

@media (max-width: 560px) {
  .compare-grid {
    grid-template-columns: 1fr;
  }
}

.compare-card {
  padding: 1.6rem;
  border-radius: 2px;
}

.before-card {
  background: #fdf5f5;
  border: 1px solid #e8bbbb;
  border-top: 3px solid #d94f4f;
}

.after-card {
  background: #f0faf4;
  border: 1px solid #b2ddc0;
  border-top: 3px solid #3aaa6a;
}

.before-card h4 {
  color: #b03030;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.after-card h4 {
  color: #1e7a43;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.compare-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compare-card ul li {
  font-size: 0.88rem;
  padding: 0.35rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.5;
  color: #444;
}

.before-card ul li::before {
  content: '✗';
  color: #d94f4f;
  font-weight: 700;
  flex-shrink: 0;
}

.after-card ul li::before {
  content: '✓';
  color: #3aaa6a;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── STEPS TIMELINE ── */
.steps-timeline {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2.5rem;
  position: relative;
}

.steps-timeline::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.steps-timeline li {
  display: flex;
  gap: 1.3rem;
  margin-bottom: 2rem;
  position: relative;
}

.step-dot {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  position: relative;
  z-index: 1;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--primary);
}

.step-body h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0.4rem 0 0.3rem;
}

.step-body p {
  font-size: 0.92rem !important;
  color: #555 !important;
  margin: 0 !important;
}

/* ── CHECKLIST ── */
.plain-checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}

.plain-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
  color: var(--text);
}

.plain-checklist li:last-child {
  border-bottom: none;
}

.plain-checklist li .ci {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ── CONCIERGE SERVICE BOX ── */
.service-box {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  padding: 2rem 2.2rem;
  border-radius: 2px;
  margin: 2.5rem 0;
}

.service-box .service-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.service-box h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.8rem;
}

.service-box p {
  font-size: 0.92rem !important;
  color: #555 !important;
  margin-bottom: 1.2rem !important;
}

.service-box ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.service-box ul li {
  font-size: 0.88rem;
  padding: 0.3rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: #444;
}

.service-box ul li::before {
  content: '→';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

.service-box .btn-service {
  display: inline-block;
  background: var(--primary);
  color: var(--dark);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.service-box .btn-service:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  color: var(--dark);
}

/* ── DISCLAIMER ── */
.disclaimer {
  font-size: 0.75rem;
  color: var(--muted);
  background: var(--bg-light);
  border: 1px solid var(--border);
  padding: 1rem 1.5rem;
  border-radius: 2px;
  margin-top: 2.5rem;
  font-style: italic;
}

/* ── FORMULA BOX ── */
.formula-box {
  background: var(--dark);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  margin: 2rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.formula-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
}

.formula-box .formula-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.formula-box .formula-equation {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--white);
  font-weight: 700;
  position: relative;
  z-index: 1;
  line-height: 1.4;
}

.formula-box .formula-equation span {
  color: var(--primary);
}

.formula-box .formula-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.8rem;
  position: relative;
  z-index: 1;
}

/* ── NUMBER CARDS (4 key numbers) ── */
.number-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

@media (max-width: 480px) {
  .number-grid {
    grid-template-columns: 1fr;
  }
}

.number-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  padding: 1.3rem 1.5rem;
  border-radius: 2px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: box-shadow 0.25s, transform 0.25s;
}

.number-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.number-badge {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
}

.number-card h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 0.2rem;
}

.number-card p {
  font-size: 0.82rem !important;
  color: var(--muted) !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}

/* ── DO / DON'T LISTS ── */
.do-dont-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: 1.5rem 0 2rem;
}

@media (max-width: 600px) {
  .do-dont-grid {
    grid-template-columns: 1fr;
  }
}

.do-card,
.dont-card {
  padding: 1.5rem;
  border-radius: 2px;
}

.do-card {
  background: #f0faf4;
  border: 1px solid #b2ddc0;
  border-top: 3px solid #3aaa6a;
}

.dont-card {
  background: #fdf5f5;
  border: 1px solid #e8bbbb;
  border-top: 3px solid #d94f4f;
}

.do-card h4 {
  color: #1e7a43;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.dont-card h4 {
  color: #b03030;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.do-card ul,
.dont-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.do-card ul li,
.dont-card ul li {
  font-size: 0.88rem;
  padding: 0.3rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.5;
}

.do-card ul li::before {
  content: '✓';
  color: #3aaa6a;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.dont-card ul li::before {
  content: '✗';
  color: #d94f4f;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── MARGIN CHECKLIST ── */
.margin-checklist {
  background: var(--bg-light);
  border: 1px solid var(--border);
  padding: 1.8rem 2rem;
  border-radius: 2px;
  margin: 1.5rem 0 2rem;
}

.margin-checklist h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.margin-checklist ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.margin-checklist ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text);
}

.margin-checklist ul li:last-child {
  border-bottom: none;
}

.margin-checklist ul li .check-icon {
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── LOCATION BADGES ── */
.location-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0 1.5rem;
}

.location-badge {
  background: var(--dark);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 2px;
  border: 1px solid rgba(201, 168, 76, 0.3);
}