/* ============================================================
   Media House Solutions — Design System v3
   Clean, focused, works WITH Elementor (not against it)
   ============================================================ */

/* ── Variables ───────────────────────────────────────────────── */
:root {
  --navy:    #0A0F1E;
  --blue:    #2563EB;
  --purple:  #7C3AED;
  --white:   #FFFFFF;
  --surface: #F4F6FB;
  --border:  #E8ECF4;
  --text:    #1E293B;
  --muted:   #64748B;
  --r-sm:    10px;
  --r-md:    16px;
  --r-lg:    24px;
  --sh-sm:   0 1px 3px rgba(10,15,30,.06),0 1px 2px rgba(10,15,30,.04);
  --sh-md:   0 4px 20px rgba(10,15,30,.08),0 2px 8px rgba(10,15,30,.05);
  --sh-lg:   0 20px 60px rgba(10,15,30,.14),0 8px 24px rgba(10,15,30,.08);
  --sh-blue: 0 6px 24px rgba(37,99,235,.38);
}

/* ── Base ────────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: border-box; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
::selection { background: #DBEAFE; color: var(--navy); }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
a { color: var(--blue); transition: color .15s; }

/* ── Hide theme page titles (not on blog/archive where they're post titles) ── */
.page-header, .archive-header, .page-title { display: none !important; }
.entry-title:not(.elementor-heading-title) { display: none !important; }
.blog .entry-title, .archive .entry-title { display: block !important; }

/* ── Header ──────────────────────────────────────────────────── */
#site-header {
  position: sticky !important;
  top: 0; z-index: 1000;
  background: rgba(255,255,255,0.92) !important;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(232,236,244,0.9) !important;
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(10,15,30,.04) !important;
  padding: 0 24px;
}
.site-branding .site-title,
.site-branding .site-title a {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  color: var(--navy) !important;
  text-decoration: none !important;
  letter-spacing: -0.02em;
}
.site-navigation .menu-item > a {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #475569 !important;
  text-decoration: none !important;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: color .18s, background .18s !important;
  position: relative;
}
.site-navigation .menu-item > a:hover {
  color: var(--blue) !important;
  background: #EFF6FF !important;
}
.menu-item-free-tools > a,
.menu-item:has(a[href*="free-tools"]) > a {
  color: var(--blue) !important;
  font-weight: 700 !important;
  background: #EFF6FF !important;
  border-radius: 8px;
}

