/* Modern Card v2 - deployed client styles
   Bold, hero-led card. Visuals mirror the editor's mc-* preview rules
   (NewEditor.css) so the live page matches the builder. */

* { box-sizing: border-box; }

html,
body,
#root {
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background: #0f1117;
  color: #111827;
  font-family: 'Inter', 'DM Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

/* Center the card; the frame (below) sits behind it on desktop. On mobile the
   card fills the screen. */
#root {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* Desktop backdrop behind the card — a blurred, darkened version of the hero
   (set by the client) or a neutral dark. Hidden on mobile. */
.mc-frame { display: none; }

.mc-root {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  background: #ffffff;
  color: #111827;
}

.mc-page-bg-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.mc-scroll {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 32px;
  -webkit-overflow-scrolling: touch;
}
.mc-scroll::-webkit-scrollbar { display: none; width: 0; height: 0; }

/* Desktop: a centered 566px card on the frame — the original Modern Card layout. */
@media (min-width: 768px) {
  #root { align-items: center; padding: 20px; }
  .mc-frame {
    display: block;
    position: fixed;
    inset: -40px;
    z-index: 0;
    background-color: #0f1117;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(22px);
    transform: scale(1.08);
  }
  .mc-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(8, 10, 14, 0.5);
  }
  .mc-root {
    width: 566px;
    max-width: calc(100vw - 40px);
    height: 80vh;
    min-height: 600px;
    max-height: 900px;
    border-radius: 40px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  }
}

.mc-header { position: relative; width: 100%; }

/* Hero */
.mc-hero { position: relative; width: 100%; height: 340px; overflow: hidden; }
/* The hero media fades to transparent at the bottom (mask) so the image
   dissolves into the page base below — the signature Modern Card fade. */
.mc-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-mask-image: linear-gradient(to bottom, #000 50%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 50%, transparent 100%);
}
.mc-hero-empty { background: #f3f4f6; }
.mc-hero-anim { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.mc-hero-anim.is-shimmer {
  background: linear-gradient(110deg, transparent 40%, rgba(255, 255, 255, 0.35) 50%, transparent 60%);
  background-size: 300% 100%;
  animation: mc-shimmer 3.2s linear infinite;
}
.mc-hero-anim.is-glow {
  background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.4) 0%, transparent 55%);
  animation: mc-glow 3s ease-in-out infinite;
}
@keyframes mc-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -100% 0; } }
@keyframes mc-glow { 0%, 100% { opacity: 0.3; } 50% { opacity: 0.7; } }

