/* ── jume.app – Day Mode Styles ──────────────────────────────────────────── */

:root {
  /* Brand palette — mirrors the app's day mode */
  --sky:         #C8D6E7;
  --blush:       #F2DFE1;
  --blush-soft:  #F7F1F2;
  --peach:       #FFD5C8;
  --peach-mid:   #F7BFAE;
  --plum:        #53424F;
  --plum-mid:    #6B5663;
  --plum-muted:  #7A6A75;
  --rose-soft:   #E7C7C7;
  --white:       #FFFFFF;

  /* Semantic tokens */
  --text:        var(--plum);
  --text-muted:  var(--plum-muted);
  --surface:     var(--white);
  --surface-alt: var(--blush-soft);
  --border:      rgba(83, 66, 79, 0.10);
  --border-warm: #e8cfd0;

  /* Gradients */
  --gradient-hero:   linear-gradient(160deg, var(--sky) 0%, var(--blush) 55%, var(--peach) 100%);
  --gradient-subtle: linear-gradient(180deg, var(--blush-soft) 0%, var(--white) 100%);
  --gradient-warm:   linear-gradient(135deg, var(--blush-soft) 0%, var(--blush) 100%);

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(83, 66, 79, 0.07);
  --shadow:    0 4px 28px rgba(83, 66, 79, 0.09);
  --shadow-md: 0 8px 48px rgba(83, 66, 79, 0.12);

  /* Radius */
  --r-xl: 32px;
  --r-lg: 24px;
  --r-md: 16px;
  --r-sm: 10px;

  /* Layout */
  --max-w: 1100px;
  --max-w-text: 680px;
}

/* ── Reset & Base ─────────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: "Nunito Sans", "Segoe UI", ui-rounded, system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--blush-soft);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Typography ──────────────────────────────────────────────────────────── */

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.18;
  color: var(--plum);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: 1.2rem; }

p { color: var(--text-muted); line-height: 1.7; }

blockquote {
  border-left: 3px solid var(--peach-mid);
  padding: 14px 20px;
  background: var(--blush-soft);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-style: italic;
  color: var(--plum-muted);
  margin: 24px 0;
}

strong { font-weight: 700; color: var(--plum); }
em { font-style: italic; }

/* ── Layout helpers ──────────────────────────────────────────────────────── */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.container-text {
  max-width: var(--max-w-text);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  text-decoration: none !important;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--plum);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(83, 66, 79, 0.28);
}
.btn-primary:hover { opacity: 0.9; box-shadow: 0 6px 22px rgba(83, 66, 79, 0.32); }

.btn-secondary {
  background: transparent;
  color: var(--plum);
  border: 1.5px solid var(--rose-soft);
  background: rgba(255,255,255,0.6);
}
.btn-secondary:hover { background: var(--white); border-color: var(--peach-mid); }

.btn-sm {
  padding: 10px 20px;
  font-size: 0.88rem;
}

/* ── Header ──────────────────────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 241, 242, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-warm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--plum);
  text-decoration: none !important;
  flex-shrink: 0;
}

.brand img {
  height: 38px;
  width: auto;
  display: block;
}

.brand-fallback {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--peach-mid);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--plum-muted);
  transition: background 0.15s, color 0.15s;
  text-decoration: none !important;
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(83, 66, 79, 0.08);
  color: var(--plum);
}

.header-cta {
  flex-shrink: 0;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */

.site-footer {
  background: var(--blush);
  border-top: 1px solid var(--border-warm);
  padding: 40px 0 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-brand { font-weight: 800; font-size: 1.1rem; color: var(--plum); }

.footer-brand img {
  height: 28px;
  width: auto;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  justify-content: center;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--plum-muted);
  padding: 4px 0;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--plum); text-decoration: none; }

.footer-copy {
  font-size: 0.82rem;
  color: var(--plum-muted);
  opacity: 0.7;
}

/* ── Hero ────────────────────────────────────────────────────────────────── */

.hero {
  background: var(--gradient-hero);
  padding: 88px 0 96px;
  overflow: hidden;
  position: relative;
}