/* ── Hero Section ────────────────────────────────────────────── */
.mhs-hero-section {
  position: relative;
  overflow: hidden;
}
/* Dot grid */
.mhs-hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none; z-index: 0;
}
/* Glow blobs */
.mhs-hero-section::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 15% 60%, rgba(37,99,235,.22) 0%, transparent 65%),
    radial-gradient(ellipse 40% 35% at 85% 25%, rgba(124,58,237,.16) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.mhs-hero-section .elementor-container,
.mhs-hero-section .elementor-column,
.mhs-hero-section .elementor-widget-wrap {
  position: relative; z-index: 1;
}
/* Full-height flex column — hero vertical centering */
.mhs-hero-section .elementor-column > .elementor-widget-wrap {
  min-height: 100vh !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}
/* Kill Elementor's default 20px bottom margin on every widget */
.mhs-hero-section .elementor-widget {
  width: 100%;
  margin-bottom: 0 !important;
  --kit-widget-spacing: 0px;
}
/* Center the eyebrow pill:
   The html widget has no .elementor-widget-container wrapper —
   make the widget itself a flex centering box */
.mhs-hero-section .elementor-widget-html {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}
/* Constrain headline width so long lines don't run wall-to-wall */
.mhs-hero-section .elementor-heading-title {
  max-width: 820px;
  margin-left: auto !important;
  margin-right: auto !important;
}
/* Center and constrain subtext */
.mhs-hero-section .elementor-widget-text-editor {
  text-align: center;
}
.mhs-hero-section .elementor-widget-text-editor p {
  max-width: 580px;
  margin-left: auto !important;
  margin-right: auto !important;
  color: rgba(255,255,255,0.72) !important;
}
/* Spacer widgets — no shrink, no extra margin */
.mhs-hero-section .elementor-widget-spacer {
  flex-shrink: 0;
}
/* Scroll hint: pin to bottom of hero, out of flex flow */
.mhs-hero-section .elementor-widget-html:last-child {
  position: absolute !important;
  bottom: 32px;
  left: 0;
  right: 0;
  margin: 0 !important;
  width: 100% !important;
}
/* Hide the spacer that was before the scroll hint (now unnecessary) */
.mhs-hero-section .elementor-widget-wrap > .elementor-widget:nth-last-child(2) {
  display: none !important;
}

/* ── Eyebrow labels ──────────────────────────────────────────── */
/* Any widget containing an eyebrow pill: flex-center it */
.elementor-widget-html:has(.mhs-eyebrow) {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.mhs-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 4px;
}
.mhs-eyebrow-dark {
  color: var(--blue);
  background: #EFF6FF;
  border-color: #BFDBFE;
}
.mhs-eyebrow-light {
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
}

/* ── Hero scroll hint ────────────────────────────────────────── */
.mhs-hero-scroll {
  text-align: center;
  opacity: 0.4;
  animation: mhs-bounce 2s ease-in-out infinite;
}
@keyframes mhs-bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* ── Elementor heading titles — global font ──────────────────── */
.elementor-heading-title {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  letter-spacing: -0.025em !important;
}
/* Headings on dark sections */
.mhs-dark-section .elementor-heading-title,
.mhs-cta-section .elementor-heading-title {
  color: #FFFFFF !important;
}
/* Body text on dark sections */
.mhs-dark-section .elementor-widget-text-editor p,
.mhs-cta-section .elementor-widget-text-editor p {
  color: rgba(255,255,255,0.70) !important;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.elementor-button {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
  transition: all .22s cubic-bezier(.4,0,.2,1) !important;
  position: relative;
  overflow: hidden;
}
/* Primary blue button glow */
.elementor-button[style*="background-color: #2563EB"],
.elementor-button[style*="background-color:#2563EB"] {
  box-shadow: var(--sh-blue) !important;
}
.elementor-button:hover {
  transform: translateY(-2px) !important;
  filter: brightness(1.07);
}
.elementor-button:active { transform: translateY(0) !important; }

/* ── Stats Bar ───────────────────────────────────────────────── */
.mhs-stats-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.mhs-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-right: 1px solid var(--border);
}
.mhs-stat:last-child { border-right: none; }
.mhs-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mhs-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-align: center;
}

/* ── Feature Preview Card (value prop section) ───────────────── */
.mhs-value-section .elementor-column:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mhs-feature-preview {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  overflow: hidden;
  width: 100%;
  max-width: 420px;
  font-family: 'Inter', sans-serif;
}
.mhs-fp-header {
  background: var(--navy);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mhs-fp-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mhs-fp-dot.red    { background: #FF5F57; }
.mhs-fp-dot.yellow { background: #FFBD2E; }
.mhs-fp-dot.green  { background: #28C840; }
.mhs-fp-title {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-left: 4px;
  letter-spacing: 0.02em;
}
.mhs-fp-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mhs-fp-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mhs-fp-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.mhs-fp-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  background: var(--surface);
  padding: 10px 14px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
}
.mhs-fp-footer {
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
}
.mhs-fp-result {
  font-size: 13px;
  font-weight: 600;
  color: #16A34A;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 8px;
  padding: 10px 14px;
}

/* ── Tool Cards (.mhs-card) ──────────────────────────────────── */
.elementor-widget-html { width: 100%; }
.mhs-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #FFFFFF;
  text-decoration: none;
  color: inherit;
  height: 100%;
  position: relative;
  transition: transform .26s ease, box-shadow .26s ease;
}
.mhs-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 16px; right: 16px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  border-radius: 0 0 4px 4px;
  opacity: 0;
  transition: opacity .26s ease;
}
.mhs-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.mhs-card:hover::before { opacity: 1; }
.mhs-card:hover .elementor-column { box-shadow: none; }
.mhs-card-icon {
  font-size: 36px;
  width: 64px; height: 64px;
  background: var(--surface);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  transition: background .26s ease;
  flex-shrink: 0;
}
.mhs-card:hover .mhs-card-icon { background: #DBEAFE; }
.mhs-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.mhs-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
  flex: 1;
}
.mhs-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  margin-top: 4px;
  transition: gap .2s ease;
}
.mhs-card:hover .mhs-card-cta { gap: 10px; }
.mhs-card-cta svg { transition: transform .2s ease; }
.mhs-card:hover .mhs-card-cta svg { transform: translateX(3px); }

