@font-face {
  font-family: Circe;
  src: url("/zh-content/uploads/gsf-fonts/circe/Circe-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Circe;
  src: url("/zh-content/uploads/gsf-fonts/circe/Circe-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Circe;
  src: url("/zh-content/uploads/gsf-fonts/circe/Circe-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f5f5f4;
  --ink: #44403c;
  --heading: #171717;
  --muted: #78716c;
  --line: rgba(23, 23, 23, .08);
  --brand: #0ec6d5;
  --footer: #0a0a0a;
  --footer-muted: #a3a3a3;
  --shadow: 0 1px 2px rgba(15, 23, 42, .04), 0 8px 24px rgba(15, 23, 42, .05);
  --container: 1224px;
  --gutter: clamp(20px, 4.2vw, 40px);
  --section: clamp(48px, 6.5vw, 88px);
  --paper: #fff;
  --radius: 16px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; }
html { overflow-x: clip; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Circe, Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}
body.is-home,
body.is-catalog,
body.is-devs,
body.is-blog,
body.is-page {
  background: var(--bg);
}
a { color: var(--heading); text-decoration: none; }
a:hover { color: var(--brand); }
img { max-width: 100%; height: auto; }
h1, h2, h3, h4 {
  color: var(--heading);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin: 0 0 1rem;
}
h1 { font-size: clamp(1.875rem, 3.2vw, 2.75rem); letter-spacing: -.03em; }
h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
h3 { font-size: 1.5rem; }
p { margin-top: 0; margin-bottom: 1rem; }

.wrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, .72);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
}
.header-inner {
  display: flex;
  align-items: center;
  min-height: 72px;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  padding: 8px 0;
  margin-right: 24px;
  flex-shrink: 0;
}
.site-logo {
  display: block;
  max-height: 40px;
  width: auto;
}
.menu-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  padding: 10px 9px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: #171717;
  border-radius: 999px;
}
.site-menu { flex: 1 1 auto; }
.main-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-menu > li {
  position: relative;
  margin: 0 0 0 32px;
}
.main-menu > li:first-child { margin-left: 0; }
.main-menu > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 24px 0;
  color: #171717;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}
