/* Varamedia SEO, sales landing page. Self-contained (own tokens). */
:root {
  /* Varamedia house style */
  --ink:        #2a2d32;   /* Dove Gray  */
  --ink-soft:   #676767;   /* Alabaster  */
  --ink-faint:  #9a9a9c;
  --bg:         #ffffff;
  --bg-soft:    #f7f6f3;
  --line:       #e8e6e2;
  --accent:     #eb5b28;   /* Flamingo   */
  --accent-d:   #cf4a1a;
  --accent-soft:#fcebe2;
  --dark:       #2a2d32;   /* Dove Gray  */
  --radius:     14px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "proxima-nova", "Montserrat", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  color: var(--ink); background: var(--bg);
  -webkit-font-smoothing: antialiased; line-height: 1.6;
}
a { color: inherit; }
h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; }

/* ---- nav ---- */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px; max-width: 1180px; margin: 0 auto;
}
.nav-brand { display: inline-flex; align-items: center; text-decoration: none; }
.nav-logo { height: 38px; width: auto; display: block; }
.nav-logo-fb {
  display: none; align-items: baseline;
  font-weight: 800; font-size: 18px; letter-spacing: -0.02em; color: var(--ink);
}
.nav-logo-fb i { color: var(--accent); font-weight: 700; font-style: normal; margin-left: 5px; }
.nav-links { display: flex; align-items: center; gap: 20px; font-size: 14px; font-weight: 500; }
.nav-links a { text-decoration: none; color: var(--ink-soft); white-space: nowrap; }
.nav-links a:hover { color: var(--ink); }
.nav-login {
  border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 16px; color: var(--ink) !important;
}
.nav-login:hover { border-color: var(--accent); color: var(--accent) !important; }
/* Mobile menu toggle: hidden on desktop, a hamburger that opens the links as a
   dropdown under ~900px so the nav never wraps into an unreadable stack. */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 38px; padding: 9px; background: transparent;
  border: 1px solid var(--line); border-radius: 10px; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform .2s, opacity .2s;
}
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav { position: relative; flex-wrap: wrap; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg); border: 1px solid var(--line);
    box-shadow: 0 16px 36px rgba(0, 0, 0, .10); padding: 6px 0; z-index: 60;
  }
  .nav.open .nav-links { display: flex; }
  .nav-links a { padding: 13px 24px; }
  .nav-links a:hover { background: var(--bg-soft); }
  .nav-login {
    margin: 4px 14px 6px; padding: 12px; text-align: center;
    border: 1px solid var(--line) !important; border-radius: 10px;
  }
}

