/**
 * SaveVideo design system
 * Goals: readable contrast, mobile-first, accessible focus, AdSense-ready layout,
 * reserved ad slots that don't look like download buttons (Google policy).
 */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&family=IBM+Plex+Mono:wght@400;500&display=swap");

:root {
  --sv-bg: #0b0f19;
  --sv-bg-elevated: #121826;
  --sv-surface: #161e2e;
  --sv-surface-2: #1c2638;
  --sv-border: rgba(148, 163, 184, 0.16);
  --sv-border-strong: rgba(148, 163, 184, 0.32);
  --sv-text: #f1f5f9;
  --sv-text-secondary: #cbd5e1;
  --sv-muted: #94a3b8;
  --sv-faint: #64748b;
  --sv-primary: #3b82f6;
  --sv-primary-hover: #60a5fa;
  --sv-primary-soft: rgba(59, 130, 246, 0.14);
  --sv-accent: #22d3ee;
  --sv-good: #34d399;
  --sv-warn: #fbbf24;
  --sv-danger: #f87171;
  --sv-radius: 16px;
  --sv-radius-sm: 10px;
  --sv-radius-pill: 999px;
  --sv-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --sv-font: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --sv-mono: "IBM Plex Mono", ui-monospace, monospace;
  --sv-max: 1120px;
  --sv-narrow: 720px;
  --sv-header-h: 64px;
  --sv-focus: 0 0 0 3px rgba(59, 130, 246, 0.45);
  --sv-safe-t: env(safe-area-inset-top, 0px);
  --sv-safe-b: env(safe-area-inset-bottom, 0px);
  color-scheme: dark;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--sv-header-h) + 12px);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body.sv {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--sv-font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--sv-text);
  background: var(--sv-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.sv::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 55% at 0% -10%, rgba(59, 130, 246, 0.22), transparent 55%),
    radial-gradient(ellipse 70% 45% at 100% 0%, rgba(34, 211, 238, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(99, 102, 241, 0.1), transparent 55%),
    linear-gradient(180deg, #0b0f19 0%, #0d121f 50%, #0a0e16 100%);
}

/* Skip link — keyboard / Firefox a11y */
.sv-skip {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  padding: 0.65rem 1rem;
  background: var(--sv-primary);
  color: #fff;
  font-weight: 600;
  border-radius: var(--sv-radius-sm);
  text-decoration: none;
}
.sv-skip:focus {
  top: calc(0.75rem + var(--sv-safe-t));
  outline: none;
  box-shadow: var(--sv-focus);
}

:focus-visible {
  outline: none;
  box-shadow: var(--sv-focus);
  border-radius: 4px;
}

a { color: var(--sv-primary-hover); }
a:hover { text-decoration: underline; }

.sv-wrap {
  width: min(var(--sv-max), calc(100% - 2rem));
  margin: 0 auto;
}
.sv-wrap--narrow { width: min(var(--sv-narrow), calc(100% - 2rem)); }

/* Header */
.sv-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  background: rgba(11, 15, 25, 0.82);
  border-bottom: 1px solid var(--sv-border);
  padding-top: var(--sv-safe-t);
}
.sv-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--sv-header-h);
  width: min(var(--sv-max), calc(100% - 2rem));
  margin: 0 auto;
}
.sv-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--sv-text);
  text-decoration: none !important;
  flex-shrink: 0;
}
.sv-logo__mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.35);
}
.sv-logo__text { display: flex; flex-direction: column; line-height: 1.15; }
.sv-logo__text strong { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.03em; }
.sv-logo__text span { font-size: 0.72rem; color: var(--sv-muted); font-weight: 500; }

.sv-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.sv-nav a {
  color: var(--sv-muted);
  text-decoration: none !important;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.45rem 0.75rem;
  border-radius: var(--sv-radius-pill);
  transition: color 0.15s, background 0.15s;
}
.sv-nav a:hover,
.sv-nav a[aria-current="page"] {
  color: var(--sv-text);
  background: rgba(255, 255, 255, 0.05);
}
.sv-nav a.sv-nav__cta {
  background: var(--sv-primary);
  color: #fff;
  margin-left: 0.25rem;
}
.sv-nav a.sv-nav__cta:hover {
  background: var(--sv-primary-hover);
  color: #fff;
}