/* ── How It Works Steps ──────────────────────────────────────── */
.mhs-step {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}
.mhs-step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(37,99,235,.35);
}
.mhs-step-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  letter-spacing: -0.02em;
}
.mhs-step-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--muted);
  margin: 0;
  line-height: 1.7;
  flex: 1;
}

/* ── Recent Posts Grid ───────────────────────────────────────── */
.mhs-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}
.mhs-blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.mhs-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: rgba(37,99,235,.2);
}
.mhs-blog-card-meta {
  padding: 22px 24px 0;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
}
.mhs-blog-card-title {
  padding: 10px 24px 22px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.45;
  flex: 1;
  letter-spacing: -0.02em;
  transition: color .18s;
}
.mhs-blog-card:hover .mhs-blog-card-title { color: var(--blue); }
.mhs-blog-card-footer {
  padding: 14px 24px;
  border-top: 1px solid var(--border);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 5px;
}
.mhs-blog-card:hover .mhs-blog-card-footer svg { transform: translateX(3px); }
.mhs-blog-card-footer svg { transition: transform .18s; }

/* ── Newsletter Form ─────────────────────────────────────────── */
.mhs-nl-wrap { max-width: 520px; margin: 0 auto; }
.mhs-nl-form { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.mhs-nl-group {
  display: flex;
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50px;
  padding: 6px;
  backdrop-filter: blur(8px);
}
.mhs-nl-group input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #fff;
  min-width: 0;
}
.mhs-nl-group input::placeholder { color: rgba(255,255,255,0.38); }
.mhs-nl-group button {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all .2s ease;
  box-shadow: var(--sh-blue);
}
.mhs-nl-group button:hover { background: #1D4ED8; transform: scale(1.02); }
.mhs-nl-note {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  text-align: center;
  margin: 0;
}

/* ── AI Tool Forms (tool pages) ──────────────────────────────── */
.mhs-tool-wrap { max-width: 760px; margin: 0 auto; }
.mhs-tool-form {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
  padding: 40px;
  margin-bottom: 24px;
}
.mhs-tool-form label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
  margin-top: 20px;
}
.mhs-tool-form label:first-of-type { margin-top: 0; }
.mhs-tool-form input[type="text"],
.mhs-tool-form input[type="email"],
.mhs-tool-form textarea,
.mhs-tool-form select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: #fff;
  transition: border-color .18s, box-shadow .18s;
  -webkit-appearance: none;
}
.mhs-tool-form textarea { min-height: 120px; resize: vertical; }
.mhs-tool-form input:focus,
.mhs-tool-form textarea:focus,
.mhs-tool-form select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37,99,235,.1);
  outline: none;
}
.mhs-submit, .mhs-submit-btn, .mhs-tool-form button[type="submit"] {
  width: 100%;
  margin-top: 28px;
  padding: 18px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--sh-blue);
  transition: all .22s ease;
  letter-spacing: -0.01em;
}
.mhs-submit:hover, .mhs-submit-btn:hover, .mhs-tool-form button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37,99,235,.48);
}
.mhs-result-box, .mhs-result-area {
  background: var(--surface);
  border-radius: var(--r-md);
  padding: 28px;
  border-left: 4px solid var(--blue);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  white-space: pre-wrap;
  margin-top: 24px;
}
.mhs-copy-btn {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 12px;
  padding: 9px 18px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all .18s;
}
.mhs-copy-btn:hover { background: var(--surface); border-color: #CBD5E1; }
.mhs-affiliate-note {
  background: linear-gradient(135deg, #EFF6FF, #F5F3FF);
  border: 1px solid #C7D2FE;
  border-radius: var(--r-md);
  padding: 24px 28px;
  margin-top: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.mhs-affiliate-note strong, .mhs-affiliate-note b { color: var(--navy); }
.mhs-affiliate-note a { color: var(--blue); font-weight: 600; }

/* ── Blog archive (blog page) ────────────────────────────────── */
.blog .site-main,
.archive .site-main { max-width: 860px; margin: 0 auto; padding: 60px 20px; }
.blog .post,
.archive .post {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 36px 40px;
  margin-bottom: 20px;
  transition: box-shadow .2s, border-color .2s, transform .2s;
  display: block;
  text-decoration: none;
}
.blog .post:hover, .archive .post:hover {
  box-shadow: var(--sh-md);
  border-color: rgba(37,99,235,.2);
  transform: translateY(-2px);
}
/* Post category label — show date as eyebrow */
.blog .entry-title,
.archive .entry-title {
  margin: 0 0 12px;
}
.blog .entry-title a,
.archive .entry-title a {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  text-decoration: none !important;
  letter-spacing: -0.02em;
  line-height: 1.35;
  transition: color .18s;
}
.blog .entry-title a:hover,
.archive .entry-title a:hover { color: var(--blue) !important; }
/* Read More link */
.mhs-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  transition: gap .2s;
}
.mhs-read-more:hover { gap: 10px; color: var(--blue); }
.mhs-read-more svg { transition: transform .2s; }
.mhs-read-more:hover svg { transform: translateX(3px); }
.blog .entry-meta, .archive .entry-meta {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 14px;
}
.blog .entry-summary p, .archive .entry-summary p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}
/* Show the archive blog page title area from Elementor, not theme */
.blog .elementor,
.archive .elementor { display: block; }

/* ── Single Article Page ─────────────────────────────────────── */
.single.post .site-main {
  max-width: 100%;
  padding: 0;
}
.mhs-article-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
/* Back link */
.mhs-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: color .18s;
  margin-bottom: 32px;
}
.mhs-back-link:hover { color: var(--blue); }
.mhs-back-link svg { transition: transform .18s; }
.mhs-back-link:hover svg { transform: translateX(-3px); }
/* Article meta */
.mhs-article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.mhs-article-cat {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  padding: 4px 10px;
  border-radius: 20px;
  text-decoration: none;
  transition: background .18s;
}
.mhs-article-cat:hover { background: #DBEAFE; }
.mhs-article-date,
.mhs-article-read {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--muted);
}
.mhs-article-date::before { content: '·'; margin-right: 12px; color: var(--border); }
/* Article title */
.mhs-article-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 40px;
}
/* Article body prose */
.mhs-article-body {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.85;
  color: #334155;
}
.mhs-article-body p { margin: 0 0 1.5em; }
.mhs-article-body h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 2.4em 0 0.7em;
  line-height: 1.25;
}
.mhs-article-body h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin: 2em 0 0.6em;
  line-height: 1.3;
}
.mhs-article-body ul,
.mhs-article-body ol {
  margin: 0 0 1.5em 1.25em;
  padding: 0;
}
.mhs-article-body li { margin-bottom: 0.5em; }
.mhs-article-body strong { font-weight: 700; color: var(--navy); }
.mhs-article-body em { font-style: italic; }
.mhs-article-body a { color: var(--blue); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.mhs-article-body a:hover { color: #1D4ED8; }
.mhs-article-body blockquote {
  border-left: 4px solid var(--blue);
  margin: 2em 0;
  padding: 16px 24px;
  background: #F8FAFC;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #475569;
}
/* Inline callout boxes already in the post HTML */
.mhs-article-body div[style*="background:#f0f7ff"],
.mhs-article-body div[style*="background: #f0f7ff"] {
  border-radius: 8px !important;
  font-size: 15px;
}
/* Article footer CTA */
.mhs-article-footer {
  margin-top: 64px;
  border-top: 1px solid var(--border);
  padding-top: 48px;
}
.mhs-article-cta {
  background: linear-gradient(135deg, #0A0F1E 0%, #1E3A5F 100%);
  border-radius: var(--r-lg);
  padding: 48px;
  margin-bottom: 32px;
  text-align: center;
}
.mhs-article-cta-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0 0 12px;
}
.mhs-article-cta h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  line-height: 1.2;
}
.mhs-article-cta p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin: 0 0 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.mhs-article-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,99,235,.4);
  transition: all .22s;
}
.mhs-article-cta-btn:hover { background: #1D4ED8; transform: translateY(-2px); color: #fff; }
.mhs-back-link-bottom { margin-bottom: 0; }
@media (max-width: 768px) {
  .mhs-article-wrap { padding: 32px 20px 60px; }
  .mhs-article-cta { padding: 32px 24px; }
}

/* ── Footer ──────────────────────────────────────────────────── */
#site-footer {
  background: var(--navy) !important;
  color: rgba(255,255,255,.45) !important;
  text-align: center;
  padding: 40px 24px 32px !important;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,.06);
}
#site-footer a { color: rgba(255,255,255,.45); text-decoration: none; transition: color .15s; }
#site-footer a:hover { color: rgba(255,255,255,.9); }
#site-footer .site-info { color: rgba(255,255,255,.35); }