/* decorative soft glows */
.hero::before {
  content: "";
  position: absolute;
  top: -80px; right: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,191,174,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -60px; left: -100px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,214,231,0.4) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--border-warm);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--plum-mid);
  margin-bottom: 20px;
}

.hero-kicker::before {
  content: "✦";
  color: var(--peach-mid);
}

.hero h1 {
  margin-bottom: 20px;
  color: var(--plum);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--plum-muted);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-note {
  font-size: 0.83rem;
  color: var(--plum-muted);
  opacity: 0.75;
}

/* App visual / mockup side */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card {
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--border-warm);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero-card-icon {
  width: 48px; height: 48px;
  background: var(--blush);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.hero-card h3 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--plum);
}

.hero-card p {
  font-size: 0.85rem;
  color: var(--plum-muted);
  margin: 0;
}

.hero-card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ── Section scaffolding ──────────────────────────────────────────────────── */

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--gradient-warm);
}

.section-white {
  background: var(--white);
}

.section-intro {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 56px;
}

.section-kicker {
  display: inline-block;
  background: var(--blush);
  color: var(--plum-mid);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-intro h2 { margin-bottom: 14px; }
.section-intro p { color: var(--plum-muted); }

/* ── Feature cards ──────────────────────────────────────────────────────── */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border-warm);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.feature-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--plum); }
.feature-card p  { font-size: 0.9rem; color: var(--plum-muted); margin: 0; line-height: 1.6; }

/* ── "Für wen" section ──────────────────────────────────────────────────── */

.for-whom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.for-whom-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--border-warm);
  border-radius: var(--r-md);
  padding: 18px 20px;
}

.for-whom-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--peach-mid);
  flex-shrink: 0;
  margin-top: 7px;
}

.for-whom-item p {
  font-size: 0.93rem;
  color: var(--plum-muted);
  margin: 0;
  line-height: 1.6;
}

/* ── Moon / Impulse articles ─────────────────────────────────────────────── */

.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.article-card {
  background: var(--surface);
  border: 1px solid var(--border-warm);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  text-decoration: none !important;
}

.article-card-visual {
  height: 120px;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
}

.article-card-body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.tag {
  background: var(--blush);
  color: var(--plum-mid);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
}

.tag-highlight { background: var(--peach); color: var(--plum); }

.article-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--plum);
  line-height: 1.3;
}

.article-card p {
  font-size: 0.88rem;
  color: var(--plum-muted);
  margin: 0 0 16px;
  line-height: 1.6;
  flex: 1;
}

.article-meta {
  font-size: 0.8rem;
  color: var(--plum-muted);
  opacity: 0.7;
  margin-bottom: 4px;
}

.article-card-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--plum-mid);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}

.article-card-link::after { content: " →"; }
.article-card:hover .article-card-link { color: var(--plum); }

/* ── App-Link section (connects to app deeplink) ────────────────────────── */

.app-link-banner {
  display: flex;
  gap: 20px;
  align-items: center;
  background: var(--gradient-hero);
  border: 1px solid var(--border-warm);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
}

.app-link-banner-icon { font-size: 2rem; flex-shrink: 0; }

.app-link-banner-body h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.app-link-banner-body p {
  font-size: 0.88rem;
  color: var(--plum-muted);
  margin: 0;
}

/* ── Newsletter ──────────────────────────────────────────────────────────── */

.newsletter-section {
  padding: 88px 0;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: "";
  position: absolute;
  top: -60px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,191,174,0.3) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.newsletter-copy h2 { margin-bottom: 14px; }
.newsletter-copy p  { color: var(--plum-muted); line-height: 1.7; }

.newsletter-form-wrap {
  background: rgba(255,255,255,0.76);
  border: 1px solid var(--border-warm);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}

/* ── Brevo override ──────────────────────────────────────────────────────── */