.sv-nav-toggle {
  display: none;
  border: 1px solid var(--sv-border);
  background: var(--sv-surface);
  color: var(--sv-text);
  border-radius: var(--sv-radius-sm);
  padding: 0.5rem 0.7rem;
  font: inherit;
  cursor: pointer;
}

@media (max-width: 760px) {
  .sv-nav-toggle { display: inline-flex; align-items: center; gap: 0.35rem; }
  .sv-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 0 1rem;
  }
  .sv-header__inner { flex-wrap: wrap; }
  .sv-nav.is-open { display: flex; }
  .sv-nav a { padding: 0.7rem 0.9rem; }
  .sv-nav a.sv-nav__cta { margin-left: 0; text-align: center; }
}

/* Main */
.sv-main {
  padding: 1.5rem 0 calc(3.5rem + var(--sv-safe-b));
}

/* Hero */
.sv-hero {
  text-align: center;
  padding: 2rem 0 2.5rem;
}
.sv-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--sv-radius-pill);
  border: 1px solid var(--sv-border);
  background: var(--sv-primary-soft);
  color: #93c5fd;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
}
.sv-hero h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.85rem, 5vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--sv-text);
}
.sv-hero h1 em {
  font-style: normal;
  background: linear-gradient(110deg, #60a5fa 0%, #22d3ee 55%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sv-hero__lead {
  margin: 0 auto 1.5rem;
  max-width: 560px;
  color: var(--sv-text-secondary);
  font-size: 1.08rem;
  line-height: 1.65;
}
.sv-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-bottom: 1.75rem;
}
.sv-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  color: var(--sv-muted);
  font-size: 0.88rem;
}
.sv-hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.sv-hero__trust svg { opacity: 0.85; }

/* Buttons */
.sv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 44px;
  padding: 0.65rem 1.2rem;
  border-radius: var(--sv-radius-sm);
  border: 1px solid var(--sv-border);
  background: var(--sv-surface);
  color: var(--sv-text);
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none !important;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}
.sv-btn:hover {
  background: var(--sv-surface-2);
  border-color: var(--sv-border-strong);
  transform: translateY(-1px);
}
.sv-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.sv-btn--primary {
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.3);
}
.sv-btn--primary:hover {
  filter: brightness(1.06);
  background: linear-gradient(135deg, #3b82f6, #22d3ee);
  color: #fff;
}
.sv-btn--ghost {
  background: transparent;
}
.sv-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

/* Sections */
.sv-section {
  margin: 2.5rem 0;
}
.sv-section__head {
  margin-bottom: 1.25rem;
}
.sv-section__head h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 750;
  letter-spacing: -0.02em;
}
.sv-section__head p {
  margin: 0;
  color: var(--sv-muted);
  max-width: 560px;
}

/* Feature grid */
.sv-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.sv-feature {
  padding: 1.2rem;
  border-radius: var(--sv-radius);
  border: 1px solid var(--sv-border);
  background: rgba(22, 30, 46, 0.72);
}
.sv-feature__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--sv-primary-soft);
  color: #93c5fd;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}
.sv-feature h3 {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
  font-weight: 650;
}
.sv-feature p {
  margin: 0;
  color: var(--sv-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* Steps */
.sv-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sv-steps li {
  position: relative;
  padding: 1.15rem 1.15rem 1.15rem 1.15rem;
  border-radius: var(--sv-radius);
  border: 1px solid var(--sv-border);
  background: rgba(22, 30, 46, 0.55);
}
.sv-steps li::before {
  counter-increment: step;
  content: counter(step);
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--sv-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.65rem;
}
.sv-steps strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.98rem;
}
.sv-steps span {
  color: var(--sv-muted);
  font-size: 0.9rem;
}

/* Search */
.sv-search {
  position: relative;
  margin: 0 0 1.15rem;
}
.sv-search input {
  width: 100%;
  min-height: 48px;
  padding: 0.85rem 1rem 0.85rem 2.75rem;
  border-radius: 12px;
  border: 1px solid var(--sv-border);
  background: rgba(12, 16, 28, 0.9);
  color: var(--sv-text);
  font: inherit;
  outline: none;
}
.sv-search input:focus {
  border-color: rgba(59, 130, 246, 0.55);
  box-shadow: var(--sv-focus);
}
.sv-search__ico {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--sv-faint);
  pointer-events: none;
}