/* ── Elementor inner sections (remove wrapper gaps) ──────────── */

/* ── General body text in Elementor ─────────────────────────── */
.elementor-widget-text-editor,
.elementor-widget-text-editor p {
  font-family: 'Inter', sans-serif !important;
}
.elementor-widget-text-editor a { color: var(--blue); font-weight: 500; }

/* ── Section max-width fix ───────────────────────────────────── */
.elementor-section.elementor-section-boxed > .elementor-container {
  max-width: 1200px;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .mhs-blog-grid { grid-template-columns: repeat(2, 1fr); }
  .mhs-hero-section .elementor-column > .elementor-widget-wrap { padding-top: 100px; padding-bottom: 60px; }
  .mhs-feature-preview { max-width: 340px; }
}
@media (max-width: 768px) {
  .mhs-blog-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .mhs-stat { border-right: none; border-bottom: 1px solid var(--border); padding: 20px; }
  .mhs-stat:last-child { border-bottom: none; }
  .mhs-nl-group { flex-direction: column; border-radius: var(--r-md); }
  .mhs-nl-group input { padding: 14px 20px; }
  .mhs-nl-group button { border-radius: var(--r-sm); padding: 14px; font-size: 16px; }
  .mhs-feature-preview { max-width: 100%; }
  .mhs-tool-form { padding: 28px 20px; }
  #site-header { padding: 0 16px; }
}
@media (max-width: 480px) {
  .mhs-hero-section .elementor-column > .elementor-widget-wrap { padding-top: 80px; padding-bottom: 50px; }
  .mhs-card { gap: 10px; }
  .mhs-step { gap: 12px; }
  .mhs-nl-group input { font-size: 16px; }
}

