/* ═══════════════════════════════════════════════════════════════
   CurbCash Blog — Design System
   Shared styles for all blog articles
   ═══════════════════════════════════════════════════════════════ */

/* ─── CSS VARIABLES ─── */
:root {
  --emerald: #10b981;
  --emerald-dark: #059669;
  --emerald-light: #d1fae5;
  --emerald-xlight: #f0fdf9;
  --teal: #0d9488;
  --amber: #f59e0b;
  --amber-light: #fef3c7;
  --coral: #fb7185;
  --coral-light: #fff1f2;
  --ink: #0f172a;
  --ink2: #1e293b;
  --slate: #475569;
  --muted: #94a3b8;
  --border: #e2e8f0;
  --border2: #f1f5f9;
  --bg: #ffffff;
  --bg2: #f8fafc;
  --bg3: #f1f5f9;
  --card: #ffffff;
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
  --shadow: 0 4px 16px rgba(15,23,42,0.08), 0 2px 6px rgba(15,23,42,0.04);
  --shadow-lg: 0 20px 48px rgba(15,23,42,0.12), 0 8px 16px rgba(15,23,42,0.06);
  --shadow-emerald: 0 8px 32px rgba(16,185,129,0.25);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--emerald-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--emerald); }

img { max-width: 100%; height: auto; }