.brevo-wrap .sib-form { background: transparent !important; padding: 0 !important; }
.brevo-wrap .sib-container--large { background: transparent !important; padding: 0 !important; border: none !important; box-shadow: none !important; }
.brevo-wrap .sib-form-block p,
.brevo-wrap .sib-form__declaration p { font-size: 0.85rem; color: var(--plum-muted); }
.brevo-wrap .entry__label { font-weight: 600; color: var(--plum) !important; font-size: 0.9rem; margin-bottom: 6px; }
.brevo-wrap .input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-warm);
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 0.93rem;
  color: var(--plum);
  background: var(--white);
  outline: none;
  transition: border-color 0.15s;
}
.brevo-wrap .input:focus { border-color: var(--peach-mid); }
.brevo-wrap .entry__specification { font-size: 0.78rem; color: var(--plum-muted); margin-top: 4px; display: block; }
.brevo-wrap .entry__error { font-size: 0.8rem; color: #c0392b; display: block; }

.brevo-wrap .sib-form-block__button {
  background: var(--plum) !important;
  color: var(--white) !important;
  border: none;
  border-radius: 50px !important;
  padding: 13px 28px !important;
  font-family: inherit !important;
  font-size: 0.93rem !important;
  font-weight: 700 !important;
  cursor: pointer;
  width: 100%;
  transition: opacity 0.15s;
}
.brevo-wrap .sib-form-block__button:hover { opacity: 0.9; }

.brevo-wrap .checkbox_tick_positive {
  border: 1.5px solid var(--rose-soft) !important;
  border-radius: 6px !important;
  background: var(--white) !important;
}

.brevo-wrap .sib-form__declaration {
  background: var(--blush-soft);
  border-radius: var(--r-sm);
  padding: 12px;
  border: 1px solid var(--border-warm);
}

.brevo-wrap .svgIcon-sphere { display: none; }
.brevo-wrap .declaration-block-icon { display: none; }

/* ── Trust / quote strip ─────────────────────────────────────────────────── */

.trust-strip {
  padding: 56px 0;
  text-align: center;
}

.trust-quote {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--plum);
  max-width: 620px;
  margin: 0 auto 20px;
  line-height: 1.4;
}

.trust-sub {
  color: var(--plum-muted);
  font-size: 0.95rem;
}

/* ── Moon hub page ───────────────────────────────────────────────────────── */

.page-hero {
  background: var(--gradient-hero);
  padding: 64px 0 72px;
}

.page-hero-inner { max-width: 680px; }

.page-hero .section-kicker { margin-bottom: 12px; }

.page-hero h1 { margin-bottom: 16px; }

.page-hero-sub {
  font-size: 1.05rem;
  color: var(--plum-muted);
  line-height: 1.7;
}

/* ── Article page ─────────────────────────────────────────────────────────── */

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 48px;
  align-items: start;
}

.article-hero {
  background: var(--gradient-hero);
  padding: 64px 0 72px;
}

.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.article-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.18;
  margin-bottom: 20px;
  color: var(--plum);
}

.article-intro {
  font-size: 1.05rem;
  color: var(--plum-muted);
  line-height: 1.75;
  max-width: 620px;
}

.article-body {
  padding: 56px 0;
}

.article-body > * + * { margin-top: 20px; }
.article-body h2 { margin-top: 40px; margin-bottom: 12px; font-size: 1.3rem; }
.article-body p { color: var(--plum-muted); line-height: 1.75; }
.article-body ul { padding-left: 20px; list-style: disc; }
.article-body ul li { color: var(--plum-muted); line-height: 1.7; margin-bottom: 8px; }
.article-body a { color: var(--plum-mid); border-bottom: 1px solid var(--rose-soft); }
.article-body a:hover { border-color: var(--plum-mid); text-decoration: none; }

/* Sidebar */
.sidebar-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 88px;
  padding-top: 56px;
}

.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border-warm);
  border-radius: var(--r-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.sidebar-card strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--plum); margin-bottom: 8px; }
.sidebar-card p { font-size: 0.88rem; color: var(--plum-muted); margin: 0; line-height: 1.6; }

