.elementor-3697 .elementor-element.elementor-element-aed5ec9{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-3697 .elementor-element.elementor-element-d7d985a{--display:flex;}.elementor-3697 .elementor-element.elementor-element-2f3de33{--display:flex;}.elementor-3697 .elementor-element.elementor-element-46e16ed{--display:flex;}/* Start custom CSS for text-editor, class: .elementor-element-93765cc *//* ── Google Fonts ── */
  @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,400&family=Source+Serif+4:ital,wght@0,400;0,600;1,400&display=swap');

  /* ── Variables ── */
  :root {
    --purple:        #6B3FA0;
    --purple-dark:   #4A2570;
    --purple-light:  #F0E8FF;
    --purple-mid:    #D4AAFF;
    --text:          #2C1A4A;
    --muted:         #6B6080;
    --border:        #E0D4F5;
    --white:         #FFFFFF;
    --off-white:     #FAFAF8;
    --accent:        #C9954C;
  }

  /* ── Reset / Base ── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { font-size: 16px; scroll-behavior: smooth; }
  body {
    font-family: 'Source Serif 4', Georgia, serif;
    background: var(--off-white);
    color: var(--text);
    line-height: 1.75;
  }

  /* ── Outer wrapper ── */
  .page-wrap {
    max-width: 780px;
    margin: 0 auto;
    background: var(--white);
    box-shadow: 0 4px 40px rgba(107,63,160,0.08);
  }

  /* ── Header banner ── */
  .article-header {
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 60%, #9B6FD0 100%);
    padding: 56px 52px 44px;
    position: relative;
    overflow: hidden;
  }
  .article-header::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='28' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='1'/%3E%3C/svg%3E") repeat;
    background-size: 60px 60px;
  }
  .article-header .eyebrow {
    font-family: 'Source Serif 4', serif;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--purple-mid);
    margin-bottom: 18px;
    position: relative;
  }
  .article-header h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    position: relative;
    margin-bottom: 18px;
  }
  .article-header h1 span {
    color: var(--purple-mid);
  }
  .article-header .byline {
    font-family: 'Source Serif 4', serif;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    font-style: italic;
    position: relative;
  }

  /* ── Article body ── */
  .article-body {
    padding: 48px 52px 56px;
  }

  /* ── Key Takeaways box ── */
  .takeaways {
    background: var(--purple-light);
    border-left: 5px solid var(--purple);
    border-radius: 0 8px 8px 0;
    padding: 28px 32px 24px;
    margin-bottom: 44px;
  }
  .takeaways h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .takeaways h2::before {
    content: '★';
    font-size: 1rem;
    color: var(--accent);
  }
  .takeaways ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .takeaways li {
    font-size: 0.95rem;
    line-height: 1.6;
    padding-left: 1.4em;
    position: relative;
    color: var(--text);
  }
  .takeaways li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--purple);
    font-size: 0.7rem;
    top: 4px;
  }

  /* ── Divider ── */
  hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 36px 0;
  }

  /* ── Section headings ── */
  h2.section-head {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--purple);
    margin: 44px 0 14px;
    line-height: 1.3;
  }

  /* ── Body copy ── */
  p {
    font-size: 1.02rem;
    margin-bottom: 1.1em;
    text-align: justify;
    color: var(--text);
  }

  /* ── Callout quote ── */
  .callout {
    background: var(--purple-light);
    border-left: 5px solid var(--purple);
    border-radius: 0 8px 8px 0;
    padding: 20px 28px;
    margin: 32px 0;
    font-style: italic;
    font-size: 1.02rem;
    color: var(--purple-dark);
    font-weight: 600;
    line-height: 1.65;
  }
  .callout cite {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
    font-style: normal;
    font-weight: 400;
    color: var(--muted);
  }

  /* ── Stat bullets ── */
  .stat-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .stat-list li {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 0.97rem;
    line-height: 1.55;
  }
  .stat-list li .val {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--purple);
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* ── Feature bullets (Why Women's section) ── */
  .feature-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .feature-list li {
    padding-left: 1.4em;
    position: relative;
    font-size: 0.97rem;
    line-height: 1.6;
  }
  .feature-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--purple);
    font-size: 0.6rem;
    top: 5px;
  }
  .feature-list li strong {
    color: var(--purple);
  }

  /* ── Charts ── */
  .chart-wrap {
    margin: 28px 0 8px;
    text-align: center;
  }
  .chart-wrap img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    border: 1px solid var(--border);
  }
  .chart-caption {
    font-size: 0.8rem;
    color: var(--muted);
    font-style: italic;
    text-align: center;
    margin-top: 6px;
    margin-bottom: 24px;
  }

  /* ── CTA block ── */
  .cta-box {
    background: linear-gradient(135deg, var(--purple-dark), var(--purple));
    border-radius: 10px;
    padding: 32px 36px;
    margin-top: 44px;
    text-align: center;
    color: white;
  }
  .cta-box p {
    color: rgba(255,255,255,0.88);
    text-align: center;
    font-size: 1rem;
    margin-bottom: 18px;
  }
  .cta-box a {
    display: inline-block;
    background: var(--accent);
    color: white;
    text-decoration: none;
    padding: 13px 30px;
    border-radius: 5px;
    font-family: 'Source Serif 4', serif;
    font-weight: 600;
    font-size: 0.97rem;
    transition: background 0.2s;
  }
  .cta-box a:hover { background: #b5833e; }

  /* ── Sources ── */
  .sources {
    margin-top: 44px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
  }
  .sources h3 {
    font-family: 'Source Serif 4', serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 12px;
  }
  .sources ol {
    padding-left: 1.4em;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .sources li {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.5;
  }

  /* ── Responsive ── */
  @media (max-width: 640px) {
    .article-header { padding: 36px 24px 28px; }
    .article-body   { padding: 32px 24px 40px; }
    .cta-box        { padding: 24px 20px; }
  }/* End custom CSS */