/*
Theme Name: Skarby News
Theme URI: https://news.skarby.app
Author: Skarby
Author URI: https://skarby.app
Description: Новостная тема Skarby — тёмная тема с золотым акцентом, единый фирменный стиль с лендингом skarby.app. Для дублирования новостей из приложения. Шрифты Archivo + Inter (кириллица). Offline-first проект приборного поиска.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: skarby-news
Tags: blog, news, dark, one-column, custom-logo, custom-menu, featured-images, translation-ready, rtl-language-support
*/

/* ============================================================
   Skarby News — WordPress theme
   Brand: dark theme + gold accent (#de9931 / #ecb34d). Do not change.
   Design system ported 1:1 from the skarby.app marketing landing.
   Fonts: Archivo (display) + Inter (text), Cyrillic subsets for ru/uk.
   ============================================================ */

:root {
  --bg:        #0a0908;
  --bg-2:      #000000;
  --panel:     #141210;
  --panel-2:   #1b1714;
  --panel-3:   #221c16;
  --border:    rgba(222, 153, 49, 0.14);
  --border-soft: rgba(255, 255, 255, 0.06);

  --gold:       #de9931;
  --gold-light: #ecb34d;
  --gold-deep:  #c6852b;

  --text:  #f4eee3;
  --muted: #9a948b;
  --dim:   #6f6a63;

  --maxw: 1160px;
  --radius: 18px;
  --radius-lg: 26px;

  --font-display: 'Archivo', system-ui, sans-serif;
  --font-text: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding-top: 72px; /* fixed header offset */
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

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

h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; letter-spacing: -0.01em; }

.accent { color: var(--gold); }
.glow-text { text-shadow: 0 0 38px rgba(222, 153, 49, 0.45); }

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--gold);
  color: #1a1206;
  padding: 10px 16px;
  border-radius: 0 0 10px 0;
  font-weight: 700;
}
.skip-link:focus { left: 0; }

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(10, 9, 8, 0.72);
  border-bottom: 1px solid var(--border-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 30px; width: auto; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.14em;
  line-height: 1;
}
.nav-links { display: flex; align-items: center; gap: 22px; margin: 0; padding: 0; list-style: none; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.18s;
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover,
.nav-links li.current-menu-item > a,
.nav-links a.active { color: var(--text); }
.nav-links li.current-menu-item > a::after,
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.nav-links .menu-item-has-children > a::after { content: ''; } /* keep simple */

/* header search */
.header-search {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 6px 4px 14px;
  margin-left: 8px;
}
.header-search input {
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-text);
  font-size: 13px;
  width: 120px;
  outline: none;
}
.header-search input::placeholder { color: var(--dim); }
.header-search button {
  background: none; border: none; cursor: pointer;
  color: var(--muted); display: flex; padding: 4px;
}
.header-search button:hover { color: var(--gold); }
.header-search svg { width: 16px; height: 16px; }

.nav-toggle { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #1a1206;
  box-shadow: 0 10px 34px -10px rgba(222, 153, 49, 0.6);
}
.btn-primary:hover { box-shadow: 0 14px 40px -8px rgba(222, 153, 49, 0.7); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); }

/* ---------- Kicker / chips ---------- */
.kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  background: rgba(222,153,49,0.06);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}

/* ---------- Page hero (archive / single header) ---------- */
.page-hero {
  position: relative;
  padding: 56px 0 26px;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -120px;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(222,153,49,0.14), transparent 66%);
  pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 {
  font-weight: 900;
  font-size: clamp(32px, 5vw, 58px);
  text-transform: uppercase;
  line-height: 0.98;
}
.page-hero .sub { color: var(--muted); font-size: 17px; margin: 18px 0 0; max-width: 640px; }
.page-hero .updated { color: var(--dim); font-size: 13px; margin-top: 14px; }