.timeline-item { padding: 10px 0; border-bottom: 1px solid var(--border); }
.timeline-item:last-child { border-bottom: none; padding-bottom: 0; }
.timeline-item strong { display: block; font-size: 0.8rem; font-weight: 700; color: var(--plum-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.timeline-item p { font-size: 0.9rem; color: var(--plum); margin: 0; }

/* ── Glossar / Wissen page ───────────────────────────────────────────────── */

.glossar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.glossar-entry {
  background: var(--surface);
  border: 1px solid var(--border-warm);
  border-radius: var(--r-md);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}

.glossar-entry h3 { font-size: 0.95rem; margin-bottom: 6px; color: var(--plum); }
.glossar-entry p  { font-size: 0.87rem; color: var(--plum-muted); margin: 0; line-height: 1.6; }

/* ── Legal pages ─────────────────────────────────────────────────────────── */

.legal-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.legal-content h1 { margin-bottom: 32px; }
.legal-content h2 { font-size: 1.15rem; margin: 32px 0 10px; }
.legal-content p,
.legal-content li { font-size: 0.93rem; color: var(--plum-muted); line-height: 1.75; margin-bottom: 10px; }
.legal-content ul { list-style: disc; padding-left: 20px; }
.legal-content a { color: var(--plum-mid); border-bottom: 1px solid var(--rose-soft); }

/* ── Magic link / auth page ──────────────────────────────────────────────── */

.auth-center {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.auth-card {
  background: var(--surface);
  border: 1px solid var(--border-warm);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
  max-width: 420px;
  width: 100%;
  text-align: center;
}

.auth-icon { font-size: 2.4rem; margin-bottom: 20px; }
.auth-card h2 { margin-bottom: 12px; }
.auth-card p { font-size: 0.93rem; color: var(--plum-muted); margin-bottom: 24px; }

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .hero-inner       { grid-template-columns: 1fr; }
  .hero-visual      { display: none; }
  .newsletter-inner { grid-template-columns: 1fr; }
  .article-layout   { grid-template-columns: 1fr; }
  .sidebar-stack    { position: static; padding-top: 0; }
  .header-cta       { display: none; }
  .hero             { padding: 64px 0 72px; }
  .section          { padding: 56px 0; }
  .newsletter-section { padding: 64px 0; }
  .newsletter-inner { gap: 32px; }
  .app-link-banner  { flex-direction: column; gap: 12px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .feature-grid { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .for-whom-grid { grid-template-columns: 1fr; }
  .newsletter-form-wrap { padding: 24px 20px; }
}

/* ── Cookie Consent Banner ───────────────────────────────────────────────── */

#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--white);
  border-top: 1.5px solid var(--border-warm);
  box-shadow: 0 -6px 32px rgba(83, 66, 79, 0.13);
  padding: 18px 0;
  transform: translateY(110%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

#cookie-banner.cb-visible { transform: translateY(0); }

.cb-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cb-icon { font-size: 1.5rem; flex-shrink: 0; }

.cb-text { flex: 1; min-width: 200px; }

.cb-title {
  display: block;
  font-size: 0.93rem;
  font-weight: 800;
  color: var(--plum);
  margin-bottom: 3px;
}

.cb-body {
  font-size: 0.82rem;
  color: var(--plum-muted);
  margin: 0;
  line-height: 1.5;
}

.cb-link {
  color: var(--plum-mid);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cb-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  align-items: center;
}

.cb-btn {
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: all 0.15s;
  white-space: nowrap;
}

.cb-btn-primary {
  background: var(--plum);
  color: var(--white);
}
.cb-btn-primary:hover { background: var(--plum-mid); }

.cb-btn-secondary {
  background: transparent;
  color: var(--plum-muted);
  border: 1.5px solid var(--border-warm);
}
.cb-btn-secondary:hover {
  background: var(--blush-soft);
  border-color: var(--peach-mid);
}

@media (max-width: 600px) {
  .cb-inner { flex-direction: column; align-items: stretch; gap: 14px; }
  .cb-icon { display: none; }
  .cb-actions { flex-direction: row; }
  .cb-btn { flex: 1; text-align: center; }
}
