/* laundrify website-v2 — /features/statistics leaf (page-specific)
   Layered on home.css, the shared component library (tokens, header/footer, .btn, .kicker,
   .grad, .sec/.sec-head, .hero, .eyebrow). This file adds only what this leaf needs.

   Full page: §1 Hero (3-view cascade) + §2 "Drei Sichten" (Verteilung / Jahresübersicht /
   Kalender + Plus callout) + §3 Vergleiche (comparison card) + §4 cross-links + §5 slim CTA.
   §4/§5 reuse the .xref / .cta-slim patterns from features-cycle-details.css (not in home.css).

   Severity scale (low/mid/high) = a SOFTENED, brand-tuned green→amber→red — the calm variant of
   the app's traffic-light and the locked .eclass chips on cycle-details. Fill tones are light
   (for large areas); the -t text tones are darker so inline words pass contrast on white. */
:root{
  --sev-low:#83c393;  --sev-mid:#f0b24f;  --sev-high:#ec7c74;
  --sev-low-t:#3f9e62; --sev-mid-t:#c2870f; --sev-high-t:#d65a51;  /* readable text variants */
}

/* home.css defines .plus as a SECTION-wash class (radial gradient); neutralise that leak on the
   inline "laundrify plus" / "mit plus" mentions reused here (they are blue text, not a wash). */
.hero-stats .plus,.views-sec .plus,.views-plus .plus,.cmp-sec .plus{background:none}

/* ============ shared in-app screen-mirror card (white, gradient border + soft shadow) ============
   The stats vizzes are app-screen fragments, so they read as clean UI cards (not the chart-paper
   panel — that treatment is for abstract charts like the live power-curve). */
