/* SEO Speed Optimizer Cached CSS with Font-Swap */
/* Meditation Retreat Bio Styles */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600&family=Space+Grotesk:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* =========================================
   Base Layout & Structure (Shared) 
   ========================================= */
.mb-wrapper {
  margin: 2rem auto;
  max-width: 1000px;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  box-sizing: border-box;
}

.mb-wrapper * {
  box-sizing: border-box;
}

.mb-container {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .mb-container {
    flex-direction: row;
    align-items: stretch;
  }
}

.mb-image-wrapper {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.mb-image {
  width: 100%;
  object-fit: cover;
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  display: block;
}

.mb-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.mb-quote {
  margin: 1.5rem 0;
  padding: 0 1.5rem;
  border-left: 2px solid;
  font-style: italic;
  font-size: 1.1em;
}

.mb-social {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.mb-social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.mb-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.mb-social-link:hover {
  opacity: 0.7;
}

/* =========================================
   Configuration Options (Alignment, Font, Ratio, Size)
   ========================================= */

/* Base Quote Font Size Mapping (Inline Vars) */
.mb-quote {
  font-size: var(--mb-quote-fs-m, 1.1em);
  text-align: var(--mb-quote-align-m, left);
}
.mb-wrapper[style*="--mb-quote-fs-m"] .mb-quote {
  font-size: var(--mb-quote-fs-m) !important;
}
.mb-wrapper[style*="--mb-quote-align-m"] .mb-quote {
  text-align: var(--mb-quote-align-m) !important;
}
@media (min-width: 768px) {
  .mb-quote {
    font-size: var(--mb-quote-fs-d, var(--mb-quote-fs-m, 1.1em));
    text-align: var(--mb-quote-align-d, var(--mb-quote-align-m, left));
  }
  .mb-wrapper[style*="--mb-quote-fs-d"] .mb-quote {
    font-size: var(--mb-quote-fs-d) !important;
  }
  .mb-wrapper[style*="--mb-quote-align-d"] .mb-quote {
    text-align: var(--mb-quote-align-d) !important;
  }
}

.mb-wrapper.mb-inherit-font * {
  font-family: inherit !important;
}

/* Mobile Configurations */
@media (max-width: 767px) {
  .mb-wrapper.mb-m-align-top .mb-container { align-items: flex-start; }
  .mb-wrapper.mb-m-align-middle .mb-container { align-items: center; }
  .mb-wrapper.mb-m-align-bottom .mb-container { align-items: flex-end; }
  
  .mb-wrapper.mb-m-ratio-square .mb-image { aspect-ratio: 1/1 !important; }
  .mb-wrapper.mb-m-ratio-portrait .mb-image { aspect-ratio: 3/4 !important; }
  .mb-wrapper.mb-m-ratio-landscape .mb-image { aspect-ratio: 4/3 !important; }
  .mb-wrapper.mb-m-ratio-original .mb-image { aspect-ratio: auto !important; }
  
  /* Size on mobile usually dictates max-width or flex-basis if row. If column, flex-basis doesn't do much, height might. But let's apply width */
  .mb-wrapper.mb-m-size-small .mb-media { width: 50% !important; margin-left: auto; margin-right: auto; }
  .mb-wrapper.mb-m-size-medium .mb-media { width: 75% !important; margin-left: auto; margin-right: auto; }
  .mb-wrapper.mb-m-size-large .mb-media { width: 100% !important; }
  
  /* Image Position (Left/Right) - On mobile, this often translates to Image on top or image on bottom */
  .mb-wrapper.mb-m-img-pos-right .mb-container { flex-direction: column-reverse; }

  .mb-hide-m { display: none !important; }
}

@media (min-width: 768px) {
  .mb-wrapper.mb-d-align-top .mb-container { align-items: flex-start; }
  .mb-wrapper.mb-d-align-middle .mb-container { align-items: center; }
  .mb-wrapper.mb-d-align-bottom .mb-container { align-items: flex-end; }

  .mb-wrapper.mb-d-ratio-square .mb-image { aspect-ratio: 1/1 !important; }
  .mb-wrapper.mb-d-ratio-portrait .mb-image { aspect-ratio: 3/4 !important; }
  .mb-wrapper.mb-d-ratio-landscape .mb-image { aspect-ratio: 4/3 !important; }
  .mb-wrapper.mb-d-ratio-original .mb-image { aspect-ratio: auto !important; }

  .mb-wrapper.mb-d-size-small .mb-media { flex: 0 0 30% !important; }
  .mb-wrapper.mb-d-size-medium .mb-media { flex: 0 0 45% !important; }
  .mb-wrapper.mb-d-size-large .mb-media { flex: 0 0 60% !important; }

  /* Image Position (Desktop) */
  .mb-wrapper.mb-d-img-pos-right .mb-container {
    flex-direction: row-reverse;
  }

  .mb-hide-d { display: none !important; }

  /* Multi-Column Layout (Desktop) */
  .mb-wrapper.mb-cols-2 .mb-container {
    display: block !important;
    column-count: 2;
    column-gap: 40px;
  }
  .mb-wrapper.mb-cols-3 .mb-container {
    display: block !important;
    column-count: 3;
    column-gap: 40px;
  }
  .mb-wrapper.mb-cols-2 .mb-media,
  .mb-wrapper.mb-cols-3 .mb-media {
    margin-bottom: 24px;
    break-inside: avoid;
    width: 100%;
  }
  .mb-wrapper.mb-cols-2 .mb-content,
  .mb-wrapper.mb-cols-3 .mb-content {
    display: block !important;
  }

  /* Sophisticated Styles Column Overrides (Apply columns to Bio specifically) */
  .mb-wrapper.style-sophisticated-light.mb-cols-2 .mb-container,
  .mb-wrapper.style-sophisticated-dark.mb-cols-2 .mb-container,
  .mb-wrapper.style-sophisticated-light.mb-cols-3 .mb-container,
  .mb-wrapper.style-sophisticated-dark.mb-cols-3 .mb-container {
    display: flex !important;
    column-count: auto;
  }
  .mb-wrapper.style-sophisticated-light.mb-cols-2 .mb-media,
  .mb-wrapper.style-sophisticated-dark.mb-cols-2 .mb-media,
  .mb-wrapper.style-sophisticated-light.mb-cols-3 .mb-media,
  .mb-wrapper.style-sophisticated-dark.mb-cols-3 .mb-media {
    width: auto;
    margin-bottom: 0;
  }
  .mb-wrapper.style-sophisticated-light.mb-cols-2 .mb-content,
  .mb-wrapper.style-sophisticated-dark.mb-cols-2 .mb-content,
  .mb-wrapper.style-sophisticated-light.mb-cols-3 .mb-content,
  .mb-wrapper.style-sophisticated-dark.mb-cols-3 .mb-content {
    display: flex !important;
  }
  .mb-wrapper.style-sophisticated-light.mb-cols-2 .mb-bio,
  .mb-wrapper.style-sophisticated-dark.mb-cols-2 .mb-bio {
    column-count: 2;
    column-gap: 30px;
  }
  .mb-wrapper.style-sophisticated-light.mb-cols-3 .mb-bio,
  .mb-wrapper.style-sophisticated-dark.mb-cols-3 .mb-bio {
    column-count: 3;
    column-gap: 30px;
  }
}

/* =========================================
   NO MEDIA (Image Removed) LAYOUT
   ========================================= */
.mb-wrapper.mb-no-media .mb-content {
  text-align: center;
  align-items: center;
  margin: 0 auto;
  max-width: 800px;
}

.mb-wrapper.mb-no-media .mb-social {
  justify-content: center;
}

.mb-wrapper.mb-no-media .mb-bio {
  text-align: left;
}

/* =========================================
   THEME: Warm Organic
   ========================================= */
.mb-wrapper.style-warm-organic {
  background-color: #f6f5f0; 
  border-radius: 40px;
  padding: 1rem;
  box-shadow: 0px 24px 60px rgba(100, 95, 80, 0.08); 
  color: #2c3329;
}

.style-warm-organic .mb-container {
  border: 1px solid rgba(188, 184, 168, 0.4);
  border-radius: 28px;
  overflow: hidden;
}

.style-warm-organic .mb-image-wrapper {
  padding: 3rem 2rem 0;
}

@media (min-width: 768px) {
  .style-warm-organic .mb-image-wrapper {
    padding: 4rem 0 4rem 4rem;
    flex: 0 0 45%;
  }
}

.style-warm-organic .mb-image {
  border-radius: 999px 999px 24px 24px; /* Classic architectural arch */
  aspect-ratio: 2/3;
  max-width: 340px;
  box-shadow: 0px 12px 32px rgba(130, 125, 110, 0.15);
}

.style-warm-organic .mb-image:hover {
  transform: translateY(-8px);
  box-shadow: 0px 20px 40px rgba(130, 125, 110, 0.2);
}

.style-warm-organic .mb-content {
  padding: 3rem 2rem;
}

@media (min-width: 768px) {
  .style-warm-organic .mb-content {
    padding: 4rem 5rem 4rem 4rem;
    flex: 1;
  }
}

.style-warm-organic .mb-header {
  margin-bottom: 2rem;
  position: relative;
}

.style-warm-organic .mb-header::after {
  content: '✦';
  display: block;
  font-size: 1.2rem;
  color: #b5b1a3;
  margin-top: 2rem;
}

.style-warm-organic .mb-subtitle {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #7d8076;
  margin-bottom: 1rem;
  font-weight: 500;
}

.style-warm-organic .mb-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 3rem;
  line-height: 1.05;
  font-weight: 400;
  margin: 0;
  color: #31362d; 
}

@media (min-width: 768px) {
  .style-warm-organic .mb-title {
    font-size: 4.5rem;
  }
}

.style-warm-organic .mb-bio {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
  line-height: 1.7;
  color: #555b51;
  font-weight: 400;
}

.style-warm-organic .mb-bio p {
  margin-bottom: 1.4rem;
}

.style-warm-organic .mb-bio p:last-child {
  margin-bottom: 0;
}

.style-warm-organic .mb-quote {
  border-left-color: #d8d4c3;
  color: #6a7061;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
}

.style-warm-organic .mb-social-link {
  color: #8c9085;
  border-bottom: 1px solid rgba(140, 144, 133, 0.3);
  padding-bottom: 2px;
}

/* =========================================
   THEME: Sophisticated Light
   ========================================= */
.mb-wrapper.style-sophisticated-light {
  background-color: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.08);
  padding: 0.5rem; /* Inner stroke effect */
}