/* ---------- Home hero (как на лендинге и в магазине) ---------- */
.n-hero { position: relative; min-height: calc(100vh - 72px); display: flex; align-items: center; padding: 40px 0; overflow: hidden; }
.n-hero::before {
  content: ''; position: absolute; top: -220px; right: -160px;
  width: 820px; height: 820px;
  background: radial-gradient(circle, rgba(222,153,49,0.18), rgba(222,153,49,0.03) 45%, transparent 68%);
  pointer-events: none; z-index: 0;
}
.n-hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.n-hero__inner > * { min-width: 0; }
.n-hero .kicker { margin-bottom: 26px; }
.n-hero__title { font-family: var(--font-display); font-weight: 900; font-size: clamp(40px, 6vw, 74px); line-height: 0.94; text-transform: uppercase; letter-spacing: -0.02em; margin: 0; }
.n-hero__sub { margin: 26px 0 0; font-size: 18px; line-height: 1.6; color: var(--muted); max-width: 460px; }
.n-hero__cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.n-hero__art { position: relative; display: flex; justify-content: center; }
.n-hero__art svg { width: 100%; max-width: 460px; height: auto; }
@media (max-width: 1000px) {
  .n-hero { min-height: 0; padding: 60px 0 30px; }
  .n-hero__inner { grid-template-columns: 1fr; gap: 34px; }
  .n-hero__art { order: -1; max-width: 340px; margin: 0 auto; }
}

/* breadcrumb */
.crumbs { font-size: 12.5px; color: var(--dim); margin-bottom: 14px; letter-spacing: 0.02em; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--gold); }
.crumbs span { margin: 0 7px; opacity: 0.5; }

/* ---------- Posts grid (archive / home) ---------- */
.posts { padding: 30px 0 60px; }
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.post-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, var(--panel), var(--bg));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.post-card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
  background: linear-gradient(165deg, var(--panel-2), var(--bg));
}
.post-card__thumb {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--panel-3);
}
.post-card__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.post-card:hover .post-card__thumb img { transform: scale(1.04); }
.post-card__thumb--empty {
  display: flex; align-items: center; justify-content: center;
  color: var(--dim);
}
.post-card__thumb--empty svg { width: 44px; height: 44px; opacity: 0.5; }
.post-card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.post-card__meta {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--dim);
  margin-bottom: 12px;
}
.post-card__cat {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
}
.post-card__cat:hover { color: var(--gold-light); }
.post-card h2, .post-card h3 {
  font-size: 19px; font-weight: 800; color: var(--text);
  line-height: 1.22;
}
.post-card h2 a:hover, .post-card h3 a:hover { color: var(--gold-light); }
.post-card__excerpt { color: var(--muted); font-size: 14px; line-height: 1.55; margin: 10px 0 0; }
.post-card__more {
  margin-top: auto; padding-top: 16px;
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--gold); font-weight: 600; font-size: 13.5px;
}
.post-card__more svg { width: 15px; height: 15px; transition: transform 0.18s; }
.post-card:hover .post-card__more svg { transform: translateX(3px); }

/* featured (first) post spanning full width */
.post-card--featured {
  grid-column: 1 / -1;
  flex-direction: row;
}
.post-card--featured .post-card__thumb {
  flex: 0 0 54%;
  aspect-ratio: auto;
}
.post-card--featured .post-card__body { justify-content: center; padding: 34px 38px; }
.post-card--featured h2 { font-size: clamp(24px, 3vw, 34px); text-transform: uppercase; }
.post-card--featured .post-card__excerpt { font-size: 15.5px; margin-top: 14px; }

/* ---------- Single post ---------- */
.article { padding: 10px 0 70px; }
.article-body {
  max-width: 760px;
  margin: 0 auto;
}
.article-hero-img {
  max-width: var(--maxw);
  margin: 0 auto 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
}
.article-hero-img img { width: 100%; display: block; }
.article-meta {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  font-size: 13.5px; color: var(--dim);
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border-soft);
}
.article-meta .author { color: var(--text); font-weight: 600; }
.article-meta .dot { opacity: 0.4; }
.article-body p,
.article-body li { color: #d8d2c8; font-size: 17px; line-height: 1.75; }
.article-body p { margin: 0 0 20px; }
.article-body h2 { font-size: 26px; font-weight: 800; color: var(--text); margin: 42px 0 14px; }
.article-body h3 { font-size: 21px; font-weight: 700; color: var(--text); margin: 32px 0 12px; }
.article-body a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(222,153,49,0.4); }
.article-body a:hover { color: var(--gold-light); }
.article-body img { border-radius: var(--radius); margin: 26px 0; }
.article-body ul, .article-body ol { padding-left: 22px; margin: 0 0 20px; }
.article-body li { margin-bottom: 8px; }
.article-body blockquote {
  border-left: 3px solid var(--gold);
  background: rgba(222,153,49,0.05);
  margin: 26px 0;
  padding: 16px 22px;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.article-body blockquote p { margin: 0; color: var(--text); font-size: 18px; }
.article-body pre {
  background: #0c0a08;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 18px 20px;
  overflow-x: auto;
  font-size: 14px;
}
.article-body code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.9em; }
.article-body :not(pre) > code {
  background: var(--panel-2);
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  padding: 2px 6px;
}
.article-body figure { margin: 26px 0; }
.article-body figcaption { color: var(--dim); font-size: 13px; text-align: center; margin-top: 8px; }
.article-body table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 15px; }
.article-body th, .article-body td { border: 1px solid var(--border-soft); padding: 10px 14px; text-align: left; }
.article-body th { background: var(--panel-2); color: var(--text); }

