/* ── Tool Container ── */
.mth-tool-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  font-family: 'DM Sans', sans-serif;
  box-sizing: border-box;
}
.mth-tool-container *, .mth-tool-container *::before, .mth-tool-container *::after {
  box-sizing: border-box;
}

/* ── Toolbar ── */
.mth-toolbar {
  background: #0D1526;
  border-bottom: 1px solid rgba(55,75,100,0.3);
  padding: 6px 10px;
  display: flex;
  flex-wrap: nowrap;
  gap: 4px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  border-radius: 14px 14px 0 0;
}
.mth-toolbar::-webkit-scrollbar {
  height: 4px;
}
.mth-toolbar::-webkit-scrollbar-track {
  background: transparent;
}
.mth-toolbar::-webkit-scrollbar-thumb {
  background: rgba(55,75,100,0.3);
  border-radius: 4px;
}
.mth-toolbar-btn {
  padding: 4px 8px;
  font-size: 12px;
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  color: #8899AA;
  background: transparent;
  border: 1px solid rgba(55,75,100,0.2);
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  scroll-snap-align: start;
  transition: color 0.2s, background 0.2s;
  line-height: 1.4;
}
.mth-toolbar-btn:hover {
  color: #FFFFFF;
  background: rgba(139,92,246,0.1);
}

/* ── Split Pane ── */
.mth-split-pane {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(55,75,100,0.15);
  border: 1px solid rgba(55,75,100,0.3);
  border-radius: 14px;
  overflow: hidden;
  min-height: 500px;
}

/* ── Left Pane (Editor) ── */
.mth-editor-pane {
  background: #111B2E;
  border-left: 3px solid #8B5CF6;
  display: flex;
  flex-direction: column;
  position: relative;
}
.mth-editor-label {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px 6px;
  font-size: 12px;
  font-weight: 600;
  color: #8899AA;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.mth-editor-label svg {
  width: 14px;
  height: 14px;
  opacity: 0.6;
}
#mth-editor {
  flex: 1;
  width: 100%;
  min-height: 450px;
  resize: none;
  background: transparent;
  border: none;
  outline: none;
  color: #C8D8E8;
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  font-size: 14px;
  line-height: 1.6;
  padding: 12px 14px;
  padding-bottom: 32px;
}
#mth-editor::placeholder {
  color: rgba(136,153,170,0.4);
}
.mth-char-count {
  position: absolute;
  bottom: 8px;
  right: 12px;
  font-size: 11px;
  color: #556677;
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  pointer-events: none;
}
.mth-char-count.mth-char-amber {
  color: #F59E0B;
}
.mth-char-count.mth-char-red {
  color: #EF4444;
}

/* ── Right Pane (Preview / Source) ── */
.mth-output-pane {
  display: flex;
  flex-direction: column;
  background: #0D1526;
}
.mth-output-header {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
}
.mth-tab-pill {
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #556677;
  background: transparent;
  border: 1px solid rgba(55,75,100,0.2);
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.mth-tab-pill:hover {
  color: #8899AA;
}
.mth-tab-pill.mth-tab-active {
  color: #FFFFFF;
  background: rgba(139,92,246,0.15);
  border-color: rgba(139,92,246,0.3);
}
#mth-preview-pane {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
}
#mth-source-pane {
  flex: 1;
  overflow: auto;
  display: none;
  background: #111B2E;
  padding: 16px;
}
#mth-source-pane pre {
  margin: 0;
  white-space: pre-wrap;
  word-wrap: break-word;
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  font-size: 13px;
  line-height: 1.5;
  color: #C8D8E8;
}