/* ---- hero ---- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1200px 640px at 50% -20%, rgba(235, 91, 40, .20), transparent 58%),
    radial-gradient(760px 460px at 86% 10%, rgba(235, 91, 40, .10), transparent 55%),
    linear-gradient(165deg, #34373f 0%, #24262c 58%, #1c1e22 100%);
  color: #fff; text-align: center;
  padding: 78px 24px 92px;
}
/* A faint dot grid, masked so it concentrates near the top and fades out, for a
   premium texture instead of the flat grey. */
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(72% 62% at 50% 0%, #000, transparent 76%);
          mask-image: radial-gradient(72% 62% at 50% 0%, #000, transparent 76%);
}
.hero-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent);
}
.hero .eyebrow { color: #fb9055; }
.hero h1 {
  font-size: clamp(34px, 5.4vw, 58px); font-weight: 800;
  margin: 18px 0 0;
}
.hero h1 span { color: #fb9055; }
.hero-sub {
  font-size: clamp(16px, 2vw, 19px); color: #c4c4d2;
  max-width: 600px; margin: 22px auto 0;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }
.hero-trust {
  display: flex; gap: 22px; justify-content: center; flex-wrap: wrap;
  margin-top: 30px; font-size: 13px; color: #9a9ab0; font-weight: 500;
}

/* ---- buttons ---- */
.btn {
  display: inline-block; text-decoration: none; cursor: pointer;
  font-size: 15px; font-weight: 700; border-radius: 999px;
  padding: 14px 28px; border: 0; transition: transform .12s, background .12s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-d); }
.btn-ghost { background: transparent; color: #fff; border: 1px solid #4a4d54; }
.btn-ghost:hover { border-color: #82858c; }

/* ---- sections ---- */
.band { padding: 72px 24px; }
.band-dark { background: var(--dark); color: #fff; }
.band-soft { background: var(--bg-soft); }
.section-inner { max-width: 1000px; margin: 0 auto; }
.band h2 {
  font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; text-align: center;
}
/* The eyebrow sits above a centered h2 in every band, so centre it too (a light
   band like the free SEO-check left it stuck to the left). */
.band .eyebrow { text-align: center; }
.h2-light { color: #fff; }
.eyebrow-light { color: #fb9055; }
.band-dark .eyebrow, .cta-band .eyebrow { text-align: center; }
.band-dark .eyebrow, .band-dark h2 { text-align: center; }

/* ---- problem cards ---- */
.cards {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-top: 38px;
}
.card {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px;
}
.card-i { font-size: 24px; margin-bottom: 10px; }
.card p { font-size: 14.5px; color: var(--ink-soft); }

/* ---- approach (dark) ---- */
.band-dark .eyebrow { margin-bottom: 14px; }
.band-dark h2 { margin-bottom: 18px; }
.lead-light {
  color: #c4c4d2; font-size: 16px; max-width: 680px;
  margin: 0 auto; text-align: center;
}
.sources {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  align-items: center; margin-top: 30px;
}
.sources span {
  background: #34373d; border: 1px solid #474a51;
  border-radius: 999px; padding: 8px 16px; font-size: 13px; font-weight: 600;
}
.sources-arrow { background: none !important; border: 0 !important; color: #fb9055; font-size: 18px; }
.sources-out { background: var(--accent) !important; border-color: var(--accent) !important; }

/* ---- steps ---- */
.steps { list-style: none; max-width: 720px; margin: 40px auto 0; display: grid; gap: 20px; }
.steps li { display: flex; gap: 20px; align-items: flex-start; }
.step-n {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  font-weight: 800; font-size: 19px; display: grid; place-items: center;
}
.steps h3 { font-size: 18px; font-weight: 700; }
.steps p { font-size: 14.5px; color: var(--ink-soft); margin-top: 3px; }

/* ---- gated teaser ---- */
.teaser-intro { text-align: center; color: var(--ink-soft); margin-top: 14px; }
.teaser { position: relative; max-width: 760px; margin: 32px auto 0; }
.teaser-mock {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 14px; display: grid; gap: 8px;
}
.tm-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 9px;
}
.tm-blur { filter: blur(5px); user-select: none; }
.tm-tag {
  font-size: 10px; font-weight: 800; letter-spacing: .04em;
  padding: 3px 9px; border-radius: 999px; white-space: nowrap;
}
.tm-must   { background: #fde7e7; color: #be123c; }
.tm-should { background: #e9eefe; color: var(--accent); }
.tm-verify { background: #fdeede; color: #c2620a; }
.tm-defer  { background: #ececf2; color: #6a6a85; }
.tm-txt { flex: 1; font-size: 13.5px; color: var(--ink); }
.tm-num { font-size: 13px; font-weight: 700; color: var(--ink-faint); }
.teaser-lock {
  position: absolute; left: 0; right: 0; bottom: 0; top: 38%;
  background: linear-gradient(180deg, rgba(244,245,251,0), var(--bg-soft) 38%);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  text-align: center; padding: 0 24px 8px; border-radius: var(--radius);
}
.lock-i {
  font-size: 26px; width: 56px; height: 56px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--line);
  display: grid; place-items: center; box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.teaser-lock h3 { font-size: 19px; font-weight: 800; margin: 14px 0 0; }
.teaser-lock p {
  font-size: 14.5px; color: var(--ink-soft); max-width: 460px; margin: 8px 0 16px;
}

/* ---- CTA + lead form ---- */
.cta-band { background: var(--bg-soft); }
.cta-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center;
}
.cta-text h2 { text-align: left; margin: 12px 0 10px; }
.cta-text p { color: var(--ink-soft); font-size: 15.5px; }
.lead-form {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: 0 18px 50px rgba(20,20,30,.07);
}
.lead-form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--ink);
}
.lead-form .opt { color: var(--ink-faint); font-weight: 400; }
.lead-form input, .lead-form textarea {
  font-family: inherit; font-size: 14px; color: var(--ink);
  border: 1px solid var(--line); border-radius: 9px; padding: 11px 13px;
  background: var(--bg); resize: vertical;
}
.lead-form input:focus, .lead-form textarea:focus {
  outline: none; border-color: var(--accent);
}
.lead-form .btn { margin-top: 4px; width: 100%; }
.lead-result { font-size: 13.5px; font-weight: 600; }
.lead-result:empty { display: none; }
.lead-result.ok  { color: var(--accent); }
.lead-result.err { color: #be123c; }
.lead-result.busy { color: var(--ink-soft); }

/* ---- footer ---- */
.foot { background: var(--dark); color: #c4c4d2; padding: 40px 24px; }
.foot-inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 16px 32px; align-items: center;
}
.foot-brand { display: inline-flex; align-items: center; }
.foot-brand img { height: 34px; width: auto; display: block; }
.foot-links { display: flex; gap: 20px; font-size: 14px; }
.foot-links a { color: #c4c4d2; text-decoration: none; }
.foot-links a:hover { color: #fff; }
.foot-fine { flex-basis: 100%; font-size: 12.5px; color: #7a7a90; }

@media (max-width: 860px) {
  .cards { grid-template-columns: 1fr 1fr; }
  .cta-inner { grid-template-columns: 1fr; gap: 24px; }
  .cta-text h2 { text-align: center; }
}
@media (max-width: 520px) {
  .cards { grid-template-columns: 1fr; }
  .nav { padding: 16px 20px; }
  .band { padding: 54px 20px; }
}

/* ---- free GSC lite-audit ---- */
.upload-zone {
  display: block; max-width: 520px; margin: 28px auto 0;
  border: 2px dashed #c3c8e0; border-radius: var(--radius);
  background: var(--bg); padding: 34px 24px; text-align: center; cursor: pointer;
  transition: border-color .12s, background .12s;
}
.upload-zone:hover { border-color: var(--accent); background: var(--accent-soft); }
.uz-i { font-size: 32px; }
.uz-t { font-size: 16px; font-weight: 700; margin-top: 8px; }
.uz-s { font-size: 13px; color: var(--ink-faint); margin-top: 4px; }

.audit-busy, .audit-err {
  max-width: 760px; margin: 20px auto 0; text-align: center;
  font-size: 14px; padding: 14px 18px; border-radius: 10px;
}
.audit-busy { color: var(--ink-soft); background: var(--bg); border: 1px solid var(--line); }
.audit-err  { color: #be123c; background: #fdecec; border: 1px solid #f5c2c2; }

.audit-report {
  max-width: 760px; margin: 26px auto 0;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 18px 50px rgba(20,20,30,.08);
}
.ar-head {
  background: var(--dark); color: #fff; padding: 16px 20px;
  font-size: 15px; font-weight: 800;
}
.ar-head span { color: var(--accent); font-weight: 600; }
.ar-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}
.ar-stat { padding: 16px 12px; text-align: center; border-right: 1px solid var(--line); }
.ar-stat:last-child { border-right: 0; }
.ar-stat b { display: block; font-size: 22px; font-weight: 800; color: var(--accent); }
.ar-stat span { font-size: 12px; color: var(--ink-faint); }
.ar-finds { padding: 16px 20px; display: grid; gap: 9px; }
.ar-find { display: flex; gap: 10px; align-items: baseline; font-size: 14px; color: var(--ink-soft); }
.ar-find b { color: var(--ink); font-weight: 800; font-size: 16px; }
.ar-find-i { font-size: 15px; }
.ar-list-head {
  padding: 10px 20px 0; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em; color: var(--ink-faint);
}
.ar-list { padding: 10px 20px 22px; display: grid; gap: 6px; }
.ar-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border: 1px solid var(--line); border-radius: 8px; font-size: 13px;
}
.ar-url {
  flex: 1; color: var(--ink); word-break: break-all;
  font-family: ui-monospace, Menlo, monospace; font-size: 12px;
}
.ar-pos { font-weight: 700; color: var(--accent); white-space: nowrap; }
.ar-imp { color: var(--ink-faint); white-space: nowrap; }
.ar-blur { filter: blur(5px); user-select: none; }
.ar-locked { position: relative; display: grid; gap: 6px; }
.ar-lock {
  position: absolute; inset: -10px 0 0 0;
  background: linear-gradient(180deg, rgba(255,255,255,.45), var(--bg) 46%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 8px 20px;
}
.ar-lock h3 { font-size: 17px; font-weight: 800; margin: 12px 0 0; }
.ar-lock p { font-size: 13.5px; color: var(--ink-soft); max-width: 450px; margin: 7px 0 14px; }
/* Lock shown as a standalone upsell card when there is no longer list to blur. */
.ar-lock-flat {
  position: static; inset: auto;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px 20px;
}
@media (max-width: 520px) { .ar-stats { grid-template-columns: 1fr 1fr; } }

/* ---- dashboard preview ---- */
.preview-lead { max-width: 620px; margin-left: auto; margin-right: auto; }
.preview-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 38px; text-align: left;
}
.preview-card { display: flex; flex-direction: column; gap: 14px; }
.preview-card figcaption { font-size: 13.5px; color: #c4c4d2; line-height: 1.55; }
.pv-frame {
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.pv-bar {
  display: flex; gap: 6px; padding: 11px 13px;
  background: #f1f1f6; border-bottom: 1px solid #e6e6ee;
}
.pv-bar span { width: 9px; height: 9px; border-radius: 50%; background: #cfcfd9; }
.pv-body { padding: 16px; color: var(--ink); }
.pv-head {
  font-size: 11px; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: var(--ink-faint); margin-bottom: 12px;
}
.pv-act {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 11px; margin-bottom: 7px;
  border: 1px solid var(--line); border-left-width: 3px;
  border-radius: 7px; font-size: 12.5px;
}
.pv-must   { border-left-color: #eb5b28; }
.pv-should { border-left-color: #676767; }
.pv-verify { border-left-color: #f9b03d; }
.pv-cat {
  font-size: 9.5px; font-weight: 800; letter-spacing: .04em;
  color: var(--ink-faint); white-space: nowrap;
}
.pv-act-t { flex: 1; font-weight: 600; }
.pv-badge {
  font-size: 10px; font-weight: 800; padding: 3px 8px;
  border-radius: 999px; white-space: nowrap;
}
.pv-hi { background: #fcebe2; color: #cf4a1a; }
.pv-md { background: #fdf0d8; color: #9a6612; }
.pv-scores { display: flex; gap: 16px; margin: 6px 0 14px; }
.pv-score { display: flex; flex-direction: column; align-items: center; gap: 7px; flex: 1; }
.pv-score span { font-size: 11px; font-weight: 600; color: var(--ink-soft); }
.pv-ring {
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800; font-size: 16px; color: var(--ink);
  background:
    radial-gradient(closest-side, #fff 75%, transparent 76%),
    conic-gradient(var(--accent) calc(var(--p) * 1%), #e6e6ee 0);
}
.pv-delta {
  font-size: 12px; font-weight: 700; color: #cf4a1a;
  background: #fcebe2; border-radius: 7px; padding: 7px 10px; text-align: center;
}
.pv-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.pv-table th {
  text-align: left; font-size: 9.5px; font-weight: 800; letter-spacing: .04em;
  text-transform: uppercase; color: var(--ink-faint);
  padding: 0 6px 8px; border-bottom: 1px solid var(--line);
}
.pv-table td {
  padding: 9px 6px; border-bottom: 1px solid var(--line);
  color: var(--ink); white-space: nowrap;
}
.pv-table td:first-child {
  font-family: ui-monospace, Menlo, monospace; font-size: 11px;
  width: 99%; white-space: normal; word-break: break-all;
}
.pv-table tr:last-child td { border-bottom: 0; }
.pv-pill {
  font-size: 10px; font-weight: 800; font-style: normal;
  padding: 3px 8px; border-radius: 999px; white-space: nowrap;
}
.pv-ok   { background: #efedea; color: #676767; }
.pv-warn { background: #fdf0d8; color: #9a6612; }
.pv-dim  { background: #edebe8; color: #676767; }
.preview-foot { margin-top: 32px; font-size: 15px; font-weight: 600; color: #e8e8f0; }
@media (max-width: 860px) {
  .preview-grid {
    grid-template-columns: 1fr;
    max-width: 420px; margin-left: auto; margin-right: auto;
  }
}

/* ── lead text under H2's, used in Wat je krijgt / Hoe samenwerken ─────── */
.lead-text {
  max-width: 720px; margin: 8px auto 36px;
  text-align: center; font-size: 16.5px; line-height: 1.6;
  color: var(--ink-soft);
}

/* ── feature grid (Wat je concreet krijgt) ─────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 8px;
}
.feature {
  background: #fff;
  border: 1px solid #e8e6e2;
  border-radius: 14px;
  padding: 22px 22px 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,.03);
}
.feat-i {
  font-size: 28px; line-height: 1; margin-bottom: 10px;
}
.feature h3 {
  font-size: 16px; font-weight: 700; color: var(--ink);
  margin: 0 0 8px; line-height: 1.3;
}
.feature p {
  font-size: 14px; line-height: 1.55; color: var(--ink-soft); margin: 0;
}
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; max-width: 460px; margin: 8px auto 0; } }

/* ── collaboration steps (Hoe we samenwerken) ──────────────────────────── */
.collab-steps {
  list-style: none; padding: 0;
  max-width: 760px; margin: 16px auto 0;
  display: grid; gap: 18px;
}
.collab-steps li {
  display: grid; grid-template-columns: 52px 1fr; gap: 18px;
  background: #fff; border: 1px solid #e8e6e2;
  border-radius: 14px; padding: 22px 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,.03);
}
.cs-n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 999px;
  background: var(--accent); color: #fff;
  font-weight: 800; font-size: 16px;
}
.collab-steps h3 {
  font-size: 17px; font-weight: 700; color: var(--ink);
  margin: 4px 0 6px;
}
.collab-steps p {
  font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); margin: 0;
}

/* ── notification grid (Welke meldingen krijg je, on band-dark) ────────── */
.notif-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
  margin: 12px 0 24px;
}
.notif {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px; padding: 22px 22px 18px;
}
.notif-tag {
  display: inline-block; font-size: 10.5px; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
  color: #fb9055; background: rgba(251,144,85,.12);
  padding: 4px 9px; border-radius: 5px; margin-bottom: 10px;
}
.notif h3 {
  font-size: 17px; font-weight: 700; color: #fff;
  margin: 0 0 8px;
}
.notif > p {
  font-size: 14px; line-height: 1.55;
  color: rgba(255,255,255,.78); margin: 0 0 14px;
}
.notif-mock {
  background: #fdfcf9; color: var(--ink);
  border-radius: 9px; padding: 12px 14px;
  font-size: 12.5px; line-height: 1.5;
}
.nm-from {
  font-size: 11px; color: #676767; font-weight: 600; margin-bottom: 2px;
}
.nm-subj {
  font-weight: 700; color: var(--ink); margin-bottom: 6px; font-size: 13px;
}
.nm-body {
  color: #2a2d32; font-style: italic; line-height: 1.55;
}
.notif-foot {
  text-align: center; max-width: 720px; margin: 8px auto 0;
  font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.6;
}
@media (max-width: 720px) {
  .notif-grid { grid-template-columns: 1fr; max-width: 460px; margin: 12px auto 24px; }
}