/* Tool cards */
.sv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.sv-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.2rem;
  min-height: 150px;
  border-radius: var(--sv-radius);
  border: 1px solid var(--sv-border);
  background: linear-gradient(165deg, rgba(28, 36, 56, 0.9), rgba(16, 22, 36, 0.95));
  color: var(--sv-text);
  text-decoration: none !important;
  box-shadow: var(--sv-shadow);
  transition: transform 0.18s ease, border-color 0.18s, box-shadow 0.18s;
}
.sv-card:hover {
  transform: translateY(-3px);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.12), var(--sv-shadow);
}
.sv-card__ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--sv-border);
}
.sv-card h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}
.sv-card p {
  margin: 0;
  color: var(--sv-muted);
  font-size: 0.88rem;
  line-height: 1.45;
  flex: 1;
}
.sv-card__go {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sv-primary-hover);
}

/* Content panels (guides, legal, tools) */
.sv-panel {
  padding: 1.5rem 1.35rem;
  border-radius: var(--sv-radius);
  border: 1px solid var(--sv-border);
  background: rgba(18, 24, 38, 0.82);
  margin-bottom: 1rem;
}
.sv-panel h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.5rem, 3.5vw, 1.9rem);
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.sv-panel h2 {
  margin: 1.5rem 0 0.55rem;
  font-size: 1.2rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}
.sv-panel h3 {
  margin: 1.15rem 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 600;
}
.sv-panel p,
.sv-panel li {
  color: var(--sv-text-secondary);
  line-height: 1.7;
}
.sv-panel p { margin: 0 0 0.9rem; }
.sv-panel ul,
.sv-panel ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}
.sv-panel li { margin-bottom: 0.4rem; }
.sv-meta {
  color: var(--sv-muted);
  font-size: 0.88rem;
  margin-bottom: 1.25rem !important;
}

/* Notice / callouts — not ad-like */
.sv-notice {
  padding: 0.95rem 1.1rem;
  border-radius: var(--sv-radius-sm);
  border: 1px solid rgba(251, 191, 36, 0.28);
  background: rgba(251, 191, 36, 0.08);
  color: var(--sv-text-secondary);
  font-size: 0.92rem;
  margin: 1rem 0;
}
.sv-notice--info {
  border-color: rgba(59, 130, 246, 0.3);
  background: rgba(59, 130, 246, 0.1);
}
.sv-notice strong { color: var(--sv-text); }

/* Forms */
.sv-field { margin-bottom: 1rem; }
.sv-field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--sv-text-secondary);
}
.sv-field input,
.sv-field select,
.sv-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.7rem 0.9rem;
  border-radius: var(--sv-radius-sm);
  border: 1px solid var(--sv-border);
  background: rgba(10, 14, 24, 0.9);
  color: var(--sv-text);
  font: inherit;
}
.sv-field input:focus,
.sv-field select:focus,
.sv-field textarea:focus {
  border-color: rgba(59, 130, 246, 0.55);
  box-shadow: var(--sv-focus);
  outline: none;
}

/* FAQ */
.sv-faq details {
  border: 1px solid var(--sv-border);
  border-radius: var(--sv-radius-sm);
  background: rgba(22, 30, 46, 0.55);
  margin-bottom: 0.55rem;
  padding: 0.15rem 0;
}
.sv-faq summary {
  cursor: pointer;
  padding: 0.85rem 1rem;
  font-weight: 600;
  list-style: none;
  color: var(--sv-text);
}
.sv-faq summary::-webkit-details-marker { display: none; }
.sv-faq summary::after {
  content: "+";
  float: right;
  color: var(--sv-muted);
  font-weight: 500;
}
.sv-faq details[open] summary::after { content: "−"; }
.sv-faq details p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: var(--sv-muted);
  font-size: 0.95rem;
}

/* Ad slots — clearly labeled, not overlapping CTAs (AdSense policy) */
.sv-ad {
  margin: 1.5rem 0;
  min-height: 90px;
  display: grid;
  place-items: center;
  border-radius: var(--sv-radius-sm);
  border: 1px dashed var(--sv-border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--sv-faint);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
}
.sv-ad--side {
  min-height: 250px;
}
/* When AdSense is live, remove .sv-ad--placeholder visual and inject unit */
.sv-ad--placeholder { pointer-events: none; user-select: none; }