.main-menu > li > a:hover,
.main-menu > li.is-current > a {
  color: var(--brand);
}
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  opacity: .55;
}
.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  z-index: 30;
}
.has-children:hover > .sub-menu,
.has-children:focus-within > .sub-menu {
  display: block;
}
.sub-menu a {
  display: block;
  padding: 8px 18px;
  color: #171717;
  font-size: 15px;
}
.sub-menu a:hover { color: var(--brand); background: #fafafa; }

.header-tools {
  margin-left: auto;
  display: flex;
  align-items: center;
  padding-left: 24px;
}
.telegram {
  display: flex;
  width: 24px;
  height: 24px;
}
.telegram img { display: block; width: 24px; height: 24px; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.site-search {
  display: flex;
  align-items: stretch;
  margin-right: 16px;
  height: 40px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
}
.site-search input {
  width: 152px;
  height: 40px;
  border: 0;
  padding: 0 14px;
  font: inherit;
  color: var(--heading);
  background: transparent;
}
.site-search input:focus { outline: none; }
.site-search button {
  height: 40px;
  border: 0;
  background: var(--brand);
  color: #fff;
  padding: 0 16px;
  cursor: pointer;
  font: inherit;
}
.site-search-mobile { display: none; }

.page-intro {
  margin: 0 0 32px;
  max-width: 40rem;
}
.page-intro h1 { margin-bottom: 12px; }
.page-intro .lead { margin-bottom: 0; }
.page-prose {
  max-width: 40rem;
  overflow-wrap: break-word;
  background: transparent;
  padding: 0 0 8px;
  box-shadow: none;
}
.page-prose a { color: var(--brand); }
.page-prose ul { padding-left: 1.2em; }
.article-body.page-prose {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
}
.lead-box {
  position: relative;
  margin: 32px 0 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  max-width: 560px;
}
.lead-form p { margin-bottom: 12px; }
.lead-form label {
  display: block;
  margin-bottom: 4px;
  color: var(--heading);
}
.lead-form input[type="text"],
.lead-form input[type="tel"],
.lead-form input[type="email"],
.lead-form input[type="search"],
.lead-form textarea {
  width: 100%;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
  font: inherit;
  color: var(--heading);
  background: #fff;
}
.lead-form button {
  background: var(--brand);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 10px 20px;
  cursor: pointer;
  font: inherit;
}
.lead-hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}
.lead-ok { color: var(--heading); }
.lead-errors {
  color: #b00020;
  padding-left: 1.2em;
}
.lead-consent label {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.search-page-form { max-width: 480px; }

.site-main {
  width: 100%;
  padding: 0 0 96px;
  min-height: 50vh;
}
.site-main > .wrap > *:first-child { margin-top: 48px; }
.is-home .site-main > .wrap > .hero { margin-top: 16px; }
.note {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 15px;
  margin: 0 0 28px;
}

.hero {
  background: none;
  color: inherit;
  margin: 0 0 var(--section);
  padding: clamp(28px, 5vw, 64px) 0 8px;
}
.hero-kicker {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-kicker::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--brand);
  vertical-align: .08em;
}
.hero h1 {
  color: var(--heading);
  margin: 0 0 16px;
  font-size: clamp(2.125rem, 5.2vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -.035em;
  font-weight: 400;
  max-width: 18em;
}
.hero p {
  margin: 0;
  max-width: 36rem;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 28px 0 0;
}
.hero-actions .dev-btn {
  padding: 12px 20px;
  font-size: 15px;
}

.home-section { margin: 0 0 var(--section); }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0 0 28px;
}
.section-head h2 { margin: 0; }
.home-block {
  background: transparent;
  padding: 0;
  margin: 0 0 48px;
  box-shadow: none;
}
.home-block-mint,
.home-block-sand { background: transparent; }
.home-more { color: var(--brand); font-size: 15px; }
.muted { color: var(--muted); }
.lead {
  max-width: 720px;
  font-size: 17px;
  margin: 0 0 28px;
}
.old { font-size: 15px; }

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 28px;
  margin: 0 0 8px;
  align-items: stretch;
  justify-content: start;
}
.card {
  background: #fff;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.card:hover { color: inherit; }
.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  background: #ecebe8;
  margin-bottom: 12px;
}
.card .body,
.plain {
  padding: 0;
  color: var(--heading);
  font-size: 16px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-width: 0;
}
.card .body .muted { margin-top: 4px; font-size: 14px; }
.card-dev {
  padding: 16px 18px 18px;
  box-shadow: var(--shadow);
}
.card-dev strong {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 400;
  font-size: 18px;
  color: var(--heading);
  letter-spacing: -.02em;
  line-height: 1.3;
  min-height: 2.6em;
}

.quotes { display: grid; gap: 12px; }
.quote {
  background: #fafafa;
  border-left: 3px solid var(--brand);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 12px 16px;
  margin: 0;
}