/* ── Preview Content Styles ── */
.mth-preview-content {
  font-family: 'DM Sans', sans-serif;
  color: #C8D8E8;
  line-height: 1.7;
  font-size: 15px;
  padding: 20px;
}
.mth-preview-content h1 {
  font-size: 28px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 20px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(55,75,100,0.3);
}
.mth-preview-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 18px 0 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(55,75,100,0.2);
}
.mth-preview-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 16px 0 8px;
}
.mth-preview-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 14px 0 6px;
}
.mth-preview-content h5 {
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 12px 0 6px;
}
.mth-preview-content h6 {
  font-size: 14px;
  font-weight: 700;
  color: #8899AA;
  margin: 10px 0 6px;
}
.mth-preview-content p {
  margin: 0 0 12px;
}
.mth-preview-content a {
  color: #8B5CF6;
  text-decoration: none;
}
.mth-preview-content a:hover {
  text-decoration: underline;
}
.mth-preview-content strong {
  color: #FFFFFF;
  font-weight: 700;
}
.mth-preview-content em {
  font-style: italic;
}
.mth-preview-content del {
  text-decoration: line-through;
  opacity: 0.6;
}
.mth-preview-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 8px 0;
}
.mth-preview-content ul, .mth-preview-content ol {
  padding-left: 24px;
  margin: 0 0 12px;
}
.mth-preview-content li {
  margin: 4px 0;
}
.mth-preview-content blockquote {
  border-left: 3px solid #8B5CF6;
  padding: 8px 16px;
  margin: 12px 0;
  background: rgba(139,92,246,0.05);
  color: #8899AA;
  border-radius: 0 8px 8px 0;
}
.mth-preview-content pre {
  background: #111B2E;
  border: 1px solid rgba(55,75,100,0.3);
  border-radius: 10px;
  padding: 16px;
  overflow-x: auto;
  margin: 12px 0;
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  font-size: 13px;
  line-height: 1.5;
}
.mth-preview-content code {
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  font-size: 13px;
}
.mth-preview-content :not(pre) > code {
  background: rgba(139,92,246,0.1);
  color: #8B5CF6;
  padding: 2px 6px;
  border-radius: 4px;
}
.mth-preview-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
  font-size: 14px;
}
.mth-preview-content th {
  background: rgba(139,92,246,0.08);
  color: #FFFFFF;
  font-weight: 600;
  padding: 10px 12px;
  text-align: left;
  border: 1px solid rgba(55,75,100,0.3);
}
.mth-preview-content td {
  padding: 8px 12px;
  border: 1px solid rgba(55,75,100,0.2);
  color: #C8D8E8;
}
.mth-preview-content tr:nth-child(even) td {
  background: rgba(55,75,100,0.05);
}
.mth-preview-content hr {
  border: none;
  height: 1px;
  background: rgba(55,75,100,0.3);
  margin: 24px 0;
}

/* ── Stats Bar ── */
.mth-stats-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 14px;
  font-size: 12px;
  color: #556677;
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  border: 1px solid rgba(55,75,100,0.15);
  border-top: none;
  border-radius: 0 0 10px 10px;
  margin-top: 4px;
  background: rgba(13,21,38,0.5);
}
.mth-stats-bar span {
  white-space: nowrap;
}
.mth-stat-sep {
  color: rgba(85,102,119,0.4);
}

/* ── Action Buttons ── */
.mth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  justify-content: center;
}
.mth-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
}
.mth-action-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.mth-action-btn:active {
  transform: translateY(0);
}
.mth-action-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.mth-btn-copy-html {
  background: #8B5CF6;
  color: #FFFFFF;
}
.mth-btn-copy-html:hover {
  background: #7C3AED;
}
.mth-btn-copy-md {
  background: rgba(139,92,246,0.12);
  color: #A78BFA;
  border: 1px solid rgba(139,92,246,0.25);
}
.mth-btn-copy-md:hover {
  background: rgba(139,92,246,0.2);
}
.mth-btn-clear {
  background: rgba(239,68,68,0.1);
  color: #F87171;
  border: 1px solid rgba(239,68,68,0.2);
}
.mth-btn-clear:hover {
  background: rgba(239,68,68,0.18);
}

/* ── Toast ── */
#mth-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #1E293B;
  color: #E2E8F0;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(139,92,246,0.2);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.4,0,0.2,1), transform 0.3s cubic-bezier(0.4,0,0.2,1), visibility 0.3s;
  pointer-events: none;
  white-space: nowrap;
}
#mth-toast.mth-toast-show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ── Mobile Toggle (hidden on desktop) ── */
.mth-mobile-toggle {
  display: none;
  gap: 4px;
  padding: 8px 14px;
  background: #0D1526;
  border-bottom: 1px solid rgba(55,75,100,0.2);
}
.mth-mobile-toggle-btn {
  flex: 1;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #556677;
  background: transparent;
  border: 1px solid rgba(55,75,100,0.2);
  border-radius: 8px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: color 0.2s, background 0.2s;
}
.mth-mobile-toggle-btn.mth-mobile-active {
  color: #FFFFFF;
  background: rgba(139,92,246,0.15);
  border-color: rgba(139,92,246,0.3);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .mth-split-pane {
    grid-template-columns: 1fr;
  }
  .mth-mobile-toggle {
    display: flex;
  }
  .mth-editor-pane.mth-mobile-hidden {
    display: none;
  }
  .mth-output-pane.mth-mobile-hidden {
    display: none;
  }
  #mth-editor {
    min-height: 300px;
  }
  .mth-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .mth-action-btn {
    justify-content: center;
  }
}