/* ─── Social sharing bar ───────────────────────────────────────────────────── */
.mhs-share {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid #E2E8F0;
  margin-top: 40px;
}
.mhs-share-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.mhs-share-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.mhs-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff !important;
  text-decoration: none !important;
  transition: opacity 0.15s;
}
.mhs-share-btn:hover { opacity: 0.85; text-decoration: none !important; }
.mhs-share-x  { background: #000; }
.mhs-share-fb { background: #1877F2; }
.mhs-share-li { background: #0A66C2; }

/* ─── Navbar height / padding ─────────────────────────────────────────────── */
.site-header {
  padding-block-start: 20px !important;
  padding-block-end: 20px !important;
}

/* ─── Footer logo + wordmark ──────────────────────────────────────────────── */
.site-footer .footer-inner .custom-logo-link {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  text-decoration: none !important;
}
.site-footer .footer-inner .site-branding .site-logo img,
.site-footer .footer-inner .custom-logo-link img {
  height: 32px !important;
  width: auto !important;
  max-width: none !important;
  display: block !important;
  flex-shrink: 0 !important;
  content: url('https://mediahousesolutions.com/wp-content/uploads/2026/03/4.png');
}
.site-footer .mhs-logo-wordmark {
  color: #fff !important;
}

/* ─── Navbar logo + wordmark ───────────────────────────────────────────────── */
/* Match Hello Elementor's specificity: .site-header .header-inner .custom-logo-link */
.site-header .header-inner .custom-logo-link {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  text-decoration: none !important;
}
.site-header .header-inner .site-branding .site-logo img,
.site-header .header-inner .custom-logo-link img {
  height: 36px !important;
  width: auto !important;
  max-width: none !important;
  display: block !important;
  flex-shrink: 0 !important;
}
.mhs-logo-wordmark {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.2;
  white-space: nowrap;
}
/* Hide site tagline from header (it belongs in meta, not the nav) */
.site-header .site-description {
  display: none !important;
}
@media (max-width: 480px) {
  .mhs-logo-wordmark { display: none; }
}

/* ─── Tool inline error message ────────────────────────────────────────────── */
.mhs-error {
  display: none;
  margin-top: 12px;
  padding: 12px 16px;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 8px;
  color: #DC2626;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
}

/* ── Newsletter input — strip inner border from Elementor override ── */
.mhs-nl-group input[type="email"],
.mhs-nl-group input {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
}
.mhs-nl-group input:focus {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
