/* Extracted from WordPress post 12745 (marketing-automation-ecommerce) on 2026-07-27. */
/* === HEADINGS === */
.mk-heading-h2 {
  font-family: var(--font-display, 'Prompt', system-ui, sans-serif) !important;
  font-size: clamp(1.375rem, 3.5vw, 2rem) !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  color: #275388 !important;
  letter-spacing: -0.02em !important;
  margin: 48px 0 24px;
  padding-top: 20px;
  position: relative;
  max-width: 680px;
}
.mk-heading-h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 3px;
  border-radius: 2px;
  background: #DCF763;
}
.mk-heading-h3 {
  font-family: var(--font-display, 'Prompt', system-ui, sans-serif) !important;
  font-size: clamp(1.125rem, 2.7vw, 1.4rem) !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  color: #275388 !important;
  letter-spacing: -0.01em !important;
  margin: 28px 0 16px;
  max-width: 680px;
}

/* === BODY TEXT === */
.mk-body-text {
  font-family: var(--font-primary, 'Prompt', system-ui, sans-serif);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.8;
  color: var(--text-primary, #1A1A2E);
  max-width: 680px;
  margin-bottom: 24px;
}
.mk-body-text p { margin: 0; }
.mk-body-text a,
.mk-bullet-list a,
.mk-numbered-list a {
  color: #275388 !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* === LISTS === */
.mk-bullet-list,
.mk-numbered-list {
  font-family: var(--font-primary, 'Prompt', system-ui, sans-serif);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: var(--text-primary, #1A1A2E);
  max-width: 680px;
  margin: 0 0 28px;
  padding-left: 24px;
}
.mk-bullet-list li,
.mk-numbered-list li { margin-bottom: 10px; }

/* === CALLOUT === */
.mk-callout {
  position: relative;
  margin: 32px 0;
  padding: 20px 24px;
  max-width: 780px;
  background: var(--glass-bg, rgba(255, 255, 255, 0.72));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.45));
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border-left: 3px solid transparent;
}
.mk-callout--tip {
  border-left-color: #DCF763;
  background: rgba(220, 247, 99, 0.06);
}
.mk-callout--warning {
  border-left-color: #F59E0B;
  background: rgba(245, 158, 11, 0.05);
}
.mk-callout--info {
  border-left-color: #275388;
  background: rgba(39, 83, 136, 0.05);
}
.mk-callout--tip .mk-callout__icon { color: #DCF763; filter: drop-shadow(0 0 4px rgba(220, 247, 99, 0.3)); }
.mk-callout--warning .mk-callout__icon { color: #F59E0B; }
.mk-callout--info .mk-callout__icon { color: #275388; }
.mk-callout--tip .mk-callout__title { color: #6B7A1A; }
.mk-callout--warning .mk-callout__title { color: #92400E; }
.mk-callout--info .mk-callout__title { color: #275388; }
.mk-callout__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.mk-callout__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}
.mk-callout__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.mk-callout__title {
  font-family: var(--font-primary, 'Prompt', sans-serif);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
}
.mk-callout__body {
  font-family: var(--font-primary, 'Prompt', sans-serif);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: var(--text-primary, #1A1A2E);
}

/* === TABLE === */
.mk-table {
  margin: 32px 0;
  max-width: 780px;
  position: relative;
}
.mk-table__wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.mk-table__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.mk-table__scroll::-webkit-scrollbar { height: 4px; }
.mk-table__scroll::-webkit-scrollbar-track { background: #F8F9FA; }
.mk-table__scroll::-webkit-scrollbar-thumb { background: rgba(39, 83, 136, 0.3); border-radius: 2px; }
.mk-table__element {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  font-family: var(--font-primary, 'Prompt', sans-serif);
  font-size: 0.875rem;
  line-height: 1.5;
}
.mk-table__element thead tr {
  background: var(--glass-bg, rgba(255, 255, 255, 0.72));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.mk-table__element th {
  padding: 12px 16px;
  font-weight: 600;
  color: var(--accent-navy, #275388);
  text-align: left;
  white-space: nowrap;
  border-bottom: 2px solid rgba(39, 83, 136, 0.12);
}
.mk-table__element tbody tr { transition: background-color 0.15s ease; }
.mk-table__element tbody tr:nth-child(odd) { background: var(--bg-white, #FFFFFF); }
.mk-table__element tbody tr:nth-child(even) { background: var(--bg-page, #F8F9FA); }
.mk-table__element tbody tr:hover { background: rgba(220, 247, 99, 0.06); }
.mk-table__element td {
  padding: 12px 16px;
  color: var(--text-primary, #1A1A2E);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.mk-table__element tbody tr:last-child td { border-bottom: none; }
.mk-table__scroll-hint {
  display: none;
  font-family: var(--font-primary, 'Prompt', sans-serif);
  font-size: 0.75rem;
  color: var(--text-secondary, #4A5568);
  text-align: right;
  padding: 6px 12px 0;
  opacity: 0.7;
}
.mk-table__scroll-hint::after { content: ' \203A'; font-weight: 700; }
@supports not (backdrop-filter: blur(1px)) {
  .mk-table__element thead tr { background: rgba(255, 255, 255, 0.95); }
}
@media (max-width: 768px) {
  .mk-table__scroll-hint { display: block; }
  .mk-table__element th { padding: 10px 14px; font-size: 0.8125rem; }
  .mk-table__element td { padding: 10px 14px; font-size: 0.8125rem; }
}

/* === METRICS DASHBOARD === */
.mk-metrics-dashboard {
  margin: 48px 0;
  max-width: 780px;
}
.mk-metrics-dashboard__panel {
  background: var(--glass-bg, rgba(255, 255, 255, 0.72));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.45));
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.mk-metrics-dashboard__panel::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(135deg, #DCF763 0%, #B8E636 100%);
  opacity: 0.6;
  border-radius: 16px 16px 0 0;
}
.mk-metrics-dashboard__title {
  font-family: var(--font-primary, 'Prompt', sans-serif) !important;
  font-size: var(--text-body, clamp(1rem, 2vw, 1.125rem)) !important;
  line-height: 1.3 !important;
  font-weight: 600 !important;
  color: var(--accent-navy, #275388) !important;
  margin-bottom: 24px;
  padding-top: 4px;
}
.mk-metrics-dashboard__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mk-metric-card {
  text-align: center;
  padding: 20px;
  background: var(--bg-page, #F8F9FA);
  border: 1px solid var(--glass-border-subtle, rgba(0, 0, 0, 0.06));
  border-radius: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.mk-metric-card:hover {
  transform: scale(1.02);
  border-color: rgba(220, 247, 99, 0.4);
  box-shadow: 0 0 20px rgba(220, 247, 99, 0.15), 0 4px 16px rgba(0, 0, 0, 0.08);
}
.mk-metric-card__value {
  font-family: var(--font-primary, 'Prompt', sans-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--accent-lime, #DCF763);
  text-shadow: 0 0 20px rgba(220, 247, 99, 0.3);
  margin-bottom: 4px;
}
.mk-metric-card__label {
  font-family: var(--font-primary, 'Prompt', sans-serif);
  font-size: 0.875rem;
  color: var(--text-secondary, #4A5568);
  line-height: 1.4;
  margin-top: 4px;
}
@media (max-width: 1024px) {
  .mk-metrics-dashboard__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 480px) {
  .mk-metrics-dashboard__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .mk-metrics-dashboard__panel { padding: 24px 16px; }
  .mk-metric-card { padding: 16px 12px; }
  .mk-metric-card__value { font-size: clamp(1.5rem, 8vw, 2.5rem); }
}
@supports not (backdrop-filter: blur(1px)) {
  .mk-metrics-dashboard__panel { background: rgba(255, 255, 255, 0.95); border: 1px solid rgba(0, 0, 0, 0.1); }
}
@media (prefers-reduced-motion: reduce) {
  .mk-metric-card { transition: none; }
  .mk-metric-card:hover { transform: none; }
}

/* === CHECKLIST === */
.mk-checklist {
  margin: 32px 0;
  max-width: 780px;
  padding: 24px;
  background: var(--glass-bg, rgba(255, 255, 255, 0.72));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.45));
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.mk-checklist__title {
  font-family: var(--font-primary, 'Prompt', sans-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-navy, #275388);
  margin: 0 0 16px 0;
  padding: 0;
  line-height: 1.4;
}
.mk-checklist__list { list-style: none; padding: 0; margin: 0; }
.mk-checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}
.mk-checklist__item + .mk-checklist__item { margin-top: 4px; }
.mk-checklist__checkbox {
  position: relative;
  width: 20px; height: 20px;
  min-width: 20px; min-height: 20px;
  border: 2px solid var(--accent-navy, #275388);
  border-radius: 4px;
  background: transparent;
  margin-top: 2px;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mk-checklist__checkbox svg {
  width: 12px; height: 12px;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.mk-checklist__item--checked .mk-checklist__checkbox {
  background: var(--accent-lime, #DCF763);
  border-color: var(--accent-lime, #DCF763);
  box-shadow: 0 0 8px rgba(220, 247, 99, 0.3);
}
.mk-checklist__item--checked .mk-checklist__checkbox svg {
  opacity: 1;
  transform: scale(1);
}
.mk-checklist__text {
  font-family: var(--font-primary, 'Prompt', sans-serif);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary, #1A1A2E);
  transition: opacity 0.3s ease, text-decoration-color 0.3s ease;
  text-decoration: line-through transparent;
}
.mk-checklist__item--checked .mk-checklist__text {
  opacity: 0.6;
  text-decoration: line-through var(--text-secondary, #4A5568);
}
.mk-checklist__item:hover .mk-checklist__checkbox { border-color: var(--accent-lime, #DCF763); }
.mk-checklist__item--checked:hover .mk-checklist__checkbox { box-shadow: 0 0 12px rgba(220, 247, 99, 0.4); }
.mk-checklist__item:focus-visible { outline: 2px solid var(--accent-navy, #275388); outline-offset: 4px; border-radius: 4px; }
@supports not (backdrop-filter: blur(1px)) {
  .mk-checklist { background: rgba(255, 255, 255, 0.95); }
}
@media (prefers-reduced-motion: reduce) {
  .mk-checklist__checkbox, .mk-checklist__checkbox svg, .mk-checklist__text { transition: none; }
}
@media (max-width: 768px) {
  .mk-checklist { padding: 20px; }
  .mk-checklist__item { gap: 10px; }
}
.mk-checklist__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  padding: 14px 18px;
  background: rgba(220, 247, 99, 0.06);
  border: 1px solid rgba(220, 247, 99, 0.15);
  border-radius: 10px;
}
.mk-checklist__cta span {
  font-family: var(--font-primary, 'Prompt', sans-serif);
  font-size: 0.875rem;
  color: var(--text-primary, #1A1A2E);
  line-height: 1.4;
}
.mk-checklist__cta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-lime, #DCF763);
  color: var(--accent-navy, #275388);
  font-family: var(--font-primary, 'Prompt', sans-serif);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.mk-checklist__cta a:hover {
  box-shadow: 0 0 16px rgba(220, 247, 99, 0.4);
  transform: scale(1.02);
}
.mk-checklist__cta a svg { width: 14px; height: 14px; flex-shrink: 0; }
@media (max-width: 768px) {
  .mk-checklist__cta { flex-direction: column; text-align: center; }
  .mk-checklist__cta a { width: 100%; justify-content: center; }
}

/* === CTA INLINE === */
.mk-cta-inline {
  position: relative;
  margin: 48px 0;
  padding: 24px 32px;
  max-width: 780px;
  background: var(--glass-bg, rgba(255, 255, 255, 0.72));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid var(--accent-lime, #DCF763);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.mk-cta-inline__content { flex: 1; min-width: 0; }
.mk-cta-inline__title {
  font-family: var(--font-primary, 'Prompt', sans-serif) !important;
  font-size: 1.125rem !important;
  font-weight: 600 !important;
  color: var(--accent-navy, #275388) !important;
  line-height: 1.3;
  margin: 0;
}
.mk-cta-inline__subtitle {
  font-family: var(--font-primary, 'Prompt', sans-serif);
  font-size: 0.875rem;
  color: var(--text-secondary, #4A5568);
  line-height: 1.5;
  margin-top: 4px;
  margin-bottom: 0;
}
.mk-cta-inline__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-lime, #DCF763) !important;
  color: var(--accent-navy, #275388) !important;
  font-family: var(--font-primary, 'Prompt', sans-serif) !important;
  font-size: 0.9375rem !important;
  font-weight: 600 !important;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  text-decoration: none !important;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.mk-cta-inline__button:hover {
  box-shadow: 0 0 20px rgba(220, 247, 99, 0.4), 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: scale(1.02);
}
.mk-cta-inline__button:active { transform: scale(0.98); }
.mk-cta-inline__button svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.mk-cta-inline__button:hover svg { transform: translateX(3px); }
@media (max-width: 768px) {
  .mk-cta-inline { flex-direction: column; text-align: center; padding: 20px; gap: 16px; }
  .mk-cta-inline__button { width: 100%; justify-content: center; padding: 14px 28px; }
}
@supports not (backdrop-filter: blur(1px)) {
  .mk-cta-inline { background: rgba(255, 255, 255, 0.95); }
}
@media (prefers-reduced-motion: reduce) {
  .mk-cta-inline__button { transition: none; }
  .mk-cta-inline__button svg { transition: none; }
}

/* === SHARE BUTTONS === */
.mk-share {
  margin: 32px 0;
  max-width: 780px;
}
.mk-share__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.mk-share__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--glass-bg, rgba(255, 255, 255, 0.72));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.45));
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  color: var(--text-secondary, #4A5568);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.mk-share__button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(220, 247, 99, 0.3), 0 4px 16px rgba(0, 0, 0, 0.1);
  color: var(--accent-navy, #275388);
  border-color: rgba(220, 247, 99, 0.4);
}
.mk-share__button:active { transform: scale(0.95); }
.mk-share__button svg { width: 20px; height: 20px; flex-shrink: 0; }
.mk-share__tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--accent-navy, #275388);
  color: #FFFFFF;
  font-family: var(--font-primary, 'Prompt', system-ui, sans-serif);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.mk-share__tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--accent-navy, #275388);
}
.mk-share__button--copy.is-copied .mk-share__tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
@supports not (backdrop-filter: blur(1px)) {
  .mk-share__button { background: rgba(255, 255, 255, 0.95); }
}
@media (max-width: 768px) {
  .mk-share__row { gap: 10px; }
  .mk-share__button { width: 38px; height: 38px; }
  .mk-share__button svg { width: 18px; height: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .mk-share__button { transition: none; }
  .mk-share__tooltip { transition: none; }
}

/* ═══════════════════════════════════════════════════════════════
   DARK THEME OVERRIDES — OBBLIGATORIO
   ═══════════════════════════════════════════════════════════════ */

/* Reset Elementor kit global overrides */
.mk-article h2,
.mk-article h3,
.mk-article h4 {
  font-family: var(--font-primary, 'Prompt', system-ui, sans-serif);
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  letter-spacing: normal;
  line-height: inherit;
}
.mk-article a {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

/* Dark theme CSS custom properties */
.mk-article {
  --text-primary: #F0F0F3;
  --text-secondary: #B8B9C4;
  --bg-page: rgba(255, 255, 255, 0.04);
  --bg-white: rgba(255, 255, 255, 0.06);
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-border-subtle: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  --glass-shadow-elevated: 0 16px 48px rgba(0, 0, 0, 0.3);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.25);
  max-width: 840px;
}

/* Headings */
.mk-article .mk-heading-h2 { color: #FFF !important; }
.mk-article .mk-heading-h3 { color: #DCF763 !important; }

/* Links */
.mk-article .mk-body-text a,
.mk-article .mk-bullet-list a,
.mk-article .mk-numbered-list a { color: #DCF763 !important; }

/* Text colors */
.mk-article .mk-body-text,
.mk-article .mk-bullet-list,
.mk-article .mk-numbered-list,
.mk-article .mk-callout__body,
.mk-article .mk-cta-inline__subtitle { color: var(--text-primary); }

/* CTA Inline */
.mk-article .mk-cta-inline { background: rgba(255, 255, 255, 0.06); }
.mk-article .mk-cta-inline__title { color: #FFF !important; }
.mk-article .mk-cta-inline__subtitle { color: #B8B9C4 !important; }
.mk-article .mk-cta-inline__button { color: #275388 !important; background: #DCF763 !important; }
.mk-article .mk-cta-inline__button:hover { color: #275388 !important; }

/* Callouts */
.mk-article .mk-callout--tip .mk-callout__title { color: #DCF763; }
.mk-article .mk-callout--warning .mk-callout__title { color: #F59E0B; }
.mk-article .mk-callout--info .mk-callout__title { color: #87CEEB; }
.mk-article .mk-callout--tip { background: rgba(220, 247, 99, 0.08); }
.mk-article .mk-callout--warning { background: rgba(245, 158, 11, 0.06); }
.mk-article .mk-callout--info { background: rgba(39, 83, 136, 0.15); }
.mk-article .mk-callout--info .mk-callout__icon { color: #87CEEB; }
.mk-article .mk-callout--tip .mk-callout__icon { color: #DCF763; }
.mk-article .mk-callout--warning .mk-callout__icon { color: #F59E0B; }
.mk-article .mk-callout__icon { width: 24px; height: 24px; }
.mk-article .mk-callout--info { border-left-color: #87CEEB; }

/* Table */
.mk-article .mk-table__element th { color: #DCF763; border-bottom-color: rgba(255, 255, 255, 0.1); }
.mk-article .mk-table__element td { border-bottom-color: rgba(255, 255, 255, 0.06); }
.mk-article .mk-table__element tbody tr:hover { background: rgba(220, 247, 99, 0.08); }
.mk-article .mk-table__wrapper { border-color: rgba(255, 255, 255, 0.1); }
.mk-article .mk-table__scroll-hint { color: #B8B9C4; }

/* Metrics Dashboard */
.mk-article .mk-metrics-dashboard__title { color: #DCF763 !important; font-size: var(--text-body, clamp(1rem, 2vw, 1.125rem)) !important; }

/* Numbered List */
.mk-article .mk-numbered-list li::before { color: #DCF763; }

/* Checklist */
.mk-article .mk-checklist__title { color: #FFF; }
.mk-article .mk-checklist__checkbox { border-color: rgba(255, 255, 255, 0.3); }

/* Share Buttons */
.mk-article .mk-share__button:hover { color: #FFF; }
.mk-article .mk-share__button--copy:hover { background: var(--accent-lime, #DCF763); color: var(--accent-navy, #275388); border-color: var(--accent-lime, #DCF763); }

/* Images */
.mk-article img { border-radius: var(--radius-md, 8px); }

/* Fallback for no backdrop-filter */
@supports not (backdrop-filter: blur(1px)) {
  .mk-article .mk-callout,
  .mk-article .mk-checklist,
  .mk-article .mk-metrics-dashboard__panel {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
  }
}
