/* xl - DESKTOP STYLES */ 
<!-- CSS-START: Copy from the line below this comment to CSS-END -->
<style>
/* ── MBSG ERP Delay Tax Post Styles ── */

:root {
  --mbsg-site-background:
    radial-gradient(ellipse at 22% 92%, rgba(7, 20, 34, 0.98) 0%, rgba(5, 14, 25, 0.88) 30%, rgba(0, 0, 0, 0) 58%),
    radial-gradient(ellipse at 94% 92%, rgba(30, 16, 10, 0.58) 0%, rgba(14, 8, 6, 0.34) 35%, rgba(0, 0, 0, 0) 62%),
    linear-gradient(180deg, #000000 0%, #000000 44%, #02070c 74%, #07121f 100%);
}

/* Full-width page background to remove white side gutters in WordPress */
.mbsg-page-bg {
  background: var(--mbsg-site-background);
  width: 100vw;
  min-height: 100vh;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 3rem 1.5rem;
}

/* Helps when WordPress wraps the post in a white content container */
body:has(.mbsg-page-bg),
body:has(.mbsg-page-bg) .site,
body:has(.mbsg-page-bg) .site-content,
body:has(.mbsg-page-bg) .content-area,
body:has(.mbsg-page-bg) .entry-content {
  background: var(--mbsg-site-background) !important;
}

.mbsg-post {
  font-family: 'Georgia', serif;
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.92);
  background: transparent;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2rem 2rem;
}

/* Links — all orange */
.mbsg-post a {
  color: #FF6B35;
  text-decoration: underline;
  text-decoration-color: rgba(255, 107, 53, 0.45);
  text-underline-offset: 3px;
  font-weight: 600;
  transition: color 0.15s;
}
.mbsg-post a:hover {
  color: #ff7f50;
  text-decoration-color: #ff7f50;
}

/* Headings */
.mbsg-post h2 {
  font-family: 'Georgia', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin: 2.6rem 0 0.85rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.16);
}
.mbsg-post h3 {
  font-family: 'Georgia', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin: 1.8rem 0 0.5rem;
}

/* Paragraphs and lists */
.mbsg-post p { margin-bottom: 1.15rem; }
.mbsg-post ul,
.mbsg-post ol {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}
.mbsg-post li {
  margin-bottom: 0.5rem;
  line-height: 1.75;
}

/* Divider */
.mbsg-post hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.14);
  margin: 2.2rem 0;
}

/* TL;DR Box */
.mbsg-tldr {
  background: rgba(255, 247, 243, 0.96);
  border-left: 4px solid #FF6B35;
  border-radius: 0 8px 8px 0;
  padding: 1.1rem 1.4rem;
  margin-bottom: 2.2rem;
  font-size: 0.95rem;
  line-height: 1.75;
  color: #222222;
}
.mbsg-tldr p,
.mbsg-tldr li,
.mbsg-tldr span {
  color: #222222;
}
.mbsg-tldr a {
  color: #e05520;
}
.mbsg-tldr strong {
  color: #FF6B35;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.4rem;
}

/* Cascade / callout blockquote */
.mbsg-cascade {
  background: rgba(240, 245, 251, 0.96);
  border-left: 4px solid #1B3A5C;
  border-radius: 0 8px 8px 0;
  padding: 1.1rem 1.4rem;
  margin: 1.4rem 0 1.6rem;
  font-size: 0.95rem;
  color: #2f3640;
  line-height: 1.9;
}

/* Stat highlight box */
.mbsg-stat {
  background: rgba(5, 10, 16, 0.78);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px;
  padding: 1.5rem 1.8rem;
  margin: 1.8rem 0;
  text-align: center;
}
.mbsg-stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #FF6B35;
  margin-bottom: 0.3rem;
}
.mbsg-stat-label {
  font-size: 0.88rem;
  opacity: 0.9;
  line-height: 1.55;
}

/* Three pillars grid */
.mbsg-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.4rem 0 1.8rem;
}
.mbsg-pillar {
  background: rgba(244, 248, 253, 0.96);
  border-top: 3px solid #2A5F8F;
  border-radius: 0 0 8px 8px;
  padding: 1.1rem 1.2rem;
}
.mbsg-pillar strong {
  display: block;
  color: #1B3A5C;
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
}
.mbsg-pillar p {
  font-size: 0.87rem;
  margin-bottom: 0;
  color: #333333;
  line-height: 1.6;
}

/* Mid-page CTA block */
.mbsg-cta-block {
  background: rgba(255, 247, 243, 0.96);
  border: 2px solid #FF6B35;
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
  text-align: center;
}
.mbsg-cta-block p {
  margin-bottom: 1rem;
  font-size: 0.96rem;
  color: #333333;
}
.mbsg-cta-button {
  display: inline-block;
  background: #2563eb;
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  transition: background 0.15s, transform 0.1s;
}
.mbsg-cta-button:hover {
  background: #1d4ed8;
  color: #ffffff !important;
  transform: translateY(-1px);
}
.mbsg-cta-note {
  font-size: 0.78rem;
  color: #666666;
  margin-top: 0.65rem;
  margin-bottom: 0 !important;
}

/* Bottom CTA block */
.mbsg-bottom-cta {
  background: rgba(5, 10, 16, 0.78);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  padding: 2.2rem 2rem;
  margin-top: 2.5rem;
  text-align: center;
}
.mbsg-bottom-cta h2 {
  color: #ffffff !important;
  border-bottom: none !important;
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
}
.mbsg-bottom-cta p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.4rem;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .mbsg-page-bg {
    padding: 1.5rem 0.75rem;
  }

  .mbsg-post {
    padding: 0 1.25rem 1.25rem;
  }
}
</style>
<!-- CSS-END -->