/* Breadcrumbs */
.sv-crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
  font-size: 0.85rem;
  color: var(--sv-muted);
  margin-bottom: 1rem;
}
.sv-crumbs a {
  color: var(--sv-muted);
  text-decoration: none !important;
}
.sv-crumbs a:hover { color: var(--sv-text); }
.sv-crumbs span[aria-hidden] { opacity: 0.5; }

/* Guide list */
.sv-guide-list {
  display: grid;
  gap: 0.75rem;
}
.sv-guide-item {
  display: block;
  padding: 1.1rem 1.2rem;
  border-radius: var(--sv-radius);
  border: 1px solid var(--sv-border);
  background: rgba(22, 30, 46, 0.65);
  color: var(--sv-text);
  text-decoration: none !important;
  transition: border-color 0.15s, background 0.15s;
}
.sv-guide-item:hover {
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(28, 38, 58, 0.85);
}
.sv-guide-item strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.02rem;
}
.sv-guide-item span {
  color: var(--sv-muted);
  font-size: 0.9rem;
}

/* Footer */
.sv-footer {
  border-top: 1px solid var(--sv-border);
  background: rgba(8, 11, 18, 0.9);
  padding: 2.25rem 0 calc(2rem + var(--sv-safe-b));
  margin-top: 1rem;
}
.sv-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 1.5rem;
  width: min(var(--sv-max), calc(100% - 2rem));
  margin: 0 auto 1.75rem;
}
@media (max-width: 800px) {
  .sv-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .sv-footer__grid { grid-template-columns: 1fr; }
}
.sv-footer h3 {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sv-faint);
  font-weight: 650;
}
.sv-footer a {
  display: block;
  color: var(--sv-muted);
  text-decoration: none !important;
  font-size: 0.92rem;
  padding: 0.25rem 0;
}
.sv-footer a:hover { color: var(--sv-text); }
.sv-footer__brand p {
  margin: 0.5rem 0 0;
  color: var(--sv-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 280px;
}
.sv-footer__bottom {
  width: min(var(--sv-max), calc(100% - 2rem));
  margin: 0 auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--sv-border);
  color: var(--sv-faint);
  font-size: 0.82rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  justify-content: space-between;
}

/* Tool page tweaks when body has .sv */
body.sv .panel {
  border-radius: var(--sv-radius);
  border: 1px solid var(--sv-border);
  background: rgba(18, 24, 38, 0.85);
}
body.sv .btn.primary {
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  border: none;
}
body.sv .notice {
  border-color: rgba(251, 191, 36, 0.28);
  background: rgba(251, 191, 36, 0.08);
}

/* Thumbnails */
.sv-thumb {
  max-width: 100%;
  border-radius: var(--sv-radius-sm);
  border: 1px solid var(--sv-border);
}

.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Toast reuse */
.toast-host {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + var(--sv-safe-b));
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.toast {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: var(--sv-surface-2);
  border: 1px solid var(--sv-border);
  color: var(--sv-text);
  box-shadow: var(--sv-shadow);
  max-width: 320px;
  font-size: 0.9rem;
}
.toast.ok { border-color: rgba(52, 211, 153, 0.4); }
.toast.err { border-color: rgba(248, 113, 113, 0.45); }

.spinner {
  display: inline-block;
  width: 1em;
  height: 1em;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-top-color: #60a5fa;
  border-radius: 50%;
  animation: svspin 0.7s linear infinite;
  vertical-align: -0.15em;
  margin-right: 0.35em;
}
@keyframes svspin { to { transform: rotate(360deg); } }

/* Cookie notice (AdSense / GDPR-friendly acknowledgment) */
.sv-cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  padding: 0.85rem 1rem calc(0.85rem + var(--sv-safe-b));
  background: rgba(8, 12, 20, 0.96);
  border-top: 1px solid var(--sv-border);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.35);
}
.sv-cookie__inner {
  width: min(var(--sv-max), 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  align-items: center;
  justify-content: space-between;
}
.sv-cookie p {
  margin: 0;
  flex: 1 1 240px;
  color: var(--sv-text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}
.sv-cookie a { color: var(--sv-primary-hover); }