.style-sophisticated-light .mb-container {
  border: 1px solid #f0f0f0;
}

.style-sophisticated-light .mb-image-wrapper {
  padding: 0; 
}

@media (min-width: 768px) {
  .style-sophisticated-light .mb-image-wrapper {
    flex: 0 0 50%;
  }
}

.style-sophisticated-light .mb-image {
  height: 100%;
  object-fit: cover;
  filter: sepia(10%) contrast(105%);
}

.style-sophisticated-light .mb-image:hover {
  filter: sepia(0%) contrast(110%);
}

.style-sophisticated-light .mb-content {
  padding: 3rem 2rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .style-sophisticated-light .mb-content {
    padding: 5rem;
    flex: 1;
    justify-content: center;
  }
}

.style-sophisticated-light .mb-header {
  margin-bottom: 2.5rem;
}

.style-sophisticated-light .mb-subtitle {
  display: inline-block;
  font-family: "Inter", -apple-system, sans-serif;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3em; 
  color: #999;
  margin-bottom: 1.25rem;
  font-weight: 600;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.5rem;
}

.style-sophisticated-light .mb-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0;
  color: #111;
}

@media (min-width: 768px) {
  .style-sophisticated-light .mb-title {
    font-size: 3.75rem;
  }
}

.style-sophisticated-light .mb-bio {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  line-height: 1.95;
  color: #555;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.style-sophisticated-light .mb-bio p {
  margin-bottom: 1.5rem;
}