.sc-card,.svcard{position:relative;border:1px solid transparent;border-radius:var(--r-lg);
  background:linear-gradient(#fff,#fff) padding-box,
    linear-gradient(168deg,#eaeef4,#dde4ec 55%,#d2dbe6) border-box;
  box-shadow:0 22px 54px -34px rgba(44,65,91,.5),0 2px 8px rgba(44,65,91,.04)}

/* ---- severity distribution bar (shared: hero Gesamt card + §2.1 Verteilung) ---- */
.sev-bar{display:flex;gap:3px;height:8px;margin-top:14px}
.sev-bar.lg{height:11px}
.sev-bar span{display:block;height:100%;border-radius:4px}
.sev-bar .lo{background:var(--sev-low)} .sev-bar .mi{background:var(--sev-mid)} .sev-bar .hi{background:var(--sev-high)}
/* per-class values under a bar (position maps to the coloured segment above: left = niedrig).
   No dots / labels — the bar above carries the colour key. .energy stacks a % over a faint € . */
.sev-vals{display:flex;margin-top:9px}
/* each value box = its segment's width (set inline) so the label centres under that segment,
   not within an equal third */
.sev-vals>span{display:flex;flex-direction:column;align-items:center;gap:1px;white-space:nowrap}
.sev-vals b{font-family:var(--body);font-weight:700;font-size:12.5px;color:var(--ink);font-variant-numeric:tabular-nums}
.sev-vals em{font-style:normal;font-size:10.5px;color:var(--faint);font-variant-numeric:tabular-nums}

/* ============ §1 HERO — split: copy + 3-view cascade ============ */
/* pb here + .views-sec padding-top below are tuned so the hero→§2 .sec-divider sits CENTRED in
   the gap (≈60px each side, measured from the cascade's lowest card to the §2 heading — the
   cascade's front card overflows the hero box ~18px, which the padding accounts for). */
.hero-stats{padding-bottom:78px}
.hero-stats h1{font-size:clamp(33px,4.5vw,53px)}
.hero-stats .lede{max-width:40ch}
.hero-stats .lede .plus{color:var(--active);font-weight:600}

/* cascade = the hero artifact: three overlapping app cards floating over a soft blue glow
   (the one sanctioned place for glow, DESIGN.md §6 — halo sits BEHIND the cards). Each card
   overlaps the one behind it by roughly half. */
.hero-cascade{position:relative;min-height:292px}
.hero-cascade::before{content:"";position:absolute;z-index:0;inset:2% 4%;border-radius:50%;
  background:radial-gradient(closest-side,rgba(113,174,248,.20),transparent 72%);filter:blur(8px)}
.sc-card{position:absolute;width:78%;padding:15px 17px}
.sc-monat {top:0;right:0;transform:rotate(2deg);transform-origin:top right;z-index:1}
.sc-jahr  {top:64px;right:26px;z-index:2}
.sc-gesamt{top:150px;left:0;transform:rotate(-2deg);transform-origin:bottom left;z-index:3}

.sc-head{display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:11px}
/* selected-tab chip (app-faithful: light-blue fill, no border) */
.sc-tab{font-family:var(--body);font-weight:700;font-size:11px;color:var(--active);
  background:var(--tint);border-radius:var(--r-sm);padding:3px 9px}
.sc-meta{font-size:10px;color:var(--faint)}

/* Gesamt — KPI trio + distribution */
.sc-kpis{display:grid;grid-template-columns:repeat(3,1fr)}
.sc-kpi{text-align:center;padding:2px 5px;position:relative}
.sc-kpi+.sc-kpi::before{content:"";position:absolute;left:0;top:16%;bottom:16%;width:1px;background:var(--line)}
.sc-kpi .v{font-family:var(--disp);font-weight:900;font-size:20px;color:var(--deep);line-height:1;
  display:flex;align-items:baseline;justify-content:center;gap:2px}
.sc-kpi .u{font-family:var(--body);font-size:10px;font-weight:700;color:var(--active)}
.sc-kpi .k{font-size:9px;color:var(--mut);margin-top:6px}
.sc-gesamt .sev-vals b{font-size:11px}

/* Jahr — REVISED stacked monthly bars (low/mid/high stacked, not side-by-side) + Ø line.
   Wide bars, minimal gap (matches the app's year chart). */
.sc-bars{position:relative;display:flex;align-items:flex-end;justify-content:space-between;gap:2px;
  height:62px;margin-top:4px;border-bottom:1px solid var(--line)}
.sc-bars::after{content:"";position:absolute;left:0;right:0;bottom:var(--avg,30px);height:1px;z-index:0;
  background:repeating-linear-gradient(to right,var(--line) 0 3px,transparent 3px 5px);opacity:.75}
.sc-bar{flex:1;display:flex;flex-direction:column-reverse;border-radius:2px 2px 0 0;overflow:hidden;max-width:16px;margin:0 auto;
  position:relative;z-index:1;transform:scaleY(1.16);transform-origin:bottom}
.sc-bar i{display:block}
.sc-bar .lo{background:var(--sev-low)} .sc-bar .mi{background:var(--sev-mid)} .sc-bar .hi{background:var(--sev-high)}
.sc-bars-x{display:flex;justify-content:space-between;font-size:8px;color:var(--faint);margin-top:5px}

/* Monat — mini calendar with classification dots */
.sc-cal .sc-dow{display:grid;grid-template-columns:repeat(7,1fr);font-size:8px;color:var(--faint);text-align:center;margin-bottom:4px}
.sc-days{display:grid;grid-template-columns:repeat(7,1fr);gap:5px 0;font-size:9px;color:var(--ink);text-align:center}
.sc-days span{position:relative;height:12px;line-height:12px}
.sc-days .o{color:var(--faint);opacity:.5}
.sc-days .d::after{content:"";position:absolute;left:50%;bottom:-3px;transform:translateX(-50%);width:4px;height:4px;border-radius:50%}
.sc-days .d.lo::after{background:var(--sev-low)} .sc-days .d.mi::after{background:var(--sev-mid)} .sc-days .d.hi::after{background:var(--sev-high)}
.sc-days .sel{background:var(--deep);color:#fff;border-radius:4px}

/* ============ §2 DREI SICHTEN ============ */
.views-sec{padding-top:60px}   /* reduced from .sec's 90 to centre the hero→§2 divider (see hero) */
.views-sec .sec-head{margin-bottom:6px;max-width:60ch}
.views-sec .sec-head .grad{font-weight:700}

.view-block{display:grid;grid-template-columns:1.02fr .98fr;gap:54px;align-items:center;margin-top:58px}

.view-tab{display:inline-block;font-family:var(--body);font-weight:700;font-size:11.5px;
  letter-spacing:.06em;text-transform:uppercase;color:var(--active)}
.view-copy h3{font-family:var(--disp);font-weight:700;font-size:clamp(22px,2.5vw,27px);
  letter-spacing:-.015em;color:var(--ink);margin:7px 0 0}
.view-copy>p{margin:13px 0 0;font-size:15.5px;color:var(--mut);line-height:1.6;max-width:42ch}
.view-copy .plus{color:var(--active);font-weight:600}
.view-copy .lo-t{color:var(--sev-low-t);font-weight:600}
.view-copy .mi-t{color:var(--sev-mid-t);font-weight:600}
.view-copy .hi-t{color:var(--sev-high-t);font-weight:600}
.view-points{list-style:none;margin:22px 0 0;padding:0;display:grid;gap:12px}
.view-points li{display:flex;gap:10px;align-items:flex-start;font-size:14.5px;color:var(--mut);line-height:1.5}
.view-points .ico{flex:none;color:var(--active);font-size:15px;margin-top:.12em}
.view-points em{font-style:normal;color:var(--ink);font-weight:600}

.view-viz{display:flex;justify-content:center}
.svcard{width:100%;max-width:362px;padding:18px}

/* shared card header (machine + period) */
.sv-head{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:15px}
.sv-mach{font-family:var(--disp);font-weight:700;font-size:14px;color:var(--ink);letter-spacing:-.01em}
.sv-chip{font-size:11.5px;font-weight:500;color:var(--faint);font-style:italic;white-space:nowrap}

/* ---- §2.1 Verteilung card ---- */
/* plain coloured icon (no tint disc/border) — the app's restraint, like the cycle-details hero */
.vd-line{display:flex;align-items:center;gap:10px}
.vd-ico{flex:none;color:var(--active);font-size:19px;line-height:0}
.vd-name{font-family:var(--body);font-weight:600;font-size:14px;color:var(--ink);flex:1}
.vd-tot{font-family:var(--disp);font-weight:900;font-size:21px;color:var(--deep);letter-spacing:-.01em;
  display:inline-flex;align-items:baseline;gap:3px;font-variant-numeric:tabular-nums}
.vd-tot .u{font-family:var(--body);font-size:12px;font-weight:700;color:var(--active)}
.vd-div{height:1px;background:var(--line-2);margin:18px 0}

/* ---- §2.2 Jahresübersicht card ---- */
.vy-card{max-width:384px}
.vy-head{display:flex;align-items:flex-start;justify-content:space-between;gap:10px}
.vy-title{font-family:var(--disp);font-weight:700;font-size:14.5px;color:var(--ink)}
.vy-year{font-size:11px;color:var(--mut);margin-top:1px}
/* metric toggle: rounded-rect segmented control, subtle active highlight, restrained icons
   (matches the app's year-chart toggle — not a pill, no circular active state) */
.vy-toggle{display:inline-flex;gap:3px;background:var(--paper);border:1px solid var(--line);border-radius:var(--r);padding:3px}
.vt{width:34px;height:26px;border-radius:var(--r-sm);display:grid;place-items:center;color:var(--faint)}
.vt svg{width:13px;height:13px;display:block}   /* small, subtle icons with generous padding */
.vt.on{background:#fff;color:var(--active);box-shadow:0 1px 2px rgba(44,65,91,.14)}
.vy-chart{position:relative;height:150px;margin-top:16px;padding-right:30px}
.vy-grid{position:absolute;inset:0 30px 0 0;display:flex;flex-direction:column;justify-content:space-between}
.vy-grid span{display:block;border-top:1px dashed var(--line)}
.vy-yax{position:absolute;right:0;top:-5px;bottom:-5px;width:28px;display:flex;flex-direction:column;
  justify-content:space-between;font-size:8px;color:var(--faint);text-align:right}
.vy-avg{position:absolute;left:0;right:30px;border-top:1.5px dotted var(--active);opacity:.6}
/* wide bars, minimal gap (yearly_*.jpg) */
.vy-bars{position:absolute;inset:0 30px 0 0;display:flex;align-items:flex-end;justify-content:space-between;gap:3px}
.vy-col{flex:1;margin:0 auto;display:flex;flex-direction:column-reverse;border-radius:3px 3px 0 0;overflow:hidden}
.vy-col i{display:block}
.vy-col .lo{background:var(--sev-low)} .vy-col .mi{background:var(--sev-mid)} .vy-col .hi{background:var(--sev-high)}
.vy-xax{display:flex;justify-content:space-between;gap:3px;margin-top:7px;padding-right:30px;font-size:8px;color:var(--faint)}
.vy-xax span{flex:1;text-align:center}
.vy-cap{text-align:center;font-size:9.5px;color:var(--mut);margin-top:7px;font-variant-numeric:tabular-nums}

/* ---- §2.3 Kalender card ---- */
.vc-year{display:inline-flex;align-items:center;gap:7px;font-family:var(--body);font-weight:700;font-size:12px;color:var(--ink)}
.vc-year .ar{color:var(--faint);display:inline-flex}
.vc-year .ar svg{width:13px;height:13px;display:block}
/* month strip = the cycle-details Historie tiles (month + tally·count + flash·kWh icon stats) */
.vc-months{display:grid;grid-template-columns:repeat(4,1fr);gap:7px;margin-bottom:14px}
.vc-m{border:1px solid var(--line);border-radius:var(--r-sm);padding:8px 4px 9px;text-align:center;background:#fff}
.vc-m b{display:block;font-family:var(--body);font-weight:700;font-size:12px;color:var(--ink);margin-bottom:5px}
/* each stat line individually centred, sized like the Historie viz .vh-m-stat (cycle-details).
   NB: own class (NOT .st) — home.css's .st is the rating-star icon (width/height:17px), which
   collapsed these stat boxes when the generic name was reused. */
.vc-m .vc-m-stat{display:flex;align-items:center;justify-content:center;gap:4px;font-size:9.5px;color:var(--mut);white-space:nowrap;font-variant-numeric:tabular-nums}
.vc-m .vc-m-stat+.vc-m-stat{margin-top:3px}
.vc-m .vc-m-stat .ico{font-size:11px;flex:none}
.vc-m.sel{background:var(--deep);border-color:var(--deep)}
.vc-m.sel b{color:#fff}.vc-m.sel .vc-m-stat{color:rgba(255,255,255,.74)}
.vc-m.fut{opacity:.5;border-style:dashed}
.vc-dow{display:grid;grid-template-columns:repeat(7,1fr);font-size:9px;color:var(--faint);text-align:center;margin-bottom:6px}
/* each day = a cell rect: number in the upper part, classification dot(s) in the lower part,
   both contained (selected day = filled deep square) */
.vc-days{display:grid;grid-template-columns:repeat(7,1fr);gap:4px 0;font-size:11px;color:var(--ink);text-align:center}
.vc-days span{height:38px;display:flex;flex-direction:column;align-items:center;padding-top:7px;line-height:1}
.vc-days .o{color:var(--faint);opacity:.5}
.vc-days .d::after{content:"";margin-top:auto;margin-bottom:7px;width:5px;height:5px;border-radius:50%}
.vc-days .d.lo::after{background:var(--sev-low)} .vc-days .d.mi::after{background:var(--sev-mid)} .vc-days .d.hi::after{background:var(--sev-high)}
.vc-days .sel{width:28px;justify-self:center;background:var(--deep);color:#fff;border-radius:8px}
.vc-days .sel i{margin-top:auto;margin-bottom:7px;width:5px;height:5px;border-radius:50%;background:var(--sev-high)}
.vc-detail{margin-top:16px;border-top:1px solid var(--line-2);padding-top:13px}
.vc-day{font-family:var(--disp);font-weight:700;font-size:12.5px;color:var(--ink);margin-bottom:9px}
.vc-entry{border:1px solid var(--line);border-radius:var(--r);padding:10px 12px}
.vc-when{display:flex;align-items:center;gap:8px;font-size:12px;font-weight:600;color:var(--ink);font-variant-numeric:tabular-nums}
.vc-when .ec{width:7px;height:7px;border-radius:50%;flex:none}
.vc-when .ec.lo{background:var(--sev-low)} .vc-when .ec.mi{background:var(--sev-mid)} .vc-when .ec.hi{background:var(--sev-high)}
/* KPIs spaced equally with room around (cycle-details Historie .vh-kpis DNA) */
.vc-kpis{display:flex;justify-content:space-evenly;gap:6px;margin-top:9px;padding-top:9px;
  border-top:1px dashed var(--line);font-size:10.5px;color:var(--mut);white-space:nowrap}
.vc-kpis>span{display:inline-flex;align-items:center;gap:5px}
.vc-kpis .ico{color:var(--active);font-size:12px;flex:none}
.vc-kpis b{color:var(--ink);font-weight:700}

/* ---- §2 closing — Plus history-range callout (plain coloured icon, no tint disc) ---- */
.views-plus{margin:56px auto 0;max-width:680px;display:flex;gap:15px;align-items:flex-start;
  border:1px solid #d6ebff;border-radius:var(--r-lg);padding:18px 20px;
  background:radial-gradient(520px 220px at 12% -20%,rgba(113,174,248,.10),transparent 70%),#fff}
.views-plus>.ico{flex:none;color:var(--active);font-size:26px;margin-top:1px}
.views-plus .t{font-family:var(--disp);font-weight:700;font-size:16px;color:var(--ink);letter-spacing:-.01em}
.views-plus p{margin:4px 0 0;font-size:14px;color:var(--mut);line-height:1.55}
.views-plus .plus{color:var(--active);font-weight:600}

/* ============ §3 VERGLEICHE — "Letzte 30 Tage" comparison card ============ */
/* white band (cycle-details .live-sec/.erk-sec DNA) — sets this section apart from the paper
   sections around it; the --line-2 hairlines double as the section dividers. */
.cmp-sec{background:#fff;border-top:1px solid var(--line-2);border-bottom:1px solid var(--line-2)}
.cmp-sec .sub{max-width:60ch}
.cmp-sec .sub .plus{color:var(--active);font-weight:600}
/* the card = the locked white screen-mirror treatment (gradient border + soft shadow), wider than
   the §2 view cards. Reads as the app's dashboard "Letzte 30 Tage" panel. */
.cmp-card{position:relative;max-width:660px;margin:0 auto;border:1px solid transparent;border-radius:var(--r-lg);
  background:linear-gradient(#fff,#fff) padding-box,
    linear-gradient(168deg,#eaeef4,#dde4ec 55%,#d2dbe6) border-box;
  box-shadow:0 28px 64px -36px rgba(44,65,91,.5),0 2px 8px rgba(44,65,91,.04);padding:22px 26px 24px}
.cmp-head{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:14px}
.cmp-id{display:flex;align-items:center;gap:12px}
.cmp-ico{flex:none;color:var(--active);font-size:22px}
.cmp-title{font-family:var(--disp);font-weight:700;font-size:16px;letter-spacing:-.01em;color:var(--ink)}
.cmp-mach{font-size:12px;color:var(--mut);margin-top:1px}
/* comparison-reference toggle — the segmented-control DNA (.vy-toggle) with text labels */
.cmp-toggle{display:inline-flex;gap:3px;background:var(--paper);border:1px solid var(--line);border-radius:var(--r);padding:3px}
.cmp-toggle .ct{font-family:var(--body);font-weight:600;font-size:12px;color:var(--mut);border-radius:var(--r-sm);
  padding:6px 11px;display:inline-flex;align-items:center;gap:5px;white-space:nowrap}
.cmp-toggle .ct.on{background:#fff;color:var(--active);box-shadow:0 1px 2px rgba(44,65,91,.14)}
/* 3 KPI columns with hairline dividers (live-stat-band / sc-kpis DNA) */
.cmp-kpis{display:grid;grid-template-columns:repeat(3,1fr);margin-top:22px}
.cmp-kpi{text-align:center;padding:2px 8px;position:relative}
.cmp-kpi+.cmp-kpi::before{content:"";position:absolute;left:0;top:8%;bottom:8%;width:1px;background:var(--line)}
.cmp-kpi>.ico{color:var(--active);font-size:19px}
.cmp-kpi .v{font-family:var(--disp);font-weight:900;letter-spacing:-.01em;color:var(--deep);font-size:26px;
  line-height:1;margin-top:9px;display:flex;align-items:baseline;justify-content:center;gap:3px;
  white-space:nowrap;font-variant-numeric:tabular-nums}
.cmp-kpi .u{font-family:var(--body);font-size:12px;font-weight:700;color:var(--active)}
/* delta vs. the chosen reference — app semantics: down (less) reads green */
.cmp-kpi .d{display:inline-flex;align-items:center;gap:4px;margin-top:9px;font-size:12px;font-weight:600;
  color:var(--mut);font-variant-numeric:tabular-nums}
.cmp-kpi .d.down{color:var(--sev-low-t)}
.cmp-kpi .d .tr{display:inline-flex;line-height:0}
.cmp-kpi .d .tr svg{width:14px;height:14px;display:block}

/* ============ §4 CROSS-LINKS — two "what's next" cards (paper; shared with cycle-details) ============ */
.xref-sec .kicker{margin-bottom:22px}
.xref-grid{display:grid;grid-template-columns:1fr 1fr;gap:22px}
.xref{display:block;background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);padding:22px 24px;
  transition:border-color .18s,transform .18s,box-shadow .18s}
.xref:hover{border-color:var(--primary);transform:translateY(-2px);box-shadow:0 22px 48px -26px rgba(44,65,91,.4)}
.xref h3{font-family:var(--disp);font-weight:700;font-size:19px;letter-spacing:-.015em;margin:0;color:var(--ink);
  display:inline-flex;align-items:center;gap:8px}
.xref h3 .ico{color:var(--active);font-size:17px;transition:transform .18s}
.xref:hover h3 .ico{transform:translateX(3px)}
.xref p{margin:9px 0 0;font-size:14px;color:var(--mut);line-height:1.55}

/* ============ §5 SLIM CLOSING CTA — dark sign-off, button-less (shared with cycle-details) ============ */
.cta-slim{position:relative;overflow:hidden;background:var(--deep);color:#fff}
.cta-slim::before{content:"";position:absolute;inset:0;pointer-events:none;
  background:radial-gradient(760px 320px at 50% -45%,rgba(113,174,248,.18),transparent 64%)}
.cta-slim .wrap{position:relative;display:flex;justify-content:center;text-align:center;padding:42px 24px}
.cta-slim h2{font-size:clamp(23px,2.7vw,32px);font-weight:900;color:#fff;margin:0;letter-spacing:-.015em}
.cta-slim .grad{background:linear-gradient(96deg,#8cc0ff,var(--primary));
  -webkit-background-clip:text;background-clip:text;color:transparent}

/* ============ responsive ============ */
@media (max-width:880px){
  /* .hero-grid stacks (home.css). Show the viz first on mobile: order the cascade above the copy. */
  .hero-stats .hero-cascade{order:-1}
  .hero-stats{padding-bottom:20px}
  /* keep the overlapping cascade on mobile (same aspect ratio; partial visibility is fine — the
     three views are shown in full in §2). Centre it above the copy. NOTE: needs an explicit
     width — its cards are all position:absolute, so with auto side-margins the grid item would
     shrink-to-fit to 0 and the 78%-width cards collapse. */
  .hero-cascade{width:min(432px,100%);margin:0 auto 16px}
  /* balance the hero→§2 divider: it sits ~20px under the hero text, but the section below has 60px
     of top padding — add margin so the divider is centred in the gap (≈60px each side). */
  .sec-divider{margin-top:40px}
  /* views: stack; copy first, viz last in every block (flip's DOM has viz first → pull copy up) */
  .view-block{grid-template-columns:1fr;gap:30px;margin-top:46px}
  .view-block.flip .view-copy{order:-1}
  .view-copy>p{max-width:none}
  /* §3: machine label and the reference toggle stack, toggle spans the card width */
  .cmp-head{flex-direction:column;align-items:stretch;gap:12px}
  .cmp-toggle{align-self:flex-start}
  /* §4: cross-link cards stack */
  .xref-grid{grid-template-columns:1fr}
}
@media (max-width:480px){
  .sc-kpi .v{font-size:18px}
  .cmp-kpi{padding:2px 4px}
  .cmp-kpi .v{font-size:22px}
  /* keep both comparison options on ONE row (they wrapped before): a full-width segmented control,
     evenly split, with smaller type + tighter padding so the long labels fit without a line break */
  .cmp-card{padding:20px 16px}
  .cmp-toggle{align-self:stretch}
  .cmp-toggle .ct{flex:1;min-width:0;justify-content:center;font-size:10.5px;padding:6px 6px}
}