/* Optional overlapping avatar */
.mc-header-stack { position: relative; z-index: 3; width: 100%; display: flex; justify-content: center; }
.mc-header-stack.has-hero { margin-top: -52px; }
.mc-avatar {
  position: relative;
  z-index: 3;
  width: var(--mc-avatar-size, 96px);
  height: var(--mc-avatar-size, 96px);
  padding: var(--mc-avatar-ring-size, 4px);
  border-radius: 50%;
  background: var(--mc-avatar-ring-bg, #ffffff);
  display: grid;
  place-items: center;
  font-size: calc(var(--mc-avatar-size, 96px) * 0.4);
  font-weight: 800;
  color: #111827;
  box-shadow: 0 8px 26px rgba(17, 24, 39, 0.18);
  overflow: hidden;
}
.mc-avatar-inner { width: 100%; height: 100%; display: grid; place-items: center; border-radius: inherit; background: #f3f4f6; overflow: hidden; }
.mc-avatar.is-image .mc-avatar-inner { background: transparent; }
.mc-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; user-select: none; -webkit-user-drag: none; }

/* Content */
.mc-body-stack { display: flex; flex-direction: column; gap: 14px; padding: 0 20px; margin-top: 14px; }
/* Signature "build-down" — name overlaps the faded hero. */
.mc-body-stack.is-overlap { position: relative; z-index: 2; margin-top: -84px; }
.mc-body-stack.is-overlap .mc-name { text-shadow: 0 1px 12px rgba(0, 0, 0, 0.32); }

/* Profile */
.mc-profile { width: 100%; text-align: center; padding: 2px 4px 0; }
.mc-name { line-height: 1.1; letter-spacing: -0.01em; }
.mc-handle { margin-top: 4px; color: #6b7280; line-height: 1.25; }
.mc-bio { max-width: 380px; margin: 9px auto 0; color: #4b5563; line-height: 1.55; white-space: pre-wrap; }
.mc-profile-pills { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.mc-profile-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  line-height: 1.2;
}
.mc-root.is-page-dark .mc-profile-pill { border-color: rgba(249, 250, 251, 0.2); background: rgba(255, 255, 255, 0.08); }
.mc-pill-icon { width: 13px; height: 13px; flex-shrink: 0; }
.mc-status-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; background: #22c55e; box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18); }

/* Socials */
.mc-socials { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; padding: 0; }
.mc-social {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.1);
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(17, 24, 39, 0.06);
  transition: transform 0.15s, box-shadow 0.15s;
}
.mc-social:hover { transform: translateY(-2px); box-shadow: 0 6px 14px rgba(17, 24, 39, 0.12); }
.mc-social.is-disabled { cursor: default; opacity: 0.7; }
.mc-social.is-disabled:hover { transform: none; box-shadow: 0 2px 8px rgba(17, 24, 39, 0.06); }
.mc-social img { width: 24px; height: 24px; object-fit: contain; display: block; pointer-events: none; user-select: none; -webkit-user-drag: none; }
.mc-social span { font-size: 11px; font-weight: 800; }
.mc-socials.is-icon-only .mc-social { width: 38px; height: 38px; background: transparent; border-color: transparent; box-shadow: none; }
.mc-socials.is-icon-only .mc-social:hover { box-shadow: none; }
.mc-socials.is-icon-only .mc-social img { width: 32px; height: 32px; }
.mc-socials.is-mono .mc-social { background: transparent; border-color: transparent; box-shadow: none; }
.mc-socials.is-mono .mc-social img { width: 30px; height: 30px; filter: grayscale(1) contrast(0.85) opacity(0.7); }
.mc-socials.is-mono .mc-social:hover img { filter: grayscale(1) opacity(0.95); }
.mc-root.is-page-dark .mc-social { color: rgba(249, 250, 251, 0.82); }

/* Links */
.mc-links { display: flex; flex-direction: column; gap: 12px; padding: 0; list-style: none; }
.mc-link-anchor { display: block; position: relative; border-radius: 14px; color: inherit; text-decoration: none; cursor: pointer; outline-offset: 4px; }
.mc-link-anchor:focus-visible { outline: 2px solid rgba(120, 170, 255, 0.7); }

/* Flat, full-width buttons — black by default (the original Modern Card look). */
.mc-link-card {
  position: relative;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  border: 1px solid var(--mc-link-border, transparent);
  border-radius: 10px;
  background: var(--mc-link-bg, #000000);
  color: var(--mc-link-text, #ffffff);
  box-shadow: 0 1px 3px var(--mc-link-shadow, transparent);
  overflow: hidden;
  transition: opacity 0.18s ease;
}
.mc-link-anchor:hover .mc-link-card { opacity: 0.9; }
.mc-link-title { min-width: 0; font-weight: 600; font-size: 15px; line-height: 1.25; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mc-link-icon { flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; color: var(--mc-link-text, #111827); line-height: 0; }
.mc-link-icon img, .mc-featured-icon img { width: 22px; height: 22px; display: block; object-fit: contain; user-select: none; -webkit-user-drag: none; }
.mc-link-icon span, .mc-featured-icon span { font-size: 10px; font-weight: 900; line-height: 1; }

/* Featured — bold image card with overlaid copy */
.mc-featured-card {
  position: relative;
  width: 100%;
  min-height: 150px;
  aspect-ratio: 2.35 / 1;
  border: 0;
  border-radius: 12px;
  background: var(--mc-featured-bg, #ffffff);
  color: var(--mc-featured-title, #111827);
  box-shadow: none;
  overflow: hidden;
  transition: transform 0.16s ease;
}
.mc-link-anchor:hover .mc-featured-card { transform: translateY(-2px); }
.mc-featured-card.has-image { background: #111827; }
.mc-featured-card.has-image::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0) 28%, rgba(17, 24, 39, 0.74) 100%);
}
.mc-featured-image, .mc-featured-placeholder { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.mc-featured-image { object-fit: cover; user-select: none; -webkit-user-drag: none; pointer-events: none; }
.mc-featured-placeholder {
  background:
    linear-gradient(135deg, rgba(99, 102, 241, 0.16), rgba(236, 72, 153, 0.16)),
    var(--mc-featured-bg, #f8f9fa);
}
.mc-featured-placeholder::after { content: ''; position: absolute; inset: 18px; border: 1px dashed rgba(17, 24, 39, 0.22); border-radius: 12px; }
.mc-featured-copy { position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 2; display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.mc-featured-title { color: var(--mc-featured-title, #111827); font-size: 18px; font-weight: 800; letter-spacing: -0.01em; line-height: 1.15; overflow-wrap: anywhere; }
.mc-featured-card.has-image .mc-featured-title { text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3); }
.mc-featured-subtitle { color: var(--mc-featured-subtitle, #6b7280); font-size: 12px; font-weight: 600; line-height: 1.25; overflow-wrap: anywhere; }
.mc-featured-card.has-image .mc-featured-subtitle { text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3); }
.mc-featured-icon { position: absolute; top: 12px; right: 12px; z-index: 2; display: inline-flex; align-items: center; justify-content: center; color: #ffffff; line-height: 0; }

/* Gallery */
.mc-gallery-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--mc-gallery-text, #111827);
  box-shadow: none;
  padding: 0;
  overflow: visible;
}
.mc-gallery-title { margin: 0 0 8px; font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; line-height: 1.2; }
.mc-root.is-page-dark .mc-gallery-title { color: rgba(249, 250, 251, 0.9); }
.mc-gallery-grid { display: grid; grid-template-columns: repeat(var(--mc-gallery-columns, 2), minmax(0, 1fr)); gap: 6px; }
.mc-gallery-tile { position: relative; aspect-ratio: 1 / 1; border: 0; border-radius: 10px; padding: 0; background: rgba(17, 24, 39, 0.06); color: inherit; overflow: hidden; }
.mc-root.is-page-dark .mc-gallery-tile { background: rgba(255, 255, 255, 0.1); }
.mc-gallery-tile.is-clickable { cursor: zoom-in; }
.mc-gallery-tile.is-clickable:focus-visible { outline: 2px solid rgba(120, 170, 255, 0.7); outline-offset: 2px; }
.mc-gallery-tile img { width: 100%; height: 100%; object-fit: cover; display: block; user-select: none; -webkit-user-drag: none; pointer-events: none; }
.mc-gallery-empty {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(14, 165, 233, 0.12)),
    repeating-linear-gradient(45deg, rgba(17, 24, 39, 0.06) 0 6px, transparent 6px 12px);
}
.mc-gallery-label {
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 6px;
  padding: 4px 6px;
  border: 1px solid var(--mc-gallery-label-border, rgba(255, 255, 255, 0.26));
  border-radius: 8px;
  background: var(--mc-gallery-label-bg, rgba(17, 24, 39, 0.68));
  color: var(--mc-gallery-label-text, #ffffff);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Media */
.mc-media-card {
  border: 0;
  border-radius: 12px;
  background: var(--mc-media-bg, #ffffff);
  color: var(--mc-media-title, #111827);
  box-shadow: none;
  overflow: hidden;
}
.mc-media-frame, .mc-media-placeholder { width: 100%; display: block; border: none; background: #0f172a; }
.mc-media-frame { overflow: hidden; }
.mc-media-frame.is-youtube, .mc-media-placeholder.is-youtube { aspect-ratio: 16 / 9; height: auto; }
.mc-media-frame.is-spotify, .mc-media-placeholder.is-spotify { height: var(--mc-media-frame-height, 352px); min-height: var(--mc-media-frame-height, 352px); }
.mc-media-frame.is-soundcloud, .mc-media-placeholder.is-soundcloud { height: var(--mc-media-frame-height, 166px); min-height: var(--mc-media-frame-height, 166px); }
.mc-media-placeholder { display: flex; align-items: center; justify-content: center; color: #ffffff; font-weight: 700; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; min-height: 120px; }
.mc-media-copy { padding: 11px 14px 13px; }
.mc-media-title { color: var(--mc-media-title, #111827); font-size: 15px; font-weight: 700; line-height: 1.2; }
.mc-media-caption { margin-top: 4px; color: var(--mc-media-caption, #6b7280); font-size: 12px; font-weight: 500; line-height: 1.35; }

/* Header / text / divider */
.mc-link-header {
  padding: 14px 4px 4px;
  background: var(--mc-header-bg, transparent);
  color: #6b7280;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: left;
}
.mc-root.is-page-dark .mc-link-header { color: rgba(249, 250, 251, 0.72); }
.mc-link-note {
  padding: 12px 14px;
  border-radius: 12px;
  border: 0;
  background: var(--mc-text-bg, rgba(17, 24, 39, 0.05));
  color: #4b5563;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
}
.mc-root.is-page-dark .mc-link-note { background: var(--mc-text-bg, rgba(255, 255, 255, 0.08)); color: rgba(249, 250, 251, 0.88); }
.mc-link-divider { display: flex; align-items: center; justify-content: center; padding: 8px 0; color: var(--mc-divider-color, #9ca3af); }
.mc-link-divider span { width: 100%; height: var(--mc-divider-thickness, 2px); background: var(--mc-divider-color, #e5e7eb); border-radius: 2px; }
.mc-root.is-page-dark .mc-link-divider span { background: var(--mc-divider-color, rgba(249, 250, 251, 0.2)); }
.mc-link-divider-chars span { width: auto; height: auto; background: transparent; letter-spacing: 0.12em; line-height: 1; }

/* Empty */
.mc-empty-prompt { margin: 0 20px; padding: 18px 16px; text-align: center; border: 1px dashed rgba(17, 24, 39, 0.16); border-radius: 16px; background: rgba(255, 255, 255, 0.7); color: #6b7280; }
.mc-empty-title { color: #111827; font-size: 15px; font-weight: 700; }
.mc-root.is-page-dark .mc-empty-title { color: #f9fafb; }
.mc-empty-sub { margin-top: 5px; font-size: 12px; line-height: 1.45; }

/* "Powered by Bouncy" footer — refined, adapts to the light/dark page base */
.mc-footer { margin-top: 24px; padding-top: 16px; border-top: 1px solid rgba(0, 0, 0, 0.1); text-align: center; }
.mc-footer-content { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 500; color: rgba(0, 0, 0, 0.42); }
.mc-footer-brand { font-weight: 600; color: rgba(0, 0, 0, 0.65); text-decoration: none; transition: color 0.15s; }
.mc-footer-brand:hover { color: rgba(0, 0, 0, 0.85); }
.mc-root.is-page-dark .mc-footer { border-top-color: rgba(255, 255, 255, 0.12); }
.mc-root.is-page-dark .mc-footer-content { color: rgba(255, 255, 255, 0.5); }
.mc-root.is-page-dark .mc-footer-brand { color: rgba(255, 255, 255, 0.78); }
.mc-root.is-page-dark .mc-footer-brand:hover { color: #ffffff; }

/* Link animations */
.mc-link-anim-bounce { animation: mc-link-bounce 2s ease-in-out infinite; }
.mc-link-anim-pulse { animation: mc-link-pulse 2s ease-in-out infinite; }
.mc-link-anim-glow { animation: mc-link-glow 2.4s ease-in-out infinite; }
.mc-link-anim-shine { position: relative; isolation: isolate; }
.mc-link-anim-shine::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  z-index: 4;
  width: 60%;
  height: 200%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.05) 75%, transparent 100%);
  transform: skewX(-15deg);
  animation: mc-link-shine 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes mc-link-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes mc-link-pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.02); } }
@keyframes mc-link-glow { 0%, 100% { box-shadow: 0 2px 10px rgba(17,24,39,0.08); } 50% { box-shadow: 0 6px 22px rgba(99,102,241,0.4); } }
@keyframes mc-link-shine {
  0% { left: -100%; opacity: 0; }
  10% { opacity: 1; }
  50% { left: 100%; opacity: 1; }
  55% { opacity: 0; }
  100% { left: 100%; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .mc-hero-anim,
  .mc-link-anim-bounce,
  .mc-link-anim-pulse,
  .mc-link-anim-glow { animation: none !important; }
  .mc-link-anim-shine::before { display: none; }
}

/* Adult content inline warning */
.mc-link-anchor.has-adult-warning { overflow: hidden; }
.mc-adult-inline {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 10px;
  background: rgba(8, 8, 10, 0.96);
  color: #ffffff;
  text-align: center;
  border-radius: inherit;
}
.mc-adult-inline-inner { display: flex; flex-direction: column; align-items: center; gap: 7px; width: 100%; max-width: 300px; }
.mc-adult-inline-title { display: block; color: #ffffff; font-size: 12px; font-weight: 900; line-height: 1.15; text-transform: uppercase; }
.mc-adult-inline-body { display: block; color: rgba(255, 255, 255, 0.68); font-size: 11px; font-weight: 700; line-height: 1.28; }
.mc-adult-actions { display: flex; justify-content: center; gap: 8px; width: 100%; }
.mc-adult-btn {
  min-height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9px;
  padding: 0 10px;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}
.mc-adult-btn.secondary { background: rgba(255, 255, 255, 0.08); color: rgba(255, 255, 255, 0.82); }
.mc-adult-btn.primary { border-color: #ffffff; background: #ffffff; color: #111827; }
.mc-link-anchor-simple .mc-adult-inline { padding: 7px 10px; }
.mc-link-anchor-simple .mc-adult-inline-title { display: none; }
.mc-link-anchor-simple .mc-adult-inline-body { margin-bottom: 7px; color: #ffffff; font-size: 11px; font-weight: 500; white-space: nowrap; }
.mc-link-anchor-simple .mc-adult-btn { min-height: 21px; border-radius: 6px; padding: 4px 10px; font-size: 10px; font-weight: 500; }
.mc-link-anchor-simple .mc-adult-btn.secondary { background: rgba(255, 255, 255, 0.1); color: #ffffff; border-color: rgba(255, 255, 255, 0.2); }
.mc-link-anchor-simple .mc-adult-btn.primary { background: #ffffff; color: #000000; border-color: #ffffff; }

/* Gallery image lightbox */
.mc-image-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.mc-image-panel { position: relative; width: min(760px, 100%); max-height: min(82vh, 760px); display: grid; gap: 10px; }
.mc-image-preview {
  width: 100%;
  max-height: min(76vh, 700px);
  display: block;
  border-radius: 16px;
  object-fit: contain;
  background: #111827;
  box-shadow: 0 24px 80px rgba(17, 24, 39, 0.24);
  user-select: none;
  -webkit-user-drag: none;
}
.mc-image-close {
  justify-self: end;
  min-height: 34px;
  border: 1px solid rgba(17, 24, 39, 0.14);
  border-radius: 999px;
  padding: 0 14px;
  background: #ffffff;
  color: #111827;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
}
.mc-image-caption {
  justify-self: center;
  max-width: min(560px, 100%);
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #111827;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 430px) {
  .mc-hero { height: 280px; }
  .mc-body-stack { padding: 0 16px; }
  .mc-empty-prompt { margin: 0 16px; }
}