.style-sophisticated-light .mb-bio p:last-child {
  margin-bottom: 0;
}

.style-sophisticated-light .mb-quote {
  border-left: none;
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  color: #333;
  position: relative;
  padding: 0 2rem;
  margin-top: 2rem;
}

.style-sophisticated-light .mb-quote::before {
  content: '“';
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  line-height: 0;
  position: absolute;
  left: -0.5rem;
  top: 1.5rem;
  color: #e2e2e2;
}

.style-sophisticated-light .mb-quote::after {
  content: '”';
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  line-height: 0;
  position: absolute;
  right: -0.5rem;
  bottom: -1.5rem;
  color: #e2e2e2;
}

.style-sophisticated-light .mb-media .mb-quote,
.style-sophisticated-dark .mb-media .mb-quote {
  margin-left: 2.5rem;
  margin-right: 2.5rem;
  margin-bottom: 2rem;
}

.style-sophisticated-light .mb-social-link {
  color: #111;
  border: 1px solid #eaeaea;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

/* =========================================
   THEME: Sophisticated Dark
   ========================================= */
.mb-wrapper.style-sophisticated-dark {
  background-color: #080808;
  border-radius: 12px;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8);
  color: #eeeeee;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

/* Add a subtle glare to the dark card */
.mb-wrapper.style-sophisticated-dark::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  z-index: 10;
}

.style-sophisticated-dark .mb-image-wrapper {
  overflow: hidden;
}

@media (min-width: 768px) {
  .style-sophisticated-dark .mb-image-wrapper {
    flex: 0 0 45%;
  }
}

.style-sophisticated-dark .mb-image {
  aspect-ratio: 4/5;
  height: 100%;
  filter: grayscale(100%) contrast(120%) brightness(0.8);
  transform-origin: center right;
}

.style-sophisticated-dark .mb-image:hover {
  filter: grayscale(0%) contrast(110%) brightness(1);
  transform: scale(1.05);
}