.site-footer {
  background: var(--footer);
  color: #fff;
  padding: 56px 0 40px;
  text-align: center;
}
.footer-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 32px;
  margin-bottom: 32px;
}
.footer-menu a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
}
.footer-menu a:hover { color: #fff; opacity: .75; }
.footer-heading {
  color: #fff;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -.02em;
  margin: 0 0 20px;
  line-height: 1.2;
}
.footer-disclaimer {
  margin: 0 0 16px;
  color: #fff;
}
.footer-meta {
  margin: 0;
  color: var(--footer-muted);
  font-size: 14px;
}
.footer-meta a { color: var(--footer-muted); }
.footer-meta a:hover { color: #fff; }

.crumb { font-size: 14px; margin: 0 0 18px; }
.crumb a { color: var(--muted); }
.dev-hero {
  margin: 0 0 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.dev-hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.dev-hero h1 { margin: 0; }
.dev-facts {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.dev-fact {
  display: inline-block;
  background: #171717;
  color: #fff;
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 999px;
}
.dev-fact-light {
  background: #f4f4f3;
  color: #171717;
}
.dev-btn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 999px;
}
.dev-btn:hover { color: #fff; opacity: .85; }
.dev-btn-ghost {
  background: #fff;
  color: var(--heading);
  border: 1px solid var(--line);
}
.dev-btn-ghost:hover { color: var(--brand); opacity: 1; }
.dev-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}
.dev-chips li {
  background: #f4f4f3;
  color: #171717;
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 999px;
}
.dev-verdict {
  margin: 20px 0 0;
  max-width: 820px;
  padding: 20px 24px;
  background: #f7f7f6;
  border-left: 3px solid var(--brand);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.dev-verdict h2,
.dev-verdict h3 {
  font-size: 1.1rem;
  margin: 0 0 8px;
}
.dev-verdict p {
  margin: 0;
  color: var(--heading);
  font-size: 18px;
  line-height: 1.45;
}
.review-tone {
  margin: 12px 0 0;
  color: var(--muted, #5c5c5a);
  font-size: 15px;
  line-height: 1.4;
}
.review-box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 28px;
}
.review-box:has(.is-mid) {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.review-stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 132px;
}
.review-stat.is-plus { border-top: 3px solid var(--brand); }
.review-stat.is-minus { border-top: 3px solid #171717; }
.review-stat.is-mid { border-top: 3px solid #8a8a88; }
.review-stat-ico {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.review-stat.is-plus .review-stat-ico {
  color: var(--brand);
  background: #e6fafb;
}
.review-stat.is-minus .review-stat-ico {
  color: #171717;
  background: #f3f3f2;
}
.review-stat.is-mid .review-stat-ico {
  color: #5c5c5a;
  background: #f3f3f2;
}
.review-stat-n {
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--heading);
}
.review-stat-l {
  font-size: 16px;
  color: var(--muted, #5c5c5a);
}
.review-box-note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 15px;
  color: var(--muted, #5c5c5a);
}
.review-sources {
  grid-column: 1 / -1;
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.review-source {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  color: inherit;
  text-decoration: none;
  min-height: 64px;
}
a.review-source:hover { border-color: #cfcfc9; }
.review-source-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  overflow: hidden;
  display: block;
}
.review-source-mark svg {
  width: 40px;
  height: 40px;
  display: block;
}
.review-source img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  object-fit: contain;
  background: #f4f4f3;
  display: block;
}
.review-source-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.review-source-body strong {
  font-size: 16px;
  line-height: 1.2;
}
.review-source-body span {
  font-size: 14px;
  color: var(--muted, #5c5c5a);
}
.dev-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 0 0 40px;
}
.dev-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 28px 12px;
}
.dev-panel h2,
.dev-panel h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(1.55rem, 2.2vw, 1.9rem);
  margin: 0 0 20px;
  line-height: 1.2;
}
.dev-panel-ico {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dev-panel-plus .dev-panel-ico {
  color: var(--brand);
  background: #e6fafb;
}
.dev-panel-risk .dev-panel-ico {
  color: #171717;
  background: #f3f3f2;
}
.dev-panel-plus { border-top: 3px solid var(--brand); }
.dev-panel-risk { border-top: 3px solid #171717; }
.dev-panel ul { list-style: none; margin: 0; padding: 0; }
.dev-panel li {
  position: relative;
  padding: 0 0 22px 44px;
  color: var(--heading);
  font-size: 18px;
  line-height: 1.45;
}
.dev-panel-plus li:before,
.dev-panel-risk li:before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
}
.dev-panel-plus li:before {
  content: "+";
  color: var(--brand);
  background: #e6fafb;
}
.dev-panel-risk li:before {
  content: "–";
  color: #171717;
  background: #f3f3f2;
}
.dev-section { margin: 0 0 40px; }
.dev-section > h2 { margin-bottom: 16px; }
.prop-insight .dev-verdict { margin-top: 0; }
.prop-insight .dev-split { margin: 24px 0 16px; }
.prop-insight .muted { margin: 0 0 10px; }
.dev-objects-head h1,
.dev-objects-head h2 { margin-bottom: 0; }
.dev-objects-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.dev-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.prop-cell .dev-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.prop-cell .dev-filter button {
  width: auto;
  text-align: center;
}
.dev-filter button {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--heading);
  padding: 8px 14px;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
  border-radius: 999px;
}
.dev-filter button.is-on {
  background: #171717;
  color: #fff;
  border-color: #171717;
}

.prop-tools {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 20px;
  min-width: 0;
  width: 100%;
}
.prop-bar {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 24px;
  min-width: 0;
  width: 100%;
}
.prop-bar-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  width: 100%;
}
.prop-pills {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  width: 100%;
}
.prop-cell {
  background: transparent;
  padding: 0;
  border: 0;
  box-shadow: none;
  min-width: 0;
}
.prop-label {
  display: block;
  color: var(--heading);
  margin: 0;
  font-size: 14px;
  white-space: nowrap;
}
.prop-price-fields {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  min-width: 0;
}
.prop-price-fields input[type="text"] {
  width: 88px;
  min-width: 0;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  font: inherit;
  color: var(--heading);
  background: #fff;
}
.prop-price-fields input[type="text"]::placeholder {
  color: var(--muted);
}
.prop-price-sep { color: var(--muted); flex: 0 0 auto; }
.prop-check {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  font-size: 14px;
  margin-left: auto;
}
.prop-tools-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.prop-reset {
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--brand);
  padding: 0 4px;
  font: inherit;
  cursor: pointer;
}
.prop-shown { margin: 0; }
.dev-table-wrap {
  overflow-x: auto;
  overflow-y: visible;
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 20px 10px 12px;
  box-shadow: var(--shadow);
}
.dev-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.dev-table th,
.dev-table td {
  text-align: left;
  padding: 14px 10px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.dev-table th.dev-col-map,
.dev-table td.dev-col-map,
.dev-table th:last-child,
.dev-table td:last-child {
  width: 1%;
  min-width: 6.5em;
  white-space: nowrap;
  padding-right: 8px;
  overflow: visible;
}
.dev-table th {
  font-weight: 400;
  color: var(--muted);
  font-size: 13px;
}
.dev-table td:first-child { color: var(--heading); }
.dev-table a { color: var(--heading); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: #d6d3d1; }
.dev-table a:hover { color: var(--brand); text-decoration-color: var(--brand); }
.dev-section .muted { margin: 0 0 14px; max-width: 720px; }
.dev-st {
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  white-space: nowrap;
  border-radius: 999px;
  line-height: 1.4;
}
.dev-st-build { background: #ecebe8; color: #171717; }
.dev-st-ready { background: #f4f4f3; color: #44403c; }
.dev-st-stop { background: #fff; color: #171717; border: 1px solid #d6d3d1; }
.dev-note {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}
.dev-price {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.dev-price-main {
  margin: 0 0 16px;
  font-size: 22px;
  color: var(--heading);
}
.dev-price-rooms {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  max-width: 420px;
}
.dev-price-rooms li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  color: var(--heading);
}
.dev-price-rooms li span:last-child {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.dev-checks {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 820px;
}
.dev-checks li {
  position: relative;
  padding: 0 0 12px 22px;
  color: var(--heading);
}
.dev-checks li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--brand);
}
.dev-legal {
  margin: 0 0 40px;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
}
.dev-legal summary {
  cursor: pointer;
  color: var(--heading);
  font-size: 16px;
}
.dev-legal ul {
  margin: 12px 0 8px;
  padding-left: 18px;
  color: var(--heading);
}
.dev-legal-note {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}
.dev-card-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 10px;
  font-size: 14px;
  color: var(--muted);
}
.dev-card-verdict {
  margin: 10px 0 0;
  font-size: 14px;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dev-chips a {
  color: inherit;
  text-decoration: none;
}
.dev-chips a:hover { color: var(--brand); }
.dev-hero-name {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.dev-hero-name h1 { margin: 0; }
.dev-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
  flex-shrink: 0;
}
.dev-logo-empty {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f4f3;
  color: #171717;
  font-size: 20px;
  border-radius: 12px;
  flex-shrink: 0;
}
.jk-cell {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.jk-mark,
.card-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
  background: #fff;
  border-radius: 8px;
}
.card-logo { width: 36px; height: 36px; }
.card img.card-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  margin: 0;
  background: #fff;
}
.card-head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 6px;
}
.card-head strong { margin: 0; }
.card img.prop-thumb {
  width: calc(100% + 36px);
  max-width: none;
  height: 168px;
  object-fit: cover;
  margin: -16px -18px 12px;
  background: #ecebe8;
}
.prop-photo {
  display: block;
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  margin: 8px 0 16px;
  background: #ecebe8;
  border-radius: var(--radius);
}
.obj-map {
  width: 100%;
  height: 340px;
  margin: 0 0 12px;
  background: #ecebe8;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.map-link {
  white-space: nowrap;
  display: inline-block;
}
.map-pop { font-size: 14px; line-height: 1.4; }
.dev-list { display: grid; gap: 0; margin: 0 0 24px; }
.dev-row {
  display: grid;
  grid-template-columns: 56px minmax(140px, 220px) minmax(160px, 220px) 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 16px;
  margin-bottom: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: inherit;
}
.dev-row:hover { color: inherit; }
.dev-row strong { color: var(--heading); font-size: 18px; font-weight: 400; letter-spacing: -.02em; }
.dev-row-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.dev-row-meta span {
  font-size: 13px;
  background: #f4f4f3;
  color: #171717;
  padding: 4px 10px;
  border-radius: 999px;
}
.dev-row-meta .is-build { background: #171717; color: #fff; }
.dev-row p {
  margin: 0;
  color: var(--heading);
  font-size: 15px;
}

@media (max-width: 991px) {
  .header-inner { height: auto; min-height: 64px; flex-wrap: wrap; }
  .brand { order: 1; margin-right: 0; }
  .header-tools { order: 2; margin-left: auto; padding-left: 0; }
  .site-search-desk { display: none; }
  .site-search-mobile {
    display: flex;
    margin: 12px 0 16px;
    padding: 0;
    width: 100%;
  }
  .site-search-mobile input { flex: 1 1 auto; width: auto; }
  .menu-toggle { display: block; order: 3; margin-left: 12px; }
  .site-menu {
    display: none;
    order: 4;
    flex: 1 0 100%;
    background: rgba(255, 255, 255, .96);
    border-top: 1px solid var(--line);
  }
  .site-header.is-open .site-menu { display: block; }
  .main-menu { flex-direction: column; align-items: stretch; }
  .main-menu > li {
    margin: 0;
    border-bottom: 1px solid var(--line);
  }
  .main-menu > li > a {
    padding: 12px 0;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 400;
  }
  .sub-menu {
    position: static;
    display: block;
    box-shadow: none;
    background: #f4f4f3;
    padding: 0;
  }
  .sub-menu a {
    padding: .5rem 1.5rem;
    text-transform: none;
  }
  .card img { height: 150px; }
  .card img.card-logo { width: 36px; height: 36px; }
  .site-footer { padding: 40px 0 28px; }
  .dev-split { grid-template-columns: 1fr; }
  .review-box,
  .review-box:has(.is-mid) { grid-template-columns: 1fr; }
  .review-sources { grid-template-columns: 1fr; }
  .review-stat { min-height: 0; }
  .dev-hero-top { flex-direction: column; }
  .dev-row { grid-template-columns: 48px 1fr; gap: 8px 12px; }
  .dev-row .dev-row-meta { grid-column: 1 / -1; }
  .dev-row p { grid-column: 1 / -1; }
  .dev-verdict p { font-size: 16px; }
  .dev-col-metro { display: none; }
  .obj-map { height: 260px; }
  .prop-check { margin-left: 0; }
  .hero { margin-left: 0; margin-right: 0; padding-top: 20px; }
  .hero h1 { max-width: none; }
  .article-body.page-prose { padding: 20px 16px; }
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .site-main { padding-bottom: 72px; }
  .site-main > .wrap > *:first-child { margin-top: 28px; }
}

.blog-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 8px 0 28px;
  align-items: stretch;
}
.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  min-width: 0;
}
.blog-card:hover {
  color: inherit;
}
.blog-card:hover strong { color: var(--brand); }
.blog-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  background: #ecebe8;
}
.blog-card .body {
  padding: 18px 20px 20px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.blog-card time {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
}
.blog-card strong {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--heading);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -.02em;
  overflow-wrap: break-word;
  min-height: 3.6em;
  line-height: 1.3;
}
.blog-card p {
  margin: 8px 0 0;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 4.65em;
  line-height: 1.55;
}
.blog-card:has(img) {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: stretch;
}
.blog-card:has(img) img {
  height: 100%;
  min-height: 140px;
}
.blog-pages {
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 8px 0 32px;
}
.blog-pages a { color: var(--brand); }
.article-body h1 { overflow-wrap: break-word; }
.article-cover,
.article-body img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 12px 0 20px;
  border-radius: var(--radius-sm);
}
@media (min-width: 800px) {
  .blog-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 799px) {
  .blog-card:has(img) { grid-template-columns: 1fr; }
  .blog-card:has(img) img { height: 160px; }
}

@media (max-width: 480px) {
  .prop-bar { padding: 16px; }
  .prop-price-fields { flex: 1 1 100%; }
  .prop-price-fields input[type="text"] { flex: 1 1 auto; width: auto; }
  .grid { grid-template-columns: 1fr; }
  .prop-check { margin-left: 0; }
}

/* Расчёт платежа на карточке ЖК: поля переносятся, чтобы на телефоне не было горизонтального скролла. */
.calc-fields { display: flex; flex-wrap: wrap; gap: 12px; margin: 12px 0; }
.calc-fields label { display: flex; flex-direction: column; gap: 4px; flex: 1 1 140px; min-width: 130px; font-size: 13px; color: #5b6472; }
.calc-fields input { width: 100%; box-sizing: border-box; }