/* ─── BLOG NAV ─── */
.blog-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 68px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border2);
}
.blog-nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.blog-nav-logo .logo-mark {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.blog-nav-logo .logo-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.blog-nav-logo:hover .logo-mark { transform: translateY(-2px) scale(1.08); }
.blog-nav-logo .logo-name {
  font-family: 'Fraunces', serif; font-weight: 700;
  font-size: 19px; color: var(--ink);
}
.blog-nav-links { display: flex; gap: 24px; align-items: center; }
.blog-nav-links a {
  color: var(--slate); text-decoration: none;
  font-size: 14px; font-weight: 500; transition: color 0.2s;
}
.blog-nav-links a:hover { color: var(--ink); }
.blog-nav-links .separator { color: var(--border); font-size: 18px; }
.blog-nav-cta {
  background: var(--ink); color: #fff; border: none;
  padding: 9px 20px; border-radius: 100px;
  font-size: 14px; font-weight: 600; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all 0.2s; text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
}
.blog-nav-cta:hover { background: var(--ink2); transform: translateY(-1px); box-shadow: var(--shadow); color: #fff; }

/* Language switcher style */
.blog-lang-switcher {
  display: flex;
  background: #f1f5f9;
  border-radius: 100px;
  padding: 2px;
  border: 1px solid #e2e8f0;
  font-size: 11px;
}
.blog-lang-switcher button {
  background: transparent;
  border: none;
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 700;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s;
}
.blog-lang-switcher button.active {
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 1px 3px rgba(15,23,42,0.08);
}

/* ─── BLOG HERO ─── */
.blog-hero {
  padding: 120px 48px 60px;
  background: linear-gradient(160deg, #f0fdf9 0%, #ffffff 40%, #fef9f0 100%);
  position: relative; overflow: hidden;
}
.blog-hero .hero-blob {
  position: absolute; pointer-events: none;
  border-radius: 50%; filter: blur(80px); opacity: 0.35;
}
.blog-hero .blob-1 { width: 400px; height: 400px; background: #d1fae5; top: -80px; left: -60px; }
.blog-hero .blob-2 { width: 300px; height: 300px; background: #fef3c7; bottom: -60px; right: 100px; }
.blog-hero-inner {
  max-width: 800px; margin: 0 auto; position: relative; z-index: 2;
  text-align: center;
}
.blog-category {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--emerald-light); border-radius: 100px;
  padding: 5px 16px; margin-bottom: 20px;
  font-size: 13px; font-weight: 600; color: var(--emerald-dark);
  text-transform: uppercase; letter-spacing: 0.04em;
  border: 1px solid rgba(16,185,129,0.2);
}
.blog-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -0.03em; color: var(--ink);
  margin-bottom: 20px;
}
.blog-hero h1 .green { color: var(--emerald); }
.blog-hero h1 .italic { font-style: italic; }
.blog-meta {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; font-size: 14px; color: var(--slate);
  flex-wrap: wrap;
}
.blog-meta-item { display: flex; align-items: center; gap: 5px; }
.blog-meta-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--muted); }

/* ─── BLOG LAYOUT ─── */
.blog-layout {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 300px;
  gap: 48px; padding: 60px 48px;
}
.blog-content {
  max-width: 800px;
}
.blog-sidebar {
  position: relative;
}
.sidebar-sticky {
  position: sticky; top: 88px;
  display: flex; flex-direction: column; gap: 24px;
}

/* ─── TABLE OF CONTENTS ─── */
.toc-card {
  background: var(--card); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 24px;
  box-shadow: var(--shadow-sm);
}
.toc-title {
  font-family: 'Fraunces', serif; font-size: 16px;
  font-weight: 700; margin-bottom: 16px; color: var(--ink);
  display: flex; align-items: center; gap: 8px;
}
.toc-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.toc-list a {
  font-size: 13px; color: var(--slate);
  text-decoration: none; padding: 4px 0 4px 14px;
  border-left: 2px solid var(--border);
  transition: all 0.2s; display: block;
}
.toc-list a:hover, .toc-list a.active {
  color: var(--emerald-dark); border-left-color: var(--emerald);
}

/* ─── SIDEBAR CTA ─── */
.sidebar-cta {
  background: linear-gradient(135deg, var(--ink), var(--ink2));
  border-radius: var(--radius); padding: 28px;
  color: #fff; text-align: center;
}
.sidebar-cta-icon { font-size: 32px; margin-bottom: 12px; }
.sidebar-cta-title {
  font-family: 'Fraunces', serif; font-size: 20px;
  font-weight: 700; margin-bottom: 8px;
}
.sidebar-cta-desc { font-size: 13px; color: #9ca3af; line-height: 1.6; margin-bottom: 18px; }
.sidebar-cta-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--emerald); color: #fff; border: none;
  padding: 12px 22px; border-radius: 100px;
  font-size: 14px; font-weight: 600; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all 0.25s; text-decoration: none;
  box-shadow: var(--shadow-emerald);
}
.sidebar-cta-btn:hover { background: var(--emerald-dark); transform: translateY(-2px); color: #fff; }

/* ─── BLOG TYPOGRAPHY ─── */
.blog-content h2 {
  font-family: 'Fraunces', serif;
  font-size: 28px; font-weight: 800;
  line-height: 1.2; letter-spacing: -0.02em;
  color: var(--ink); margin: 48px 0 16px;
  padding-top: 20px;
}
.blog-content h2:first-child { margin-top: 0; }
.blog-content h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 700;
  line-height: 1.3; color: var(--ink);
  margin: 32px 0 12px;
}
.blog-content p {
  font-size: 16.5px; line-height: 1.8;
  color: var(--slate); margin-bottom: 20px;
}
.blog-content ul, .blog-content ol {
  margin: 16px 0 24px 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.blog-content li {
  font-size: 16px; line-height: 1.7;
  color: var(--slate);
}
.blog-content li::marker { color: var(--emerald); }
.blog-content strong { color: var(--ink); font-weight: 600; }
.blog-content blockquote {
  border-left: 4px solid var(--emerald);
  background: var(--emerald-xlight);
  padding: 20px 24px; margin: 24px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 16px; color: var(--ink2);
  font-style: italic; line-height: 1.7;
}

/* ─── STAT CARDS ─── */
.stat-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px; margin: 32px 0;
}
.stat-card {
  background: var(--card); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 24px;
  box-shadow: var(--shadow-sm);
  text-align: center; transition: all 0.3s;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stat-card.emerald { border-top: 3px solid var(--emerald); }
.stat-card.amber { border-top: 3px solid var(--amber); }
.stat-card.coral { border-top: 3px solid var(--coral); }
.stat-card.blue { border-top: 3px solid #3b82f6; }
.stat-icon { font-size: 28px; margin-bottom: 10px; }
.stat-value {
  font-family: 'Fraunces', serif; font-size: 36px;
  font-weight: 900; color: var(--ink); line-height: 1;
  margin-bottom: 6px;
}
.stat-card.emerald .stat-value { color: var(--emerald-dark); }
.stat-card.amber .stat-value { color: #b45309; }
.stat-card.coral .stat-value { color: #e11d48; }
.stat-card.blue .stat-value { color: #1d4ed8; }
.stat-label { font-size: 13px; color: var(--slate); line-height: 1.4; }
.stat-source { font-size: 11px; color: var(--muted); margin-top: 6px; }

/* ─── CHART CONTAINERS ─── */
.chart-container {
  background: var(--card); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 32px;
  box-shadow: var(--shadow-sm); margin: 32px 0;
}
.chart-title {
  font-family: 'Fraunces', serif; font-size: 20px;
  font-weight: 700; margin-bottom: 6px; color: var(--ink);
}
.chart-subtitle { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.chart-svg { width: 100%; overflow: visible; }
.chart-legend {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-top: 20px; justify-content: center;
}
.chart-legend-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--slate);
}
.chart-legend-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.chart-source {
  font-size: 11px; color: var(--muted); margin-top: 16px;
  text-align: right; font-style: italic;
}

/* ─── INFO BOX / CALLOUT ─── */
.info-box {
  border-radius: var(--radius); padding: 24px 28px;
  margin: 28px 0; display: flex; gap: 16px;
  align-items: flex-start;
}
.info-box.tip {
  background: var(--emerald-xlight); border: 1px solid rgba(16,185,129,0.2);
}
.info-box.warning {
  background: #fffbeb; border: 1px solid rgba(245,158,11,0.2);
}
.info-box.important {
  background: #eff6ff; border: 1px solid rgba(59,130,246,0.2);
}
.info-box.danger {
  background: var(--coral-light); border: 1px solid rgba(251,113,133,0.2);
}
.info-box-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.info-box-content { flex: 1; }
.info-box-title {
  font-weight: 700; font-size: 15px; color: var(--ink);
  margin-bottom: 4px;
}
.info-box-text { font-size: 14px; color: var(--slate); line-height: 1.6; }

/* ─── COMPARISON TABLE ─── */
.comparison-table {
  width: 100%; border-collapse: collapse;
  margin: 28px 0; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
}
.comparison-table th {
  background: var(--ink); color: #fff;
  padding: 14px 18px; font-size: 13px; font-weight: 600;
  text-align: left; text-transform: uppercase;
  letter-spacing: 0.04em;
}
.comparison-table td {
  padding: 12px 18px; font-size: 14px; color: var(--slate);
  border-bottom: 1px solid var(--border);
}
.comparison-table tr:nth-child(even) td { background: var(--bg2); }
.comparison-table tr:hover td { background: var(--emerald-xlight); }

/* ─── PROGRESS BARS ─── */
.progress-item { margin-bottom: 16px; }
.progress-header {
  display: flex; justify-content: space-between;
  font-size: 14px; margin-bottom: 6px;
}
.progress-label { color: var(--ink); font-weight: 500; }
.progress-value { color: var(--emerald-dark); font-weight: 700; }
.progress-track {
  height: 10px; background: var(--bg3);
  border-radius: 10px; overflow: hidden;
}
.progress-fill {
  height: 100%; border-radius: 10px;
  transition: width 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: linear-gradient(90deg, var(--emerald), #34d399);
}
.progress-fill.amber { background: linear-gradient(90deg, var(--amber), #fbbf24); }
.progress-fill.coral { background: linear-gradient(90deg, var(--coral), #fda4af); }
.progress-fill.blue { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
.progress-fill.purple { background: linear-gradient(90deg, #8b5cf6, #a78bfa); }

/* ─── RELATED ARTICLES ─── */
.related-section {
  padding: 64px 48px; background: var(--bg2);
  border-top: 1px solid var(--border);
}
.related-inner { max-width: 1200px; margin: 0 auto; }
.related-title {
  font-family: 'Fraunces', serif; font-size: 28px;
  font-weight: 800; margin-bottom: 32px; text-align: center;
  color: var(--ink);
}
.related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.related-card {
  background: var(--card); border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none; display: block;
}
.related-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.related-card-img {
  height: 180px; overflow: hidden;
  background: linear-gradient(135deg, var(--emerald-light), var(--bg2));
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
}
.related-card-body { padding: 24px; }
.related-card-tag {
  display: inline-flex; font-size: 11px; font-weight: 600;
  background: var(--emerald-light); color: var(--emerald-dark);
  border-radius: 100px; padding: 3px 10px;
  margin-bottom: 10px; text-transform: uppercase;
  letter-spacing: 0.04em;
}
.related-card-title {
  font-family: 'Fraunces', serif; font-size: 18px;
  font-weight: 700; line-height: 1.3; color: var(--ink);
  margin-bottom: 8px;
}
.related-card-desc { font-size: 14px; color: var(--slate); line-height: 1.6; }

/* ─── BOTTOM CTA ─── */
.bottom-cta {
  background: linear-gradient(135deg, var(--ink), var(--ink2));
  padding: 64px 48px; text-align: center;
}
.bottom-cta-inner { max-width: 600px; margin: 0 auto; }
.bottom-cta-icon { font-size: 40px; margin-bottom: 16px; }
.bottom-cta h2 {
  font-family: 'Fraunces', serif; font-size: 32px;
  font-weight: 900; color: #fff; margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.bottom-cta p { font-size: 16px; color: #9ca3af; margin-bottom: 28px; line-height: 1.7; }
.bottom-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--emerald); color: #fff; border: none;
  padding: 16px 32px; border-radius: 100px;
  font-size: 16px; font-weight: 700; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all 0.25s; text-decoration: none;
  box-shadow: var(--shadow-emerald);
}
.bottom-cta-btn:hover { background: var(--emerald-dark); transform: translateY(-2px); color: #fff; }
.bottom-cta-note { font-size: 13px; color: #4b5563; margin-top: 12px; }

/* ─── BLOG FOOTER ─── */
.blog-footer {
  background: var(--ink); padding: 48px 48px 32px;
}
.blog-footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.blog-footer-logo { display: flex; align-items: center; gap: 10px; }
.blog-footer-logo .logo-mark { width: 36px; height: 36px; }
.blog-footer-logo .logo-mark img { width: 100%; height: 100%; object-fit: contain; border-radius: 6px; }
.blog-footer-logo .logo-name {
  font-family: 'Fraunces', serif; font-weight: 700;
  font-size: 17px; color: #fff;
}
.blog-footer-copy { font-size: 13px; color: #4b5563; }
.blog-footer-links { display: flex; gap: 20px; }
.blog-footer-links a { font-size: 13px; color: #6b7280; text-decoration: none; transition: color 0.2s; }
.blog-footer-links a:hover { color: #9ca3af; }

/* ─── EXTERNAL LINK STYLE ─── */
a.ext-link {
  color: var(--emerald-dark); font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(16,185,129,0.3);
  text-underline-offset: 2px;
  transition: all 0.2s;
}
a.ext-link:hover { color: var(--emerald); text-decoration-color: var(--emerald); }
a.ext-link::after {
  content: ' ↗'; font-size: 12px; opacity: 0.6;
}

/* ─── INTERNAL LINK STYLE ─── */
a.int-link {
  color: var(--ink); font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(16,185,129,0.4);
  text-underline-offset: 2px;
  transition: all 0.2s;
}
a.int-link:hover { color: var(--emerald-dark); text-decoration-color: var(--emerald); }

/* ─── DUAL CURRENCY ─── */
.currency-dual {
  display: inline-flex; align-items: center; gap: 6px;
}
.currency-cad { font-weight: 700; color: var(--ink); }
.currency-eur {
  font-size: 0.85em; color: var(--muted);
  background: var(--bg3); padding: 1px 6px;
  border-radius: 4px;
}

/* ─── KEY TAKEAWAY BOX ─── */
.key-takeaway {
  background: linear-gradient(135deg, var(--emerald-xlight), #dcfce7);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: var(--radius-lg); padding: 32px;
  margin: 36px 0;
}
.key-takeaway-title {
  font-family: 'Fraunces', serif; font-size: 18px;
  font-weight: 700; color: var(--emerald-dark);
  margin-bottom: 12px; display: flex; align-items: center; gap: 8px;
}
.key-takeaway ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.key-takeaway li {
  font-size: 15px; color: var(--ink2);
  padding-left: 24px; position: relative;
  line-height: 1.6;
}
.key-takeaway li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--emerald); font-weight: 700;
}

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: none; }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }

/* ─── ANIMATED CHART BARS ─── */
.bar-animated { transition: width 1.5s cubic-bezier(0.34, 1.56, 0.64, 1); }
.donut-animated { transition: stroke-dasharray 1.5s ease; }

/* ─── BREADCRUMB ─── */
.breadcrumb {
  max-width: 800px; margin: 0 auto; padding: 0 0 16px;
  font-size: 13px; color: var(--muted);
  display: flex; align-items: center; gap: 6px;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--emerald-dark); }
.breadcrumb .sep { color: var(--border); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .blog-layout { grid-template-columns: 1fr; gap: 32px; }
  .blog-sidebar { order: -1; }
  .sidebar-sticky { position: static; flex-direction: row; flex-wrap: wrap; }
  .toc-card { flex: 1; min-width: 280px; }
  .sidebar-cta { flex: 1; min-width: 280px; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .blog-nav { padding: 0 20px; }
  .blog-nav-links { display: none; }
  .blog-hero { padding: 100px 20px 48px; }
  .blog-layout { padding: 40px 20px; }
  .blog-content h2 { font-size: 24px; }
  .blog-content h3 { font-size: 19px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .related-section { padding: 48px 20px; }
  .bottom-cta { padding: 48px 20px; }
  .blog-footer { padding: 32px 20px; }
  .blog-footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .blog-meta { flex-direction: column; gap: 8px; }
  .chart-container { padding: 20px; }
  .sidebar-sticky { flex-direction: column; }
}

@media (max-width: 480px) {
  .stat-grid { grid-template-columns: 1fr; }
  .blog-hero h1 { font-size: 28px; }
  .stat-value { font-size: 28px; }
}

/* Base style for localization dynamic changes */
.hidden { display: none !important; }

/* Global language-specific show/hide based on body class */
body.lang-fr .en-only, body.lang-fr .lang-en { display: none !important; }
body.lang-en .fr-only, body.lang-en .lang-fr { display: none !important; }

/* Progressive fallback for broken logo images before JS executes */
.logo-mark img {
  content: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='18' y='26' width='56' height='56' rx='13' fill='%231e293b' stroke='%230f172a' stroke-width='1'/%3E%3Crect x='21' y='22' width='56' height='56' rx='13' fill='%23475569' stroke='%231e293b' stroke-width='1'/%3E%3Crect x='24' y='18' width='56' height='56' rx='13' fill='%23059669' stroke='%23065f46' stroke-width='0.5'/%3E%3Cg transform='translate%2852, 46%29'%3E%3Cpath d='M 10.5,-10.5 A 15,15 0 1,0 10.5,10.5' fill='none' stroke='white' stroke-width='4.8' stroke-linecap='round'/%3E%3Cline x1='0' y1='-9.5' x2='0' y2='9.5' stroke='white' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M 5,-5 M 5,-5 C 5,-8.5 -5,-8.5 -5,-5 C -5,-1.5 5,-1.5 5,2 C 5,5.5 -5,5.5 -5,2' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E");
}