.style-sophisticated-dark .mb-content {
  padding: 3rem 2.5rem;
  align-items: flex-start;
  background: linear-gradient(to right, #080808, #0c0c0c);
}

@media (min-width: 768px) {
  .style-sophisticated-dark .mb-content {
    padding: 5rem 4rem;
    flex: 1;
    justify-content: center;
  }
}

.style-sophisticated-dark .mb-header {
  margin-bottom: 2rem;
  width: 100%;
}

.style-sophisticated-dark .mb-subtitle {
  display: flex;
  align-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #888;
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.style-sophisticated-dark .mb-subtitle::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background-color: #d4af37; /* Gold accent */
  margin-right: 12px;
}

.style-sophisticated-dark .mb-title {
  font-family: "Playfair Display", serif;
  font-size: 2.75rem;
  line-height: 1.1;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 0;
  color: #fff;
}

@media (min-width: 768px) {
  .style-sophisticated-dark .mb-title {
    font-size: 4rem;
  }
}

.style-sophisticated-dark .mb-bio {
  font-family: "Inter", sans-serif;
  font-size: 1.15rem;
  line-height: 1.85;
  color: #aaa;
  font-weight: 300;
  letter-spacing: -0.01em;
}

.style-sophisticated-dark .mb-bio p {
  margin-bottom: 1.5rem;
}

.style-sophisticated-dark .mb-quote {
  border-left: none;
  position: relative;
  color: #ccc;
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  padding: 0 2rem;
  margin-top: 2rem;
}

.style-sophisticated-dark .mb-quote::before {
  content: '“';
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  line-height: 0;
  position: absolute;
  left: -0.5rem;
  top: 1.5rem;
  color: #333;
}

.style-sophisticated-dark .mb-quote::after {
  content: '”';
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  line-height: 0;
  position: absolute;
  right: -0.5rem;
  bottom: -1.5rem;
  color: #333;
}

.style-sophisticated-dark .mb-social-link {
  color: #d4af37;
}

/* =========================================
   THEME: Atmospheric
   ========================================= */
.mb-wrapper.style-atmospheric {
  background: linear-gradient(135deg, #181924, #0f1015);
  border-radius: 32px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255,255,255,0.05);
  color: #e0e2eb;
  position: relative;
}

/* Glow effect behind image */
.style-atmospheric .mb-image-wrapper::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120%; height: 120%;
  background: radial-gradient(circle, rgba(140, 160, 240, 0.15) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.style-atmospheric .mb-image-wrapper {
  padding: 3rem 2rem 1rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .style-atmospheric .mb-image-wrapper {
    flex: 0 0 42%;
    padding: 4rem;
  }
}

/* Animated organic morphing shape */
@keyframes atmosphericMorph {
  0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

.style-atmospheric .mb-image {
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: atmosphericMorph 15s ease-in-out infinite alternate;
  aspect-ratio: 1/1;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.style-atmospheric .mb-content {
  padding: 2rem 2.5rem 3rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .style-atmospheric .mb-content {
    padding: 4rem 4rem 4rem 1rem;
    flex: 1;
  }
}

.style-atmospheric .mb-header {
  margin-bottom: 1.5rem;
}

.style-atmospheric .mb-subtitle {
  display: inline-block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #b8c1ec;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 1.25rem;
  font-weight: 500;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.style-atmospheric .mb-title {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 400;
  margin: 0;
  color: #ffffff;
  text-shadow: 0 4px 24px rgba(255, 255, 255, 0.15);
}

@media (min-width: 768px) {
  .style-atmospheric .mb-title {
    font-size: 4rem;
  }
}

.style-atmospheric .mb-bio {
  font-family: "Inter", sans-serif;
  font-size: 1.15rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  letter-spacing: -0.01em;
}

.style-atmospheric .mb-quote {
  border-left: none;
  color: #b8c1ec;
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  border-radius: 0 16px 16px 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.style-atmospheric .mb-social-link {
  color: #e0e2eb;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* =========================================
   THEME: Editorial
   ========================================= */
.mb-wrapper.style-editorial {
  background-color: #000000;
  color: #ffffff;
  border-radius: 0;
  position: relative;
}

.style-editorial .mb-image-wrapper {
  padding: 0;
}

@media (min-width: 768px) {
  .style-editorial .mb-image-wrapper {
    flex: 0 0 55%; 
    height: 100%;
  }
}

.style-editorial .mb-image {
  aspect-ratio: 3/4;
  border-radius: 0;
  height: 100%;
  filter: contrast(1.1) saturate(0.8);
}

.style-editorial .mb-image:hover {
  filter: contrast(1) saturate(1);
}

.style-editorial .mb-content {
  padding: 3rem 2rem;
  position: relative;
}

@media (min-width: 768px) {
  .style-editorial .mb-content {
    padding: 3rem 4rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .style-editorial .mb-header {
    position: absolute;
    top: 4rem;
    left: -9rem; /* Pull header slightly over the image, safe for bounds */
    z-index: 10;
  }
  
  .style-editorial .mb-bio {
    margin-top: 10rem;
    padding-left: 2rem;
    border-left: 1px solid #333;
  }
}

.style-editorial .mb-header {
  margin-bottom: 2.5rem;
}

.style-editorial .mb-subtitle {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #f24e26;
  margin-bottom: 1rem;
  font-weight: 600;
}

.style-editorial .mb-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.5rem;
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  margin: 0;
  color: #ffffff;
}

@media (min-width: 768px) {
  .style-editorial .mb-title {
    font-size: 5rem;
    width: 130%;
  }
}

.style-editorial .mb-bio {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  line-height: 1.7;
  color: #e0e0e0;
  font-weight: 400;
}

.style-editorial .mb-quote {
  border-left: 4px solid #f24e26;
  color: #fff;
  font-size: 1.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  margin-top: 3rem;
}

.style-editorial .mb-social {
  margin-top: 2.5rem;
}

.style-editorial .mb-social-link {
  color: #f24e26;
  font-weight: 700;
  border-bottom: 2px solid #f24e26;
  padding-bottom: 2px;
}

/* =========================================
   THEME: Editorial Magazine (Light)
   ========================================= */
.mb-wrapper.style-editorial-light {
  background-color: #fcfcfc;
  color: #111111;
  border-radius: 0;
  position: relative;
}

.style-editorial-light .mb-image-wrapper {
  padding: 0;
}

@media (min-width: 768px) {
  .style-editorial-light .mb-image-wrapper {
    flex: 0 0 55%; 
    height: 100%;
  }
}

.style-editorial-light .mb-image {
  aspect-ratio: 3/4;
  border-radius: 0;
  height: 100%;
}

.style-editorial-light .mb-content {
  padding: 3rem 2rem;
  position: relative;
}

@media (min-width: 768px) {
  .style-editorial-light .mb-content {
    padding: 3rem 4rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .style-editorial-light .mb-header {
    position: absolute;
    top: 4rem;
    left: -9rem; /* Pull header slightly over the image, safe for bounds */
    z-index: 10;
  }
  
  .style-editorial-light .mb-bio {
    margin-top: 10rem;
    padding-left: 2rem;
    border-left: 1px solid #e0e0e0;
  }
}

.style-editorial-light .mb-header {
  margin-bottom: 2.5rem;
}

.style-editorial-light .mb-subtitle {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #e63b15;
  margin-bottom: 1rem;
  font-weight: 600;
}

.style-editorial-light .mb-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.5rem;
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  margin: 0;
  color: #000000;
}

@media (min-width: 768px) {
  .style-editorial-light .mb-title {
    font-size: 5rem;
    width: 130%;
  }
}

.style-editorial-light .mb-bio {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  line-height: 1.7;
  color: #333333;
  font-weight: 400;
}

.style-editorial-light .mb-quote {
  border-left: 4px solid #e63b15;
  color: #111111;
  font-size: 1.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  margin-top: 3rem;
}

.style-editorial-light .mb-social {
  margin-top: 2.5rem;
}

.style-editorial-light .mb-social-link {
  color: #e63b15;
  font-weight: 700;
  border-bottom: 2px solid #e63b15;
  padding-bottom: 2px;
}

/* =========================================
   THEME: Clean Minimal
   ========================================= */
.mb-wrapper.style-clean-minimal {
  background-color: transparent;
  color: #111827;
  border-radius: 0;
  padding: 2rem 0;
}

.style-clean-minimal .mb-container {
  align-items: center;
}

.style-clean-minimal .mb-image-wrapper {
  padding: 0 0 2.5rem 0;
}

@media (min-width: 768px) {
  .style-clean-minimal .mb-container {
    flex-direction: row-reverse;
    gap: 4rem;
  }
  .style-clean-minimal .mb-image-wrapper {
    flex: 0 0 40%;
    padding: 0;
  }
}

.style-clean-minimal .mb-image {
  aspect-ratio: 4/5;
  border-radius: 8px;
  max-width: 320px;
  object-fit: cover;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}

.style-clean-minimal .mb-content {
  padding: 0;
}

@media (min-width: 768px) {
  .style-clean-minimal .mb-content {
    flex: 1;
  }
}

.style-clean-minimal .mb-header {
  margin-bottom: 2rem;
}

.style-clean-minimal .mb-subtitle {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.style-clean-minimal .mb-title {
  font-family: "Inter", sans-serif;
  font-size: 2.75rem;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0;
  color: #111827;
}

@media (min-width: 768px) {
  .style-clean-minimal .mb-title {
    font-size: 4rem;
  }
}

.style-clean-minimal .mb-bio {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  line-height: 1.85;
  color: #4b5563;
  font-weight: 300;
  letter-spacing: -0.01em;
}

.style-clean-minimal .mb-bio p {
  margin-bottom: 1.25rem;
}

.style-clean-minimal .mb-bio p:last-child {
  margin-bottom: 0;
}

.style-clean-minimal .mb-quote {
  border-left-color: #000;
  color: #111;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  padding-left: 1rem;
}

.style-clean-minimal .mb-social-link {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* =========================================
   Media Wrappers for Existing Themes
   ========================================= */
.mb-media {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .style-warm-organic .mb-media { flex: 0 0 45%; }
  .style-sophisticated-light .mb-media { flex: 0 0 50%; }
  .style-sophisticated-dark .mb-media { flex: 0 0 45%; }
  .style-atmospheric .mb-media { flex: 0 0 42%; }
  .style-editorial .mb-media { flex: 0 0 55%; height: 100%; }
  .style-editorial-light .mb-media { flex: 0 0 55%; height: 100%; }
  .style-clean-minimal .mb-media { flex: 0 0 40%; }
  .style-storyteller-flow .mb-media { flex: 0 0 35%; }
  .style-eloquent-light .mb-media { flex: 0 0 45%; }
  .style-eloquent-light-flow .mb-media { flex: 0 0 45%; }
}

/* =========================================
   THEME: Storyteller Gallery
   ========================================= */
.mb-wrapper.style-storyteller {
  background-color: transparent;
  color: #333;
  padding: 1rem 0;
}

@media (min-width: 768px) {
  .style-storyteller .mb-container {
    gap: 6rem;
    align-items: flex-start;
  }
}

.style-storyteller .mb-media {
  gap: 1.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .style-storyteller .mb-media {
    flex: 0 0 38%;
    position: sticky;
    top: 2rem;
  }
}

.style-storyteller .mb-image-wrapper {
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.08);
}

.style-storyteller .mb-image {
  aspect-ratio: 3/4;
}

.style-storyteller .mb-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

.style-storyteller .mb-gallery-image {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.style-storyteller .mb-gallery-image:hover {
  transform: scale(1.05);
}

.style-storyteller .mb-content {
  padding: 2rem 0;
}

@media (min-width: 768px) {
  .style-storyteller .mb-content {
    flex: 1;
    padding: 2rem 0;
  }
  
  .style-storyteller .mb-bio {
    column-count: 2;
    column-gap: 3.5rem;
  }
}

.style-storyteller .mb-subtitle {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #8c867c;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.style-storyteller .mb-title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  line-height: 1.05;
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 0 3rem 0;
}

@media (min-width: 768px) {
  .style-storyteller .mb-title {
    font-size: 5rem;
  }
}

.style-storyteller .mb-bio {
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  line-height: 1.85;
  color: #4a4a4a;
  letter-spacing: -0.01em;
}

.style-storyteller .mb-bio p {
  break-inside: avoid;
  margin-bottom: 1.5rem;
}

.style-storyteller .mb-quote {
  border-left: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.25rem;
  line-height: 1.3;
  color: #2c3329;
  column-span: all;
  padding: 3rem 0;
  margin: 3rem 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  text-align: center;
}

.style-storyteller .mb-social {
  margin-top: 3rem;
  display: flex;
  gap: 2rem;
  justify-content: flex-start;
  column-span: all;
}

.style-storyteller .mb-social-link {
  color: #1a1a1a;
  opacity: 0.6;
}
.style-storyteller .mb-social-link:hover {
  opacity: 1;
}

/* =========================================
   THEME: Storyteller Flow
   ========================================= */
.mb-wrapper.style-storyteller-flow {
  background-color: transparent;
  color: #333;
  padding: 3rem 0;
  position: relative;
}

.mb-wrapper.style-storyteller-flow::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 4rem;
  background-color: #e5e5e5;
}

@media (min-width: 768px) {
  .style-storyteller-flow .mb-container {
    gap: 6rem;
    align-items: flex-start;
  }
  
  .style-storyteller-flow .mb-media {
    position: sticky;
    top: 4rem;
  }
}

.style-storyteller-flow .mb-image-wrapper {
  padding: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 20px 20px 60px rgba(0,0,0,0.06);
  position: relative;
}

.style-storyteller-flow .mb-image-wrapper::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
  pointer-events: none;
}

.style-storyteller-flow .mb-image {
  aspect-ratio: 4/5;
  filter: sepia(10%) contrast(1.05);
}

.style-storyteller-flow .mb-content {
  padding: 4rem 0 2rem;
}

@media (min-width: 768px) {
  .style-storyteller-flow .mb-content {
    flex: 1;
    padding: 2rem 2rem 3rem 0;
  }
}

.style-storyteller-flow .mb-header {
  margin-bottom: 3.5rem;
}

.style-storyteller-flow .mb-subtitle {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #7b7569;
  margin-bottom: 2rem;
  font-weight: 500;
}

.style-storyteller-flow .mb-subtitle::before {
  content: '';
  width: 30px;
  height: 1px;
  background: #d4cfc1;
}

.style-storyteller-flow .mb-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  font-weight: 300;
  color: #1a1a1a;
  margin: 0;
  font-style: italic;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .style-storyteller-flow .mb-title {
    font-size: 5.5rem;
  }
}

.style-storyteller-flow .mb-bio {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  line-height: 2.1;
  color: #4a4a4a;
  letter-spacing: 0.01em;
  font-weight: 300;
}

.style-storyteller-flow .mb-bio p {
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

/* Dropcap for the first letter of the first paragraph */
.style-storyteller-flow .mb-bio > p:first-of-type::first-letter {
  float: left;
  font-family: "Cormorant Garamond", serif;
  font-size: 4.5rem;
  line-height: 0.8;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  color: #1a1a1a;
  font-weight: 400;
}

/* Floated images */
.style-storyteller-flow .mb-flow-image {
  width: 100%;
  max-width: 300px;
  border-radius: 4px;
  box-shadow: 12px 12px 0 #f0f0ea, 0 10px 30px rgba(0,0,0,0.08); /* Offset border effect */
  margin-bottom: 2rem;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: sepia(5%);
}

.style-storyteller-flow .mb-flow-image:hover {
  transform: translateY(-5px);
}

@media (min-width: 768px) {
  .style-storyteller-flow .mb-flow-image {
    width: 280px;
  }
  
  .style-storyteller-flow .mb-float-right {
    float: right;
    margin: 0.5rem 0 2rem 3rem;
  }
  
  .style-storyteller-flow .mb-float-left {
    float: left;
    margin: 0.5rem 3rem 2rem 0;
  }
}

.style-storyteller-flow .mb-quote {
  clear: both;
  border-left: none;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 2.2rem;
  line-height: 1.4;
  color: #2c3329;
  padding: 0;
  margin: 4rem 0;
  text-align: center;
  position: relative;
}

.style-storyteller-flow .mb-quote::before {
  content: '“';
  font-family: "Cormorant Garamond", serif;
  font-style: normal;
  display: block;
  font-size: 5rem;
  color: rgba(0,0,0,0.06);
  line-height: 0.5;
  margin-bottom: 2rem;
}

.style-storyteller-flow .mb-social {
  clear: both;
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.05);
  display: flex;
  gap: 2.5rem;
  justify-content: center;
}

.style-storyteller-flow .mb-social-link {
  color: #1a1a1a;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.style-storyteller-flow .mb-social-link:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* Clean up after floats */
.style-storyteller-flow .mb-bio::after {
  content: "";
  display: table;
  clear: both;
}

/* =========================================
   THEME: Zen Split (Minimal)
   ========================================= */
.mb-wrapper.style-zen-split {
  background-color: transparent;
  color: #000;
  border: 1px solid #e5e5e5;
}

@media (min-width: 768px) {
  .style-zen-split .mb-container {
    display: flex;
    flex-direction: row;
    gap: 0;
    align-items: stretch;
  }
  
  .style-zen-split .mb-media {
    flex: 0 0 50%;
    border-right: 1px solid #e5e5e5;
  }
}

.style-zen-split .mb-image-wrapper {
  padding: 0;
  border-radius: 0;
  height: 100%;
}

.style-zen-split .mb-image {
  aspect-ratio: auto;
  height: 100%;
  object-fit: cover;
  min-height: 500px;
}

.style-zen-split .mb-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .style-zen-split .mb-content {
    flex: 1;
    padding: 4rem;
  }
}

.style-zen-split .mb-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e5e5e5;
}

.style-zen-split .mb-subtitle {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #666;
  margin-bottom: 1rem;
}

.style-zen-split .mb-title {
  font-family: "Inter", sans-serif;
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #000;
  margin: 0;
}

.style-zen-split .mb-bio {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  flex: 1;
}

.style-zen-split .mb-bio p {
  margin-bottom: 1.5rem;
}

.style-zen-split .mb-quote {
  border-left: 2px solid #000;
  padding-left: 1.5rem;
  margin: 3rem 0;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  line-height: 1.4;
  color: #000;
}

.style-zen-split .mb-social {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e5e5;
  display: flex;
  gap: 1.5rem;
}

.style-zen-split .mb-social-link {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  color: #000;
}

.style-zen-split .mb-social-link:hover {
  text-decoration: underline;
}

/* =========================================
   THEME: Ethereal Soft
   ========================================= */
.mb-wrapper.style-ethereal {
  background-color: transparent;
  color: #5a5f68;
}

.style-ethereal .mb-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .style-ethereal .mb-container {
    flex-direction: row;
    gap: 5rem;
  }
  
  .style-ethereal .mb-media {
    flex: 0 0 45%;
  }
}

.style-ethereal .mb-image-wrapper {
  padding: 0;
  border-radius: 120px 120px 20px 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px -10px rgba(162, 175, 185, 0.3);
  position: relative;
}

.style-ethereal .mb-image {
  aspect-ratio: 3/4;
  filter: contrast(0.95) saturate(0.8) brightness(1.05);
}

.style-ethereal .mb-content {
  padding: 1rem 0;
}

.style-ethereal .mb-header {
  margin-bottom: 2.5rem;
}

.style-ethereal .mb-subtitle {
  display: inline-block;
  font-family: "Outfit", sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #9ba1b0;
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  backdrop-filter: blur(5px);
  font-weight: 500;
}

.style-ethereal .mb-title {
  font-family: "Outfit", sans-serif;
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 300;
  color: #2c3241;
  margin: 0;
  letter-spacing: -0.02em;
}

.style-ethereal .mb-bio {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  line-height: 2;
  color: #6a7181;
  font-weight: 300;
}

.style-ethereal .mb-bio p {
  margin-bottom: 1.5rem;
}

.style-ethereal .mb-quote {
  border-left: none;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.75rem;
  line-height: 1.5;
  color: #4a5161;
  padding: 2rem;
  margin: 3rem 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0.3));
  border-radius: 20px;
  box-shadow: 0 10px 30px -10px rgba(162, 175, 185, 0.15);
}

.style-ethereal .mb-social {
  margin-top: 3rem;
  display: flex;
  gap: 1.5rem;
}

.style-ethereal .mb-social-link {
  color: #8a91a1;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 0.75rem 1.25rem;
  border-radius: 40px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.style-ethereal .mb-social-link:hover {
  background-color: #fff;
  color: #2c3241;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(162, 175, 185, 0.2);
}

/* =========================================
   THEME: Monumental Brutalism
   ========================================= */
.mb-wrapper.style-monumental {
  background-color: transparent;
  color: #111;
}

.style-monumental .mb-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .style-monumental .mb-container {
    flex-direction: row;
    gap: 3rem;
    align-items: stretch;
  }
  
  .style-monumental .mb-media {
    flex: 0 0 35%;
  }
}

.style-monumental .mb-image-wrapper {
  padding: 0;
  border-radius: 0;
  border: 2px solid #111;
  position: relative;
  box-shadow: 8px 8px 0 rgba(17,17,17,0.1);
}

.style-monumental .mb-image {
  aspect-ratio: 4/5;
  filter: grayscale(100%) contrast(1.2);
}

.style-monumental .mb-content {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .style-monumental .mb-content {
    flex: 1;
    border-top: 8px solid #111;
    padding: 3rem 0;
  }
}

.style-monumental .mb-header {
  margin-bottom: 3rem;
}

.style-monumental .mb-subtitle {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #111;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.style-monumental .mb-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 4rem;
  line-height: 0.9;
  letter-spacing: -0.05em;
  font-weight: 700;
  color: #111;
  margin: 0 0 2rem 0;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .style-monumental .mb-title {
    font-size: 6rem;
  }
}

.style-monumental .mb-bio {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  font-weight: 500;
  column-count: 1;
}

@media (min-width: 1024px) {
  .style-monumental .mb-bio {
    column-count: 2;
    column-gap: 3rem;
  }
}

.style-monumental .mb-bio p {
  margin-bottom: 1.5rem;
  break-inside: avoid;
}

.style-monumental .mb-quote {
  border-left: none;
  border-top: 4px solid #111;
  border-bottom: 4px solid #111;
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #111;
  text-transform: uppercase;
  padding: 3rem 0;
  margin: 3rem 0;
}

.style-monumental .mb-social {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.style-monumental .mb-social-link {
  color: #111;
  border: 2px solid #111;
  padding: 0.5rem 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  transition: all 0.2s ease;
}

.style-monumental .mb-social-link:hover {
  background-color: #111;
  color: #EBEBEB;
}

/* =========================================
   THEME: Eloquent Light
   ========================================= */
.mb-wrapper.style-eloquent-light {
  background-color: transparent;
  color: #444;
}

@media (min-width: 768px) {
  .style-eloquent-light .mb-container {
    display: flex;
    align-items: center;
    gap: 6rem;
  }
}

.style-eloquent-light .mb-image-wrapper {
  padding: 1.25rem;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.08);
  position: relative;
}

.style-eloquent-light .mb-image-wrapper::before {
  content: "";
  position: absolute;
  top: 1.75rem; left: 1.75rem; right: 1.75rem; bottom: 1.75rem;
  border: 1px solid rgba(0,0,0,0.06);
  pointer-events: none;
  z-index: 10;
}

.style-eloquent-light .mb-image {
  aspect-ratio: 3/4;
  border-radius: 2px;
  filter: contrast(1.02) sepia(5%);
}

.style-eloquent-light .mb-content {
  padding: 2rem 0;
}

.style-eloquent-light .mb-header {
  margin-bottom: 2.5rem;
  position: relative;
}

.style-eloquent-light .mb-subtitle {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #a49e91;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
}

.style-eloquent-light .mb-subtitle::after {
  content: '';
  display: block;
  flex: 0 0 40px;
  height: 1px;
  background-color: #d8d4c9;
  margin-left: 1rem;
}

.style-eloquent-light .mb-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: #2c2b29;
  margin: 0;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.style-eloquent-light .mb-bio {
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  line-height: 1.95;
  color: #5d5c58;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.style-eloquent-light .mb-bio p {
  margin-bottom: 1.5rem;
}

.style-eloquent-light .mb-quote {
  border-left: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-style: italic;
  color: #2c2b29;
  position: relative;
  padding: 2.5rem 0;
  margin: 2.5rem 0;
  text-align: center;
  line-height: 1.4;
}

.style-eloquent-light .mb-quote::before,
.style-eloquent-light .mb-quote::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background-color: #e0dcd1;
}

.style-eloquent-light .mb-quote::before {
  top: 0;
}

.style-eloquent-light .mb-quote::after {
  bottom: 0;
}

.style-eloquent-light .mb-social {
  margin-top: 2rem;
  display: flex;
  gap: 2rem;
  justify-content: flex-start;
}

.style-eloquent-light .mb-social-link {
  color: #a49e91;
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.1em;
}

.style-eloquent-light .mb-social-link:hover {
  color: #2c2b29;
  border-bottom-color: #2c2b29;
}

/* =========================================
   THEME: Eloquent Light Flow
   ========================================= */
.mb-wrapper.style-eloquent-light-flow {
  background-color: transparent;
  color: #444;
}

@media (min-width: 768px) {
  .style-eloquent-light-flow .mb-container {
    display: flex;
    align-items: flex-start;
    gap: 6rem;
  }
}

.style-eloquent-light-flow .mb-media {
  position: relative;
}

@media (min-width: 768px) {
  .style-eloquent-light-flow .mb-media {
    position: sticky;
    top: 2rem;
  }
}

.style-eloquent-light-flow .mb-image-wrapper {
  padding: 1.25rem;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.08);
  position: relative;
}