.wp-caption { max-width: 100%; }
.alignleft { float: left; margin: 6px 24px 16px 0; }
.alignright { float: right; margin: 6px 0 16px 24px; }
.aligncenter { margin-left: auto; margin-right: auto; }
.wp-block-image img { border-radius: var(--radius); }

/* tags + share */
.article-tags { margin: 34px 0 0; display: flex; flex-wrap: wrap; gap: 9px; align-items: center; }
.article-tags .tag {
  font-size: 12px; color: var(--muted);
  border: 1px solid var(--border-soft);
  background: var(--panel);
  padding: 6px 13px; border-radius: 999px;
  transition: color 0.16s, border-color 0.16s;
}
.article-tags .tag:hover { color: var(--gold); border-color: var(--border); }

.article-nav {
  max-width: 760px; margin: 46px auto 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.article-nav a {
  border: 1px solid var(--border-soft);
  background: var(--panel);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: border-color 0.2s, background 0.2s;
}
.article-nav a:hover { border-color: var(--border); background: var(--panel-2); }
.article-nav .lbl { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dim); font-weight: 700; }
.article-nav .ttl { color: var(--text); font-weight: 600; font-size: 14.5px; margin-top: 8px; line-height: 1.35; }
.article-nav .next { text-align: right; }

/* CTA band inside article footer (download app) */
.app-cta { padding: 20px 0 60px; }
.app-cta-band {
  max-width: 760px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 36px;
  background:
    radial-gradient(120% 160% at 100% 0%, rgba(222,153,49,0.12), transparent 55%),
    linear-gradient(180deg, var(--panel-2), var(--panel));
}
.app-cta-band h3 { font-family: var(--font-display); font-weight: 800; font-size: 22px; text-transform: uppercase; color: var(--text); }
.app-cta-band p { margin: 6px 0 0; color: var(--muted); font-size: 14.5px; max-width: 380px; }

/* ---------- Pagination ---------- */
.pagination { display: flex; justify-content: center; gap: 8px; margin: 20px 0 0; flex-wrap: wrap; }
.pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 42px; height: 42px; padding: 0 14px;
  border: 1px solid var(--border-soft);
  background: var(--panel);
  border-radius: 12px;
  color: var(--muted);
  font-weight: 600; font-size: 14px;
  transition: all 0.16s;
}
.pagination a.page-numbers:hover { color: var(--text); border-color: var(--border); }
.pagination .page-numbers.current {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #1a1206; border-color: transparent;
}
.pagination .page-numbers.dots { border: none; background: none; }

/* ---------- Empty / 404 ---------- */
.empty-state { text-align: center; padding: 60px 0 80px; }
.empty-state .big { font-family: var(--font-display); font-weight: 900; font-size: clamp(70px, 16vw, 150px); color: var(--gold); line-height: 1; }
.empty-state h2 { font-size: 26px; text-transform: uppercase; margin: 16px 0 0; }
.empty-state p { color: var(--muted); margin: 14px 0 26px; }