/* === WIDGET 1: HERO === */
.mth-hero-section{text-align:center;padding:48px 20px 32px;max-width:800px;margin:0 auto}
.mth-hero-badge{display:inline-flex;align-items:center;gap:6px;background:rgba(139,92,246,0.1);border:1px solid rgba(139,92,246,0.3);border-radius:20px;padding:6px 16px;font-size:13px;color:#8B5CF6;font-family:'DM Sans',sans-serif;margin-bottom:20px}
.mth-hero-badge svg{width:14px;height:14px;fill:#8B5CF6}
.mth-hero-title{font-family:'Laila',serif;font-size:clamp(28px,4vw,42px);font-weight:700;color:#FFFFFF;margin:0 0 12px;line-height:1.2}
.mth-hero-title span{color:#8B5CF6}
.mth-hero-sub{font-family:'DM Sans',sans-serif;font-size:15px;color:#8899AA;max-width:620px;margin:0 auto;line-height:1.6}

/* === WIDGET 3: TRUST === */
.mth-trust-section{padding:40px 20px;max-width:900px;margin:0 auto}
.mth-trust-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;text-align:center}
.mth-trust-value{font-family:'DM Sans',sans-serif;font-size:clamp(28px,3.5vw,38px);font-weight:700;color:#FFFFFF;line-height:1}
.mth-trust-value span{color:#8B5CF6}
.mth-trust-label{font-size:13px;color:#5A7090;margin-top:6px;font-family:'DM Sans',sans-serif}
@media(max-width:600px){.mth-trust-grid{grid-template-columns:repeat(2,1fr);gap:20px}}

/* === WIDGET 4: HOW IT WORKS === */
.mth-hiw-section{padding:60px 20px;max-width:900px;margin:0 auto}
.mth-hiw-header{text-align:center;margin-bottom:48px}
.mth-hiw-label{font-size:13px;color:#8B5CF6;text-transform:uppercase;letter-spacing:2px;font-weight:600;margin-bottom:8px;font-family:'DM Sans',sans-serif}
.mth-hiw-title{font-family:'DM Sans',sans-serif;font-size:clamp(24px,3.5vw,34px);font-weight:700;color:#FFFFFF;margin:0 0 10px}
.mth-hiw-sub{font-size:15px;color:#8899AA;max-width:560px;margin:0 auto;line-height:1.6;font-family:'DM Sans',sans-serif}
.mth-hiw-card{background:#111B2E;border:1px solid rgba(55,75,100,0.3);border-radius:16px;padding:48px 32px;position:relative;overflow:hidden}
.mth-hiw-card::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,#8B5CF6,#EC4899,#F59E0B)}
.mth-hiw-steps{display:grid;grid-template-columns:repeat(3,1fr);gap:32px;text-align:center}
.mth-hiw-step{display:flex;flex-direction:column;align-items:center;gap:10px}
.mth-hiw-num{width:44px;height:44px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:18px;font-weight:700;font-family:'DM Sans',sans-serif}
.mth-hiw-num-purple{background:rgba(139,92,246,0.12);color:#8B5CF6}
.mth-hiw-num-blue{background:rgba(59,130,246,0.12);color:#3B82F6}
.mth-hiw-num-green{background:rgba(16,185,129,0.12);color:#10B981}
.mth-hiw-step-title{font-size:15px;font-weight:700;color:#FFFFFF;font-family:'DM Sans',sans-serif}
.mth-hiw-step-desc{font-size:13px;color:#8899AA;line-height:1.5;font-family:'DM Sans',sans-serif}
.mth-hiw-cta{display:inline-block;background:#8B5CF6;color:#FFFFFF;padding:12px 28px;border-radius:10px;font-family:'DM Sans',sans-serif;font-size:15px;font-weight:600;text-decoration:none;transition:background 0.2s,transform 0.2s}
.mth-hiw-cta:hover{background:#7C3AED;transform:translateY(-1px)}
@media(max-width:768px){.mth-hiw-steps{grid-template-columns:1fr;gap:24px}}

/* === WIDGET 5: SEO === */
.mth-engage-section{padding:60px 20px;max-width:1000px;margin:0 auto;font-family:'DM Sans',sans-serif}
.mth-engage-grid{display:grid;grid-template-columns:1fr 300px;gap:48px}
.mth-engage-main h2{font-size:clamp(22px,3vw,30px);font-weight:700;color:#FFFFFF;margin:0 0 16px;line-height:1.3}
.mth-engage-main h3{font-size:20px;font-weight:700;color:#FFFFFF;margin:40px 0 16px}
.mth-engage-main p{color:#C8D8E8;font-size:15px;line-height:1.7;margin:0 0 14px}
.mth-engage-main a{color:#8B5CF6;text-decoration:none}
.mth-engage-main a:hover{text-decoration:underline}
.mth-engage-main code{background:rgba(139,92,246,0.1);color:#8B5CF6;padding:2px 6px;border-radius:4px;font-size:13px}
.mth-engage-table-wrap{overflow-x:auto;margin-bottom:16px}
.mth-engage-table{width:100%;border-collapse:collapse;font-size:13px}
.mth-engage-table th{background:rgba(139,92,246,0.08);color:#FFFFFF;padding:10px 14px;text-align:left;font-weight:600;border-bottom:1px solid rgba(55,75,100,0.3)}
.mth-engage-table td{padding:10px 14px;border-bottom:1px solid rgba(55,75,100,0.15);color:#C8D8E8}
.mth-engage-benefits{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:16px;margin-bottom:16px}
.mth-engage-benefit-card{background:#111B2E;border:1px solid rgba(55,75,100,0.3);border-radius:14px;padding:20px;transition:transform 0.25s,box-shadow 0.25s}
.mth-engage-benefit-card:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(139,92,246,0.08)}
.mth-engage-benefit-icon{width:44px;height:44px;border-radius:10px;display:flex;align-items:center;justify-content:center;margin-bottom:12px}
.mth-engage-benefit-title{font-size:15px;font-weight:700;color:#FFFFFF;margin-bottom:6px}
.mth-engage-benefit-desc{font-size:13px;color:#8899AA;line-height:1.5}
.mth-engage-usecases{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.mth-engage-usecase-card{background:#111B2E;border:1px solid rgba(55,75,100,0.3);border-radius:14px;padding:20px;transition:transform 0.25s}
.mth-engage-usecase-card:hover{transform:translateY(-2px)}
.mth-engage-usecase-icon{font-size:24px;margin-bottom:10px}
.mth-engage-usecase-title{font-size:15px;font-weight:700;color:#FFFFFF;margin-bottom:6px}
.mth-engage-usecase-desc{font-size:13px;color:#8899AA;line-height:1.5}
.mth-engage-sidebar{position:sticky;top:100px;align-self:start;display:flex;flex-direction:column;gap:20px}
.mth-engage-cta-box{background:linear-gradient(135deg,rgba(139,92,246,0.12),rgba(236,72,153,0.08));border:1px solid rgba(139,92,246,0.3);border-radius:14px;padding:24px;text-align:center}
.mth-engage-cta-title{font-size:18px;font-weight:700;color:#FFFFFF;margin-bottom:8px}
.mth-engage-cta-text{font-size:13px;color:#8899AA;line-height:1.5;margin:0 0 16px}
.mth-engage-cta-btn{display:inline-block;background:#8B5CF6;color:#FFFFFF;padding:10px 24px;border-radius:10px;font-size:14px;font-weight:600;text-decoration:none;transition:background 0.2s,transform 0.2s}
.mth-engage-cta-btn:hover{background:#7C3AED;transform:translateY(-1px)}
.mth-engage-info-box,.mth-engage-nav-box,.mth-engage-related-box{background:#111B2E;border:1px solid rgba(55,75,100,0.3);border-radius:14px;padding:20px}
.mth-engage-info-title,.mth-engage-nav-title,.mth-engage-related-title{font-size:14px;font-weight:700;color:#FFFFFF;margin-bottom:12px;text-transform:uppercase;letter-spacing:0.5px}
.mth-engage-info-list{list-style:none;padding:0;margin:0}
.mth-engage-info-list li{font-size:13px;color:#8899AA;padding:6px 0;border-bottom:1px solid rgba(55,75,100,0.15)}
.mth-engage-info-list li:last-child{border-bottom:none}
.mth-engage-info-list strong{color:#C8D8E8}
.mth-engage-nav-list{list-style:none;padding:0;margin:0}
.mth-engage-nav-list li{padding:5px 0}
.mth-engage-nav-list a{font-size:13px;color:#8B5CF6;text-decoration:none}
.mth-engage-nav-list a:hover{text-decoration:underline}
.mth-engage-related-link{display:flex;align-items:center;gap:10px;padding:8px 0;font-size:13px;color:#C8D8E8;text-decoration:none;border-bottom:1px solid rgba(55,75,100,0.15)}
.mth-engage-related-link:last-child{border-bottom:none}
.mth-engage-related-link:hover{color:#8B5CF6}
.mth-engage-related-icon{width:32px;height:32px;border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:16px;flex-shrink:0}
@media(max-width:768px){.mth-engage-grid{grid-template-columns:1fr}.mth-engage-sidebar{position:static}.mth-engage-usecases{grid-template-columns:1fr}}

/* === WIDGET 6: FAQ === */
.mth-faq-section{padding:60px 20px;max-width:800px;margin:0 auto;font-family:'DM Sans',sans-serif}
.mth-faq-header{text-align:center;margin-bottom:40px}
.mth-faq-label{font-size:13px;color:#8B5CF6;text-transform:uppercase;letter-spacing:2px;font-weight:600;margin-bottom:8px}
.mth-faq-title{font-size:clamp(24px,3.5vw,34px);font-weight:700;color:#FFFFFF;margin:0}
.mth-faq-list{display:flex;flex-direction:column;gap:10px}
.mth-faq-item{border:1px solid rgba(55,75,100,0.3);border-radius:12px;overflow:hidden}
.mth-faq-q{width:100%;display:flex;justify-content:space-between;align-items:center;padding:16px 20px;background:#111B2E;border:none;color:#FFFFFF;font-size:15px;font-weight:600;cursor:pointer;font-family:'DM Sans',sans-serif;text-align:left}
.mth-faq-q:hover{background:rgba(139,92,246,0.04)}
.mth-faq-icon{font-size:20px;color:#8B5CF6;transition:transform 0.3s;flex-shrink:0;margin-left:12px}
.mth-faq-item.active .mth-faq-icon{transform:rotate(45deg)}
.mth-faq-a{max-height:0;overflow:hidden;transition:max-height 0.4s ease,padding 0.3s ease;padding:0 20px}
.mth-faq-item.active .mth-faq-a{max-height:300px;padding:0 20px 16px}
.mth-faq-a p{font-size:14px;color:#8899AA;line-height:1.6;margin:0}
.mth-faq-a code{background:rgba(139,92,246,0.1);color:#8B5CF6;padding:2px 6px;border-radius:4px;font-size:13px}

/* === WIDGET 7: CTA === */
.mth-cta-section{text-align:center;padding:60px 20px;max-width:600px;margin:0 auto}
.mth-cta-title{font-family:'DM Sans',sans-serif;font-size:clamp(24px,3.5vw,34px);font-weight:700;color:#FFFFFF;margin:0 0 12px}
.mth-cta-sub{font-size:15px;color:#8899AA;margin:0 0 24px;line-height:1.6;font-family:'DM Sans',sans-serif}
.mth-cta-btn{display:inline-block;background:#8B5CF6;color:#FFFFFF;padding:14px 32px;border-radius:10px;font-family:'DM Sans',sans-serif;font-size:16px;font-weight:600;text-decoration:none;transition:background 0.2s,transform 0.2s}
.mth-cta-btn:hover{background:#7C3AED;transform:translateY(-2px)}

/* === BREADCRUMB === */
.rank-math-breadcrumb{max-width:1000px;margin:0 auto;padding:12px 20px;font-family:'DM Sans',sans-serif;font-size:13px}
.rank-math-breadcrumb a{color:#5A7090;text-decoration:none}
.rank-math-breadcrumb a:hover{color:#8B5CF6}
.rank-math-breadcrumb .separator{color:#374B64;margin:0 8px}
.rank-math-breadcrumb .last{color:#8899AA}