.style-eloquent-light-flow .mb-image-wrapper::before {
  content: "";
  position: absolute;
  top: 1.75rem; left: 1.75rem; right: 1.75rem; bottom: 1.75rem;
  border: 1px solid rgba(0,0,0,0.06);
  pointer-events: none;
  z-index: 10;
}

.style-eloquent-light-flow .mb-image {
  aspect-ratio: 3/4;
  border-radius: 2px;
  filter: contrast(1.02) sepia(5%);
}

.style-eloquent-light-flow .mb-content {
  padding: 2rem 0;
}

@media (min-width: 768px) {
  .style-eloquent-light-flow .mb-content {
    flex: 1;
    padding: 0;
  }
}

.style-eloquent-light-flow .mb-header {
  margin-bottom: 2.5rem;
  position: relative;
}

.style-eloquent-light-flow .mb-subtitle {
  display: flex;
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #a49e91;
  margin-bottom: 1.25rem;
  align-items: center;
}

.style-eloquent-light-flow .mb-subtitle::after {
  content: '';
  display: block;
  flex: 0 0 40px;
  height: 1px;
  background-color: #d8d4c9;
  margin-left: 1rem;
}

.style-eloquent-light-flow .mb-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: #2c2b29;
  margin: 0;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.style-eloquent-light-flow .mb-bio {
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  line-height: 1.95;
  color: #5d5c58;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.style-eloquent-light-flow .mb-bio p {
  margin-bottom: 1.5rem;
}