/* ---------- Comments ---------- */
.comments-area { max-width: 760px; margin: 50px auto 0; padding-top: 34px; border-top: 1px solid var(--border-soft); }
.comments-area h2 { font-size: 22px; text-transform: uppercase; margin-bottom: 22px; }
.comment-list { list-style: none; margin: 0; padding: 0; }
.comment-list li { margin-bottom: 20px; }
.comment-body {
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.comment-meta { font-size: 12.5px; color: var(--dim); margin-bottom: 8px; }
.comment-author .fn { color: var(--text); font-weight: 600; font-style: normal; }
.comment-content p { color: var(--muted); font-size: 15px; margin: 0 0 10px; }
.comment-reply-link { color: var(--gold); font-size: 13px; font-weight: 600; }
.comment-respond { margin-top: 30px; }
.comment-respond input[type=text],
.comment-respond input[type=email],
.comment-respond input[type=url],
.comment-respond textarea {
  width: 100%; padding: 13px 15px; margin-bottom: 12px;
  border-radius: 12px; border: 1px solid var(--border-soft);
  background: #0c0a08; color: var(--text);
  font-family: var(--font-text); font-size: 15px;
}
.comment-respond textarea:focus,
.comment-respond input:focus { outline: none; border-color: var(--gold); }
.comment-respond .submit {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #1a1206; border: none; cursor: pointer;
  font-family: var(--font-text); font-weight: 700; font-size: 15px;
  padding: 14px 28px; border-radius: 999px;
}

/* ---------- Search form ---------- */
.search-form { display: flex; gap: 10px; max-width: 520px; }
.search-form input[type=search] {
  flex: 1; padding: 13px 16px;
  border-radius: 12px; border: 1px solid var(--border-soft);
  background: #0c0a08; color: var(--text);
  font-family: var(--font-text); font-size: 15px;
}
.search-form input[type=search]:focus { outline: none; border-color: var(--gold); }
.search-form button {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #1a1206; border: none; cursor: pointer;
  font-weight: 700; padding: 0 22px; border-radius: 12px;
}

/* ---------- Category chips row ---------- */
.cat-filter { display: flex; flex-wrap: wrap; gap: 9px; margin: 4px 0 30px; }
.cat-filter a {
  font-size: 13px; font-weight: 500; color: var(--muted);
  border: 1px solid var(--border-soft); background: var(--panel);
  padding: 8px 16px; border-radius: 999px;
  transition: all 0.16s;
}
.cat-filter a:hover { color: var(--text); border-color: var(--border); }
.cat-filter a.active {
  color: #1a1206; background: var(--gold); border-color: transparent; font-weight: 600;
}

/* ---------- Footer (from landing) ---------- */
.site-footer {
  border-top: 1px solid var(--border-soft);
  background: var(--bg-2);
  padding: 56px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 30px;
}
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: 14px; max-width: 280px; }
.footer-col h4 {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--dim); margin: 0 0 16px; font-weight: 700; font-family: var(--font-text);
}
.footer-col a, .footer-col span {
  display: block; color: var(--muted); font-size: 14px; margin-bottom: 11px;
  transition: color 0.16s;
}
.footer-col a:hover { color: var(--gold); }
.socials { display: flex; gap: 12px; margin-top: 4px; }
.social {
  width: 38px; height: 38px; border-radius: 11px;
  border: 1px solid var(--border-soft); background: var(--panel);
  color: var(--muted); display: flex; align-items: center; justify-content: center;
  transition: color 0.18s, border-color 0.18s, transform 0.15s;
}
.social:hover { color: var(--gold); border-color: var(--border); transform: translateY(-2px); }
.social svg { width: 18px; height: 18px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 46px; padding-top: 24px;
  border-top: 1px solid var(--border-soft);
  font-size: 13px; color: var(--dim);
  flex-wrap: wrap; gap: 10px;
}

/* ---------- Reveal anim ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

[hidden] { display: none !important; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .header-search { display: none; }
  .nav-links {
    display: none;
  }
  .nav-links.open {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 40;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 26px;
    background: var(--bg);
    padding: 80px 24px 100px;
    height: 100vh;
  }
  .nav-links.open a { padding: 2px 0; font-size: 21px; }
  .nav-links.open li.current-menu-item > a { color: var(--gold); }
  .nav-links.open li.current-menu-item > a::after { display: none; }
  .site-header .brand { position: relative; z-index: 50; }
  .nav-toggle {
    display: inline-flex; position: relative; z-index: 50;
    background: none; border: none; cursor: pointer;
    color: var(--text); padding: 8px;
  }
  .nav-toggle svg { width: 24px; height: 24px; }
}
@media (max-width: 900px) {
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .post-card--featured { flex-direction: column; }
  .post-card--featured .post-card__thumb { flex: none; aspect-ratio: 16 / 9; width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .article-nav { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .posts-grid { grid-template-columns: 1fr; }
  .article-body p, .article-body li { font-size: 16px; }
  .app-cta-band { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 36px; }
  .footer-brand .brand { justify-content: center; }
  .footer-brand p { max-width: none; margin: 0 auto; }
  .socials { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
}
@media (max-width: 460px) {
  .wrap { padding: 0 18px; }
}