/* Floated images for flow */
.style-eloquent-light-flow .mb-flow-image {
  width: 100%;
  max-width: 250px;
  border-radius: 4px;
  box-shadow: 0 15px 30px -10px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  padding: 0.75rem;
  background-color: #fff;
  filter: contrast(1.02) sepia(5%);
  transition: transform 0.4s ease;
}

.style-eloquent-light-flow .mb-flow-image:hover {
  transform: scale(1.02);
}

@media (min-width: 768px) {
  .style-eloquent-light-flow .mb-float-right {
    float: right;
    margin: 0.5rem 0 2rem 3rem;
  }
  
  .style-eloquent-light-flow .mb-float-left {
    float: left;
    margin: 0.5rem 3rem 2rem 0;
  }
}

.style-eloquent-light-flow .mb-quote {
  clear: both;
  border-left: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  font-style: italic;
  color: #2c2b29;
  position: relative;
  padding: 2.5rem 0;
  margin: 3.5rem 0;
  text-align: center;
  line-height: 1.4;
}

.style-eloquent-light-flow .mb-quote::before,
.style-eloquent-light-flow .mb-quote::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 1px;
  background-color: #e0dcd1;
}

.style-eloquent-light-flow .mb-quote::before {
  top: 0;
}

.style-eloquent-light-flow .mb-quote::after {
  bottom: 0;
}

.style-eloquent-light-flow .mb-social {
  clear: both;
  margin-top: 3rem;
  display: flex;
  gap: 2rem;
  justify-content: flex-start;
}

.style-eloquent-light-flow .mb-social-link {
  color: #a49e91;
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.1em;
}

.style-eloquent-light-flow .mb-social-link:hover {
  color: #2c2b29;
  border-bottom-color: #2c2b29;
}

.style-eloquent-light-flow .mb-bio::after {
  content: "";
  display: table;
  clear: both;
}

/* =========================================
   READ MORE BUTTON
   ========================================= */
.mb-read-more-btn {
  background: none;
  border: none;
  color: currentColor;
  text-decoration: underline;
  text-underline-offset: 4px;
  opacity: 0.7;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-top: 15px;
  transition: opacity 0.2s ease;
}

.mb-read-more-btn:hover {
  opacity: 1;
}

/* =========================================
   THEME: None (Unstyled)
   ========================================= */
.mb-wrapper.style-none {
  margin: 0;
  max-width: none;
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
}

.mb-wrapper.style-none .mb-container {
  display: block;
}

.mb-wrapper.style-none .mb-media {
  width: auto;
  flex: none;
  height: auto;
  margin: 0;
  padding: 0;
}

.mb-wrapper.style-none .mb-content {
  display: block;
  flex: none;
  padding: 0;
  margin: 0;
}

.mb-wrapper.style-none .mb-image-wrapper {
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
}

.mb-wrapper.style-none .mb-image {
  object-fit: unset;
  max-width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  aspect-ratio: auto !important;
  display: inline-block;
}

.mb-wrapper.style-none .mb-header,
.mb-wrapper.style-none .mb-bio,
.mb-wrapper.style-none .mb-quote,
.mb-wrapper.style-none .mb-social {
  margin: 0;
  padding: 0;
  font-family: inherit;
  color: inherit;
}

.mb-wrapper.style-none .mb-quote {
  border: none;
  font-style: normal;
}

.mb-wrapper.style-none .mb-social-link {
  color: inherit;
  font-family: inherit;
}
