:root {
  --sk-brand-50: #eaf8fa;
  --sk-brand-100: #d5f1f5;
  --sk-brand-500: #0e8fa3;
  --sk-brand-600: #08798c;
  --sk-brand-700: #075e6d;
  --sk-accent-50: #fff4e8;
  --sk-accent-500: #ff7a1a;
  --sk-accent-600: #ea6508;
  --sk-success-50: #eafbf1;
  --sk-success-500: #16a34a;
  --sk-warning-50: #fff7e6;
  --sk-warning-500: #f59e0b;
  --sk-text-900: #0f172a;
  --sk-text-700: #334155;
  --sk-text-500: #64748b;
  --sk-text-400: #94a3b8;
  --sk-bg: #f6f9fc;
  --sk-surface: #ffffff;
  --sk-surface-soft: #f8fbfd;
  --sk-text: var(--sk-text-700);
  --sk-heading: var(--sk-text-900);
  --sk-muted: var(--sk-text-500);
  --sk-meta: var(--sk-text-400);
  --sk-line: #e2e8f0;
  --sk-line-strong: #cbd5e1;
  --sk-line-soft: #edf2f7;
  --sk-brand: var(--sk-brand-600);
  --sk-brand-dark: var(--sk-brand-700);
  --sk-brand-soft: var(--sk-brand-50);
  --sk-blue: #2563eb;
  --sk-blue-soft: #eaf1ff;
  --sk-amber: var(--sk-accent-500);
  --sk-amber-dark: var(--sk-accent-600);
  --sk-amber-soft: var(--sk-accent-50);
  --sk-red: #b42318;
  --sk-shadow-xs: 0 1px 2px rgba(15, 23, 42, .04);
  --sk-shadow-sm: 0 2px 8px rgba(15, 23, 42, .04);
  --sk-shadow: 0 8px 24px rgba(15, 23, 42, .06);
  --sk-shadow-lg: 0 16px 40px rgba(15, 23, 42, .10);
  --sk-radius-sm: 8px;
  --sk-radius-md: 12px;
  --sk-radius-lg: 16px;
  --sk-radius-xl: 20px;
  --sk-radius: var(--sk-radius-sm);
  --sk-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--sk-bg);
  color: var(--sk-text);
  font-family: var(--sk-font);
  font-size: 15px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--sk-brand);
  text-decoration: none;
  transition: color .16s ease, background-color .16s ease, border-color .16s ease, transform .16s ease;
}

a:hover {
  color: var(--sk-brand-dark);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--sk-heading);
  line-height: 1.28;
  font-weight: 750;
}

p {
  margin: 0;
}

::selection {
  background: var(--sk-brand);
  color: #fff;
}

.sk-wrap {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.sk-page {
  padding: 34px 0 64px;
}

.sk-page--tight {
  padding-top: 42px;
}

.sk-page--white {
  background: #fff;
  border-top: 1px solid var(--sk-line);
  border-bottom: 1px solid var(--sk-line);
}

.sk-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 26px;
  align-items: start;
}

.sk-layout--product {
  grid-template-columns: 692px 280px;
  gap: 28px;
}

.sk-layout--download {
  display: block;
  width: min(980px, calc(100% - 48px));
}

.sk-main-column {
  min-width: 0;
}

.sk-grid {
  display: grid;
  gap: 18px;
}

.sk-grid--cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sk-grid--news {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sk-list {
  display: grid;
  gap: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(226, 232, 240, .9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(15, 23, 42, .07);
}

.site-header__inner {
  width: min(1180px, calc(100% - 48px));
  height: 66px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: var(--sk-heading);
}

.site-logo__mark {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: var(--sk-heading);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.site-logo__text,
.site-footer__logo {
  font-size: 22px;
  line-height: 1;
  font-weight: 850;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav__item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.site-nav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border-radius: 8px;
  color: var(--sk-muted);
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--sk-brand-dark);
  background: var(--sk-brand-soft);
}

.site-nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 70;
  min-width: 178px;
  padding: 8px;
  border: 1px solid #d8eaf1;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, .14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.site-nav__item:hover .site-nav__dropdown,
.site-nav__item:focus-within .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav__dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
}

.site-nav__dropdown a {
  width: 100%;
  min-height: 34px;
  justify-content: flex-start;
  padding: 0 12px;
  border-radius: 7px;
  color: #334155;
  font-size: 13px;
  font-weight: 750;
}

.site-nav__dropdown a:hover {
  background: #e6f4f2;
  color: #0b5669;
}

.site-nav__search {
  border: 1px solid var(--sk-line);
  color: var(--sk-heading) !important;
  background: #fff;
}

.site-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  margin-left: auto;
  border: 1px solid var(--sk-line);
  border-radius: 8px;
  background: #fff;
  padding: 9px;
}

.site-menu-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--sk-heading);
  border-radius: 2px;
}

.sk-section-kicker {
  margin-bottom: 9px;
  color: var(--sk-brand);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.sk-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.sk-section-head h1,
.sk-section-head h2,
.sk-split__intro h2 {
  font-size: 28px;
}

.sk-text-link {
  color: var(--sk-brand);
  font-size: 14px;
  font-weight: 700;
}

.sk-hero {
  margin-bottom: 28px;
  padding: 30px 0 12px;
}

.sk-page-head {
  margin-bottom: 24px;
  padding: 8px 0 6px;
}

.sk-hero h1 {
  max-width: 780px;
  margin-bottom: 14px;
  font-size: 38px;
}

.sk-page-head h1 {
  max-width: 780px;
  margin-bottom: 12px;
  font-size: 34px;
}

.sk-hero p {
  max-width: 760px;
  color: var(--sk-muted);
  font-size: 16px;
}

.sk-page-head p {
  max-width: 760px;
  color: var(--sk-muted);
  font-size: 16px;
}

.sk-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 28px;
  color: var(--sk-meta);
  font-size: 13px;
}

.sk-breadcrumb a {
  color: var(--sk-muted);
}

.sk-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.sk-btn {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
}

.sk-btn--lg {
  min-height: 46px;
  padding-inline: 20px;
}

.sk-btn--primary {
  background: var(--sk-brand);
  color: #fff;
}

.sk-btn--primary:hover {
  background: var(--sk-brand-dark);
  color: #fff;
}

.sk-btn--ghost {
  background: #fff;
  border-color: var(--sk-line-strong);
  color: var(--sk-heading);
}

.sk-btn--ghost:hover {
  background: var(--sk-surface-soft);
  color: var(--sk-brand-dark);
}

.sk-btn--cta {
  background: var(--sk-amber);
  color: #fff;
}

.sk-btn--cta:hover {
  color: #fff;
  background: #b45309;
}

.sk-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 20px;
  border: 1px solid var(--sk-line);
  border-radius: 8px;
  background: var(--sk-surface);
  box-shadow: var(--sk-shadow-sm);
}

.sk-card:hover {
  border-color: var(--sk-line-strong);
  box-shadow: var(--sk-shadow);
  transform: translateY(-2px);
}

.sk-card__top {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.sk-card__icon,
.sk-article-head__icon,
.sk-jc-row__icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--sk-line);
  background: #fff;
}

.sk-card__fallback {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: var(--sk-blue-soft);
  color: var(--sk-blue);
  font-size: 13px;
  font-weight: 850;
}

.sk-card h3 {
  margin-bottom: 9px;
  font-size: 18px;
}

.sk-card h3 a {
  color: var(--sk-heading);
}

.sk-card h3 a:hover {
  color: var(--sk-brand);
}

.sk-card p {
  color: var(--sk-muted);
  font-size: 14px;
}

.sk-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 15px;
}

.sk-pill {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 700;
}

.sk-pill--protocol {
  background: var(--sk-blue-soft);
  color: var(--sk-blue);
}

.sk-pill--price {
  background: var(--sk-amber-soft);
  color: var(--sk-amber);
}

.sk-pill--official {
  background: var(--sk-brand-soft);
  color: var(--sk-brand);
}

.sk-pill--tag {
  background: #f1f5f9;
  color: var(--sk-muted);
}

.sk-card__more {
  margin-top: auto;
  padding-top: 18px;
  color: var(--sk-brand);
  font-size: 14px;
  font-weight: 800;
}

.sk-card__type {
  margin-bottom: 12px;
  color: var(--sk-meta);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.sk-card--compact {
  min-height: 210px;
}

.sk-content-section {
  margin-bottom: 30px;
}

.sk-content-section:last-child {
  margin-bottom: 0;
}

.sk-resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.sk-resource-card {
  min-width: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--sk-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--sk-shadow-sm);
}

.sk-resource-card:hover {
  border-color: var(--sk-line-strong);
  box-shadow: var(--sk-shadow);
}

.sk-resource-card__head {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.sk-resource-card__head img,
.sk-resource-card__head span {
  width: 42px;
  height: 42px;
  border: 1px solid var(--sk-line);
  border-radius: 8px;
  object-fit: cover;
  background: #fff;
}

.sk-resource-card__head span {
  display: inline-grid;
  place-items: center;
  background: var(--sk-blue-soft);
  color: var(--sk-blue);
  font-size: 13px;
  font-weight: 850;
}

.sk-resource-card__head em {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 6px;
  background: var(--sk-amber-soft);
  color: var(--sk-amber);
  font-style: normal;
  font-size: 12px;
  font-weight: 800;
}

.sk-resource-card h3 {
  margin-bottom: 9px;
  font-size: 18px;
}

.sk-resource-card h3 a {
  color: var(--sk-heading);
}

.sk-resource-card h3 a:hover {
  color: var(--sk-brand);
}

.sk-resource-card p {
  color: var(--sk-muted);
  font-size: 14px;
}

.sk-split {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 38px;
  align-items: start;
}

.sk-split__intro {
  position: sticky;
  top: 90px;
}

.sk-split__intro p {
  margin: 12px 0 20px;
  color: var(--sk-muted);
}

.sk-row-card {
  padding: 18px 20px;
  border: 1px solid var(--sk-line);
  border-radius: 8px;
  background: #fff;
}

.sk-row-card time,
.sk-content__meta,
.sk-related__item time,
.sk-jc-row__time {
  color: var(--sk-meta);
  font-size: 13px;
}

.sk-row-card h3 {
  margin: 4px 0 7px;
  font-size: 18px;
}

.sk-row-card h3 a {
  color: var(--sk-heading);
}

.sk-row-card p {
  color: var(--sk-muted);
  font-size: 14px;
}

.sk-empty {
  padding: 32px;
  border: 1px dashed var(--sk-line-strong);
  border-radius: 8px;
  background: #fff;
  color: var(--sk-muted);
  text-align: center;
}

.sk-sidebar {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 90px;
}

.sk-sidebar__panel {
  padding: 20px;
  border: 1px solid var(--sk-line);
  border-radius: 8px;
  background: #fff;
}

.sk-sidebar__panel h3 {
  margin-bottom: 14px;
  font-size: 18px;
}

.sk-sidebox {
  padding: 18px;
  border: 1px solid var(--sk-line);
  border-radius: 8px;
  background: #fff;
}

.sk-sidebox__head h3 {
  position: relative;
  margin-bottom: 14px;
  padding-left: 12px;
  font-size: 18px;
}

.sk-sidebox__head h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: .28em;
  width: 4px;
  height: 1em;
  border-radius: 2px;
  background: var(--sk-brand);
}

.sk-category-list,
.sk-hot-list,
.sk-news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sk-category-list {
  display: grid;
  gap: 6px;
}

.sk-category-list a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  background: var(--sk-surface-soft);
  color: var(--sk-heading);
  font-weight: 750;
}

.sk-category-list a:hover {
  background: var(--sk-brand-soft);
  color: var(--sk-brand-dark);
}

.sk-sidebox--catalog {
  padding: 0 0 15px;
  overflow: hidden;
  border-color: #d6e7ed;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .04);
}

.sk-sidebox--catalog .sk-sidebox__head {
  padding: 14px 16px 12px;
  border-bottom: 1px solid #e2eef3;
  background: linear-gradient(180deg, #f9fdff 0%, #f1f9fc 100%);
}

.sk-sidebox--catalog .sk-sidebox__head h3 {
  margin: 0;
  padding-left: 0;
  color: #132431;
  font-size: 17px;
  font-weight: 850;
}

.sk-sidebox--catalog .sk-sidebox__head h3::before {
  display: none;
}

.sk-sidebox--catalog .sk-sidebox__body {
  padding: 14px 15px 0;
}

.sk-sidebox--catalog .sk-category-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 8px;
}

.sk-sidebox--catalog .sk-category-list li:first-child,
.sk-sidebox--catalog .sk-category-list li:last-child {
  grid-column: 1 / -1;
}

.sk-sidebox--catalog .sk-category-list a {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  overflow: hidden;
  border: 1px solid #e0edf3;
  border-radius: 999px;
  background: #f8fdff;
  color: #07566a;
  font-size: 13px;
  font-weight: 780;
  line-height: 1;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8), 0 5px 12px rgba(15, 111, 134, .035);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}

.sk-sidebox--catalog .sk-category-list a:hover {
  transform: translateY(-1px);
  border-color: #9bcbd9;
  background: #f0f9fc;
  color: #0f6f86;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .86), 0 8px 16px rgba(15, 111, 134, .07);
}

.sk-hot-list {
  display: grid;
  gap: 12px;
}

.sk-hot-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
}

.sk-hot-list__rank {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 6px;
  background: var(--sk-amber-soft);
  color: var(--sk-amber);
  font-size: 12px;
  font-weight: 850;
}

.sk-hot-list__link {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
  color: var(--sk-heading);
}

.sk-hot-list__link img {
  width: 30px;
  height: 30px;
  border: 1px solid var(--sk-line);
  border-radius: 7px;
  object-fit: cover;
}

.sk-hot-list__link span {
  min-width: 0;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.sk-hot-list__link em {
  grid-column: 2;
  color: var(--sk-meta);
  font-style: normal;
  font-size: 12px;
}

.sk-news-list {
  display: grid;
}

.sk-news-list li {
  border-bottom: 1px solid var(--sk-line);
}

.sk-news-list li:last-child {
  border-bottom: 0;
}

.sk-news-list a {
  display: block;
  padding: 9px 0;
  color: var(--sk-text);
  font-size: 14px;
  line-height: 1.55;
}

.sk-side-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sk-side-tags a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 8px;
  background: #f1f5f9;
  color: var(--sk-text);
  font-size: 12px;
  font-weight: 700;
}

.sk-side-tags em {
  color: var(--sk-meta);
  font-style: normal;
  font-weight: 800;
}

.sk-sidebar__links,
.sk-sidebar__list,
.sk-tag-list {
  display: grid;
  gap: 8px;
}

.sk-sidebar__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--sk-surface-soft);
  color: var(--sk-heading);
  font-weight: 750;
}

.sk-sidebar__links span {
  color: var(--sk-meta);
  font-size: 12px;
  font-weight: 650;
}

.sk-sidebar__list a {
  padding: 0 0 9px;
  border-bottom: 1px solid var(--sk-line);
  color: var(--sk-text);
  font-size: 14px;
}

.sk-sidebar__list a:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.sk-tag-list {
  display: flex;
  flex-wrap: wrap;
}

.sk-tag-list a,
.sk-tag-cloud a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 8px;
  background: #f1f5f9;
  color: var(--sk-text);
  font-size: 13px;
  font-weight: 700;
}

.sk-tag-list a:hover,
.sk-tag-cloud a:hover {
  background: var(--sk-brand-soft);
  color: var(--sk-brand-dark);
}

.sk-content {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--sk-line);
  border-radius: 8px;
  background: #fff;
}

.sk-article-head {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--sk-line);
}

.sk-article-head__icon {
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
}

.sk-content h1 {
  margin-bottom: 12px;
  font-size: 34px;
}

.sk-content__summary {
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 3px solid var(--sk-brand);
  border-radius: 8px;
  background: var(--sk-brand-soft);
  color: var(--sk-brand-dark);
}

.sk-entry-block {
  margin-top: 22px;
  padding: 20px;
  border: 1px solid var(--sk-line);
  border-radius: 8px;
  background: var(--sk-surface-soft);
}

.sk-entry-block h2 {
  margin-bottom: 14px;
  font-size: 22px;
}

.sk-entry-block p {
  color: var(--sk-muted);
}

.sk-content__body {
  margin-top: 26px;
  color: var(--sk-text);
}

.sk-content__body h2,
.sk-content__body h3 {
  margin: 1.4em 0 .55em;
}

.sk-content__body p,
.sk-content__body ul,
.sk-content__body ol {
  margin-top: 0;
  margin-bottom: 1em;
}

.sk-content__body img {
  border-radius: 8px;
  border: 1px solid var(--sk-line);
}

.sk-content__body h2 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--sk-line-soft);
  border-radius: 12px;
  background: linear-gradient(180deg, #fff 0%, #f8fbfd 100%);
  box-shadow: 0 4px 14px rgba(15, 23, 42, .04);
}

.sk-content__body h2::before {
  content: "📌";
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #eef8fa;
  box-shadow: inset 0 0 0 1px rgba(8, 121, 140, .12);
  font-size: 18px;
  line-height: 1;
}

.sk-content__body h2:nth-of-type(4n+1)::before {
  content: "💰";
  background: #fff7ed;
  box-shadow: inset 0 0 0 1px rgba(234, 101, 8, .16);
}

.sk-content__body h2:nth-of-type(4n+2)::before {
  content: "🎁";
  background: #f0fdf4;
  box-shadow: inset 0 0 0 1px rgba(22, 163, 74, .14);
}

.sk-content__body h2:nth-of-type(4n+3)::before {
  content: "⚙";
  background: #eef2ff;
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, .14);
}

.sk-content__body h2:nth-of-type(4n+4)::before {
  content: "🔎";
  background: #f8fafc;
  box-shadow: inset 0 0 0 1px rgba(100, 116, 139, .16);
}

.sk-content__body h3 {
  position: relative;
  padding-left: 18px;
}

.sk-content__body h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sk-brand);
  box-shadow: 0 0 0 4px rgba(8, 121, 140, .1);
}

.sk-content__body table {
  width: 100%;
  margin: 18px 0 26px;
  border: 1px solid var(--sk-line-soft);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
  overflow: hidden;
}

.sk-content__body table th,
.sk-content__body table td {
  padding: 13px 15px;
  border-right: 1px solid var(--sk-line-soft);
  border-bottom: 1px solid var(--sk-line-soft);
  color: var(--sk-text-700);
  font-size: 14px;
  line-height: 1.58;
  vertical-align: middle;
}

.sk-content__body table th:last-child,
.sk-content__body table td:last-child {
  border-right: 0;
}

.sk-content__body table tr:last-child th,
.sk-content__body table tr:last-child td {
  border-bottom: 0;
}

.sk-content__body table th,
.sk-content__body table tr:first-child td {
  background: linear-gradient(180deg, #eef8fa 0%, #e7f4f7 100%);
  color: var(--sk-brand-dark);
  font-weight: 850;
}

.sk-content__body table tr:nth-child(even) td {
  background: #fbfdff;
}

.sk-content__body table tr:hover td {
  background: #f1fbfd;
}

.sk-content__body table strong,
.sk-content__body table b {
  color: var(--sk-heading);
  font-weight: 850;
}

.sk-content--price .sk-content__body table {
  border-color: rgba(8, 121, 140, .18);
  box-shadow: 0 12px 32px rgba(8, 121, 140, .08);
}

.sk-content--price .sk-content__body table th,
.sk-content--price .sk-content__body table tr:first-child td {
  background:
    linear-gradient(180deg, rgba(234, 248, 250, .96) 0%, rgba(213, 241, 245, .9) 100%);
}

.sk-content--price .sk-content__body table td {
  white-space: normal;
}

.sk-content--price .sk-content__body table td:nth-child(3),
.sk-content--price .sk-content__body table td:nth-child(4),
.sk-content--price .sk-content__body table td:nth-child(5),
.sk-content--price .sk-content__body table td:nth-child(6) {
  color: var(--sk-accent-600);
  font-weight: 850;
}

.sk-related {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--sk-line);
}

.sk-related h2 {
  margin-bottom: 14px;
  font-size: 22px;
}

.sk-related__list {
  display: grid;
  gap: 10px;
}

.sk-related__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--sk-line);
}

.sk-related__item a {
  color: var(--sk-heading);
  font-weight: 700;
}

.sk-jc-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.sk-jc-sidebar {
  position: sticky;
  top: 90px;
}

.sk-jc-nav {
  padding: 20px;
  border: 1px solid var(--sk-line);
  border-radius: 8px;
  background: #fff;
}

.sk-jc-nav__title {
  margin-bottom: 14px;
  font-size: 18px;
}

.sk-jc-nav__list,
.sk-jc-tree__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sk-jc-nav__section {
  margin: 16px 0 8px;
  color: var(--sk-brand);
  font-size: 12px;
  font-weight: 850;
}

.sk-jc-tree {
  border-top: 1px solid var(--sk-line);
}

.sk-jc-tree__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  color: var(--sk-heading);
  cursor: pointer;
  font-weight: 750;
}

.sk-jc-tree__summary span {
  min-width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 6px;
  background: var(--sk-brand-soft);
  color: var(--sk-brand);
  font-size: 12px;
}

.sk-jc-tree__list {
  display: grid;
  gap: 6px;
  padding: 0 0 12px 10px;
}

.sk-jc-tree__list a {
  display: block;
  color: var(--sk-muted);
  font-size: 13px;
}

.sk-jc-featured,
.sk-jc-row {
  display: grid;
  gap: 18px;
  border: 1px solid var(--sk-line);
  border-radius: 8px;
  background: #fff;
}

.sk-jc-featured {
  grid-template-columns: 120px minmax(0, 1fr);
  align-items: center;
  margin-bottom: 22px;
  padding: 22px;
}

.sk-jc-featured__img,
.sk-jc-featured__fallback {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  border: 1px solid var(--sk-line);
}

.sk-jc-featured__img {
  object-fit: cover;
}

.sk-jc-featured__fallback {
  display: inline-grid;
  place-items: center;
  background: var(--sk-blue-soft);
  color: var(--sk-blue);
  font-weight: 850;
}

.sk-jc-featured h2 {
  margin-bottom: 8px;
  font-size: 24px;
}

.sk-jc-featured p,
.sk-jc-row p {
  color: var(--sk-muted);
}

.sk-jc-section {
  margin-top: 28px;
}

.sk-jc-section__title {
  margin-bottom: 14px;
  font-size: 26px;
}

.sk-jc-product {
  margin-bottom: 18px;
}

.sk-jc-product__name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 18px;
}

.sk-jc-product__name span {
  color: var(--sk-meta);
  font-size: 13px;
  font-weight: 700;
}

.sk-jc-list {
  display: grid;
  gap: 10px;
}

.sk-jc-row {
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: start;
  padding: 16px;
}

.sk-jc-row h3 {
  margin-bottom: 6px;
  font-size: 17px;
}

.sk-jc-row h3 a {
  color: var(--sk-heading);
}

.sk-jc-row__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.sk-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--sk-line);
  border-radius: 8px;
  background: #fff;
}

.sk-tag-cloud a span {
  color: var(--sk-meta);
  font-size: 12px;
}

.sk-404 {
  min-height: 420px;
  display: grid;
  place-content: center;
  text-align: center;
}

.sk-404 h1 {
  font-size: 88px;
}

.sk-404 p {
  color: var(--sk-muted);
  font-size: 18px;
}

.site-footer {
  background: #0f172a;
  color: #cbd5e1;
}

.site-footer__inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 42px 0 34px;
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(150px, 1fr));
  gap: 28px;
}

.site-footer__logo {
  display: inline-flex;
  margin-bottom: 12px;
  color: #fff;
}

.site-footer p {
  color: #94a3b8;
  font-size: 14px;
}

.site-footer__group h3 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 15px;
}

.site-footer__group a {
  display: block;
  margin: 7px 0;
  color: #cbd5e1;
  font-size: 14px;
}

.site-footer__group a:hover {
  color: #fff;
}

.site-footer__bottom {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 16px 0 22px;
  border-top: 1px solid rgba(203, 213, 225, .16);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #94a3b8;
  font-size: 13px;
}

.sk-backtop {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 45;
  width: 42px;
  height: 42px;
  border: 1px solid var(--sk-line);
  border-radius: 8px;
  background: #fff;
  color: var(--sk-heading);
  box-shadow: var(--sk-shadow);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .16s ease, transform .16s ease;
}

.sk-backtop.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 1060px) {
  .sk-grid--cards,
  .sk-grid--news,
  .sk-resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sk-layout,
  .sk-guide-shell,
  .sk-jc-layout,
  .sk-split {
    grid-template-columns: 1fr;
  }

  .sk-sidebar,
  .article-sidebar.guide-sidebar,
  .sk-jc-sidebar,
  .sk-split__intro {
    position: static;
    width: auto;
    max-height: none;
  }

  .site-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .sk-wrap,
  .site-header__inner,
  .site-footer__inner,
  .site-footer__bottom {
    width: min(100% - 28px, 1180px);
  }

  .site-menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 66px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--sk-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--sk-shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: flex-start;
  }

  .sk-hero h1,
  .sk-page-head h1 {
    font-size: 32px;
  }

  .sk-grid--cards,
  .sk-grid--news,
  .sk-resource-grid {
    grid-template-columns: 1fr;
  }

  .sk-jc-featured,
  .sk-jc-row {
    grid-template-columns: 1fr;
  }

  .sk-jc-featured__img,
  .sk-jc-featured__fallback {
    width: 100%;
    height: 180px;
  }

  .sk-content {
    padding: 20px;
  }

  .sk-content h1 {
    font-size: 28px;
  }

  .site-footer__inner,
  .site-footer__bottom {
    grid-template-columns: 1fr;
  }

.site-footer__bottom {
    display: grid;
  }
}

.site-header--double {
  background: #fff;
  border-bottom: 0;
  box-shadow: 0 2px 12px rgba(15, 23, 42, .06);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header--double.is-scrolled {
  box-shadow: 0 8px 24px rgba(15, 23, 42, .12);
}

.site-header__top {
  border-bottom: 1px solid #edf2f7;
  background: #fff;
}

.site-header__inner--top {
  height: 74px;
}

.site-header__inner--nav {
  height: 44px;
}

.site-logo__body {
  display: grid;
  gap: 4px;
}

.site-logo__body em {
  color: var(--sk-meta);
  font-size: 12px;
  line-height: 1;
  font-style: normal;
  font-weight: 650;
}

.site-header__quick {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-header__quick a {
  color: #4b5563;
  font-size: 13px;
  font-weight: 700;
}

.site-header__navrow {
  background: #0f8f86;
}

.site-header__inner--nav {
  gap: 18px;
}

.site-header__inner--nav .site-nav {
  margin-left: 0;
  gap: 2px;
}

.site-header__inner--nav .site-nav > a,
.site-header__inner--nav .site-nav__item > a {
  min-height: 44px;
  padding: 0 20px;
  border-radius: 0;
  color: #eafffd;
  font-size: 15px;
}

.site-header__inner--nav .site-nav > a:hover,
.site-header__inner--nav .site-nav > a.is-active,
.site-header__inner--nav .site-nav__item > a:hover,
.site-header__inner--nav .site-nav__item > a.is-active {
  background: rgba(255, 255, 255, .18);
  color: #fff;
}

.site-header__inner--nav .site-nav__dropdown {
  top: calc(100% + 6px);
}

.site-nav__tool {
  margin-left: auto;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .16);
  color: #fff;
  font-size: 13px;
  font-weight: 750;
}

.site-nav__tool:hover {
  background: #fff;
  color: var(--sk-brand-dark);
}

.sk-page-head--compact {
  margin-bottom: 20px;
  padding: 6px 0 2px;
}

.sk-page-head--compact h1 {
  margin-bottom: 8px;
  font-size: 30px;
}

.sk-page-head--compact p {
  max-width: 880px;
  font-size: 15px;
}

.sk-section-head--line {
  align-items: center;
  padding-bottom: 11px;
  border-bottom: 2px solid var(--sk-line);
}

.sk-section-head--line span {
  display: block;
  margin-bottom: 4px;
  color: var(--sk-brand);
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
  text-transform: uppercase;
}

.sk-section-head--line h1,
.sk-section-head--line h2 {
  font-size: 22px;
}

.sk-filter-panel {
  margin-bottom: 16px;
  padding: 16px;
  border: 1px solid var(--sk-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--sk-shadow-sm);
}

.sk-layout--product .sk-filter-panel {
  width: 651px;
  margin-left: 11px;
}

.sk-filter-search {
  display: grid;
  gap: 8px;
}

.sk-filter-search span {
  color: var(--sk-heading);
  font-size: 13px;
  font-weight: 800;
}

.sk-filter-search input {
  width: 100%;
  height: 42px;
  border: 1px solid var(--sk-line-strong);
  border-radius: 8px;
  padding: 0 14px;
  outline: none;
  color: var(--sk-heading);
  font: inherit;
  background: #fbfdff;
}

.sk-filter-search input:focus {
  border-color: var(--sk-brand);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, .12);
}

.sk-filter-panel--product .sk-filter-search {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.sk-filter-panel--product .sk-filter-search span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.sk-filter-panel--product .sk-filter-search strong {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border-radius: 7px;
  background: #0f6f86;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  font-weight: 850;
}

.sk-filter-panel--product .sk-filter-search em {
  color: #0b5669;
  font-size: 13px;
  line-height: 1;
  font-style: normal;
  font-weight: 800;
}

.sk-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.sk-filter-chips button {
  min-height: 30px;
  border: 1px solid var(--sk-line);
  border-radius: 7px;
  padding: 0 12px;
  background: #f8fafc;
  color: var(--sk-text);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
}

.sk-filter-chips button:hover,
.sk-filter-chips button.is-active {
  border-color: var(--sk-brand);
  background: var(--sk-brand-soft);
  color: var(--sk-brand-dark);
}

.sk-brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.sk-brand-grid a {
  min-width: 0;
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid var(--sk-line);
  border-radius: 8px;
  background: #fbfdff;
  color: var(--sk-heading);
  font-size: 13px;
  font-weight: 750;
}

.sk-brand-grid img {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  object-fit: cover;
}

.sk-brand-grid span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sk-product-feed {
  display: grid;
  gap: 14px;
}

.sk-layout--product .sk-product-feed {
  padding-left: 11px;
}

.sk-product-card {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 18px;
  padding: 16px;
  border: 1px solid var(--sk-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--sk-shadow-sm);
}

.sk-product-card:hover {
  border-color: var(--sk-line-strong);
  box-shadow: 0 10px 28px rgba(15, 23, 42, .08);
}

.sk-product-card[hidden],
.sk-price-row[hidden],
.sk-guide-card[hidden] {
  display: none;
}

.sk-product-card__media {
  grid-column: 2;
  grid-row: 1;
  width: 230px;
  min-height: 142px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--sk-line);
  border-radius: 8px;
  background: linear-gradient(180deg, #f8fafc, #edf7f6);
}

.sk-product-card__media img {
  width: 100%;
  height: 100%;
  min-height: 142px;
  object-fit: cover;
}

.sk-product-card__media span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #fff;
  color: var(--sk-brand);
  font-size: 16px;
  font-weight: 900;
  box-shadow: var(--sk-shadow-sm);
}

.sk-product-card__body {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.sk-product-card__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 8px;
}

.sk-product-card__top h3,
.sk-product-card__body > h3 {
  font-size: 19px;
}

.sk-product-card__top h3 a,
.sk-product-card__body > h3 a {
  color: var(--sk-heading);
}

.sk-product-card__top em {
  flex: 0 0 auto;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 2px 9px;
  border-radius: 7px;
  background: var(--sk-amber-soft);
  color: var(--sk-amber);
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
}

.sk-product-card p {
  color: var(--sk-muted);
  font-size: 14px;
  line-height: 1.65;
}

.sk-product-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.sk-product-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: auto;
  padding-top: 14px;
}

.sk-product-card__actions .sk-btn,
.sk-price-row__side .sk-btn,
.sk-download-row__actions .sk-btn {
  min-height: 34px;
  padding: 0 13px;
  font-size: 13px;
}

.sk-price-list,
.sk-download-list,
.sk-article-list {
  display: grid;
  gap: 10px;
}

.sk-price-row,
.sk-download-row,
.sk-article-row {
  border: 1px solid var(--sk-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--sk-shadow-sm);
}

.sk-price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 18px;
  align-items: center;
  padding: 16px 18px;
}

.sk-price-row h3,
.sk-download-row h3,
.sk-article-row h3 {
  font-size: 18px;
}

.sk-price-row h3 a,
.sk-download-row h3 a,
.sk-article-row h3 a {
  color: var(--sk-heading);
}

.sk-price-row p,
.sk-download-row p,
.sk-article-row p {
  margin-top: 6px;
  color: var(--sk-muted);
  font-size: 14px;
  line-height: 1.6;
}

.sk-price-row__side {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.sk-price-row__side strong {
  color: var(--sk-red);
  font-size: 22px;
  line-height: 1;
}

.product-quick-nav.price-quick-nav {
  margin-bottom: 16px;
  padding: 20px;
  border: 1px solid #d9edf3;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff 0%, #f8fcfd 100%);
  box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
}

.price-page-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e3f0f4;
}

.price-page-head h1,
.price-page-head h2 {
  margin: 0 0 6px;
  color: #073042;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.25;
}

.price-page-head p {
  max-width: 680px;
  margin: 0;
  color: #5f7280;
  font-size: 13px;
  line-height: 1.6;
}

.price-page-pill {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
  border: 1px solid #bfe7c7;
  border-radius: 999px;
  background: #effaf0;
  color: #157d35;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.price-search-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px 86px;
  gap: 10px;
  margin: 0 0 12px;
}

.price-search-container .product-search-input,
.price-search-container .product-search-btn,
.price-search-container .product-search-reset-btn {
  height: 42px;
  border-radius: 10px;
}

.price-search-container .product-search-input {
  border-color: #d6e7ed;
  background: #fff;
  color: #1f3442;
}

.price-search-container .product-search-btn {
  border: 0;
  background: #0f6f86;
  color: #fff;
  font-size: 16px;
}

.price-search-container .product-search-reset-btn {
  border: 0;
  background: #eef4f7;
  color: #516776;
  font-weight: 600;
}

.price-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.price-trust-strip span {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  border: 1px solid #d8e9ef;
  border-radius: 999px;
  background: #f6fbfd;
  color: #49616f;
  font-size: 12px;
  font-weight: 600;
}

.price-trust-strip span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, .08);
}

.price-filter-bar {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  padding: 2px 2px 3px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.price-filter-bar::-webkit-scrollbar {
  display: none;
}

.price-filter-chip {
  flex: 0 0 auto;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid #d6e7ed;
  border-radius: 999px;
  background: #fff;
  color: #506575;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.price-filter-chip:hover {
  border-color: #9bcbd9;
  background: #f4fbfd;
  color: #0f6f86;
}

.price-filter-chip.is-active {
  border-color: #0f6f86;
  background: #0f6f86;
  color: #fff;
}

.price-plan-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.price-plan-card[hidden] {
  display: none;
}

.price-plan-grid .price-plan-card {
  min-height: 86px;
  display: grid;
  grid-template-columns: minmax(0, 45%) minmax(120px, 20%) minmax(240px, 35%);
  align-items: center;
  column-gap: 18px;
  margin: 0;
  padding: 16px 18px;
  overflow: visible;
  border: 1px solid #d9edf3;
  border-left: 0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .04);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.price-plan-grid .price-plan-card:hover {
  transform: translateY(-2px);
  border-color: #9bcbd9;
  background: #fbfeff;
  box-shadow: 0 14px 30px rgba(15, 111, 134, .08);
}

.price-row-info {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.price-row-logo-wrap {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.price-row-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .08);
}

.price-row-logo-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9edf3;
  background: #f3fbfd;
  color: #0f6f86;
  font-size: 13px;
  font-weight: 900;
  box-shadow: none;
}

.price-row-copy {
  min-width: 0;
}

.price-plan-card .price-article-title {
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: #081f33;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.price-plan-card .price-article-title a {
  color: #081f33;
}

.price-plan-card .price-article-title a:hover {
  color: #0f6f86;
}

.price-row-summary {
  margin: 6px 0 0;
  overflow: hidden;
  color: #666;
  font-size: 13px;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.price-row-price {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

.price-plan-card .price-tag {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #ff6f00;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  box-shadow: none;
}

.price-plan-card .price-tag span {
  margin-left: 0;
  color: #7b8790;
  font-size: 13px;
  font-weight: 700;
}

.price-row-actions {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  white-space: nowrap;
}

.price-plan-card .product-actions {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.price-plan-card .cta-button,
.price-plan-card .trial-button {
  flex: 0 0 auto;
  min-width: 104px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.price-plan-card .cta-button {
  border: 1px solid #0f6f86;
  background: #0f6f86;
  color: #fff;
}

.price-plan-card .cta-button:hover {
  border-color: #0b586a;
  background: #0b586a;
}

.price-plan-card .trial-button {
  border: 1px solid #b8dce7;
  background: #fff;
  color: #0f6f86;
}

.price-plan-card .trial-button:hover {
  border-color: #0f6f86;
  background: #f0f9fc;
}

.sk-download-section + .sk-download-section {
  margin-top: 26px;
}

.sk-download-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 16px 18px;
}

.sk-download-row__actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.download-center-page {
  width: 100%;
  margin: 20px auto 0;
}

.download-search-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px 78px;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.download-search-container .user-search-input,
.download-search-container .user-search-btn,
.download-search-container .user-search-reset-btn {
  height: 46px;
}

.download-search-container .user-search-input {
  width: 100%;
  padding: 0 16px;
  border: 1px solid #d6e7ed;
  border-radius: 10px;
  background: #fff;
  color: #123445;
  font-size: 14px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85);
}

.download-search-container .user-search-input:focus {
  border-color: #0f6f86;
  box-shadow: 0 0 0 3px rgba(15, 111, 134, .1);
}

.download-search-container .user-search-btn,
.download-search-container .user-search-reset-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.download-search-container .user-search-btn {
  background: #0f6f86;
  color: #fff;
}

.download-search-container .user-search-btn i {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
}

.download-search-container .user-search-btn i::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 1px;
  width: 10px;
  height: 10px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.download-search-container .user-search-btn i::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1px;
  width: 8px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: center;
}

.download-search-container .user-search-btn:hover {
  background: #0b586a;
}

.download-search-container .user-search-reset-btn {
  border-color: #e1ebef;
  background: #f1f5f7;
  color: #456575;
}

.download-search-container .user-search-reset-btn:hover {
  border-color: #cddde4;
  background: #e8eff3;
  color: #0f5f73;
}

.backend-download-section {
  margin: 0 0 26px;
  padding: 18px;
  border: 1px solid #d8edf2;
  border-radius: 12px;
  background: #f4fbfd;
}

.backend-download-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  margin-bottom: 16px;
}

.backend-download-heading h2 {
  margin: 0;
  color: #0f5f73;
  font-size: 20px;
  line-height: 1.35;
}

.backend-download-heading p {
  margin: 0;
  color: #667c88;
  font-size: 13px;
  line-height: 1.55;
}

.download-center-page .user-products-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
}

.download-center-page .backend-download-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.download-center-page .user-product-item {
  display: flex;
  align-items: center;
  border: 1px solid #cbe5ec;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(15, 23, 42, .05);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease;
}

.download-center-page .user-product-item:hover {
  border-color: #a8d4df;
  box-shadow: 0 8px 22px rgba(15, 63, 82, .09);
  transform: translateY(-2px);
}

.download-center-page .user-product-logo,
.download-center-page .backend-download-logo {
  flex: 0 0 auto;
  object-fit: contain;
}

.download-center-page .backend-download-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0f6f86;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.download-center-page .user-product-name {
  min-width: 0;
  color: #0b2538;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.launcher-download-section .backend-download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 12px;
}

.launcher-download-section .launcher-download-item {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 66px;
  padding: 10px 12px;
  overflow: visible;
}

.launcher-download-section .user-product-logo,
.launcher-download-section .backend-download-logo {
  width: 36px;
  height: 36px;
  margin: 0;
}

.launcher-download-section .user-product-name {
  margin: 0;
}

.download-center-page .user-btn-group {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: max-content;
  margin-left: 0;
  flex-wrap: nowrap;
}

.download-action-links,
.download-action-main {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.download-text-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #60798a;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.download-text-link:hover {
  color: #0f6f86;
}

.download-price-link {
  height: 22px;
  padding: 0 8px;
  border: 1px solid #ffd9a8;
  border-radius: 999px;
  background: #fff6e8;
  color: #b96105;
  font-weight: 800;
}

.download-price-link:hover {
  border-color: #ffc573;
  background: #ffefd4;
  color: #9f4f00;
}

.download-price-link i {
  display: none;
}

.download-client-menu {
  position: relative;
  flex: 0 0 auto;
}

.download-client-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 50;
  display: grid;
  gap: 2px;
  min-width: 158px;
  padding: 6px;
  border: 1px solid #d3e8ef;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 63, 82, .14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transform-origin: top right;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.download-client-menu:hover .download-client-dropdown,
.download-client-menu:focus-within .download-client-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.download-client-option {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 7px;
  color: #234758;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.download-client-option:hover {
  background: #eef8fb;
  color: #0f6f86;
}

.download-center-page .user-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.download-center-page .user-btn i {
  margin-right: 5px;
}

.download-menu-chevron {
  margin-right: 0 !important;
  margin-left: 6px;
  font-size: 10px !important;
}

.launcher-download-section .user-download-menu-btn {
  border-color: #d9e8ee;
  background: #eef4f7;
  color: #123445;
}

.launcher-download-section .user-download-menu-btn:hover {
  border-color: #c5dce4;
  background: #e4f0f4;
  color: #0f5f73;
}

.download-toolbox-section .user-download-menu-btn {
  background: #1f7ec9;
  color: #fff;
  cursor: default;
}

.download-toolbox-section .user-download-menu-btn:hover {
  background: #176dab;
}

.download-toolbox-section .user-register-btn {
  min-width: 86px;
  background: #ff7a1a;
  color: #fff;
}

.download-toolbox-section .user-register-btn:hover {
  background: #ec6404;
}

.download-toolbox-section .user-login-btn {
  min-width: 86px;
  background: #0f5f73;
  color: #fff;
}

.download-toolbox-section .user-login-btn:hover {
  background: #0b4b5c;
}

.download-accordion-list {
  display: grid;
  gap: 12px;
}

.download-accordion {
  border: 1px solid #d8edf2;
  border-radius: 12px;
  background: #fff;
  overflow: visible;
}

.download-accordion-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 18px;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 16px;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.download-group-main {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.download-group-main strong {
  color: #0f5f73;
  font-size: 16px;
  line-height: 1.25;
}

.download-group-main small {
  color: #667c88;
  font-size: 12px;
  line-height: 1.45;
}

.download-group-count {
  color: #496b7c;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.download-accordion-head > i {
  color: #7d98a5;
  font-size: 12px;
  transition: transform .18s ease;
}

.download-accordion.is-open .download-accordion-head > i {
  transform: rotate(180deg);
}

.download-accordion-body {
  display: none;
  padding: 0 12px 12px;
}

.download-accordion.is-open .download-accordion-body {
  display: block;
}

.download-toolbox-section .backend-download-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  grid-template-rows: 1fr 1fr;
  align-items: center;
  column-gap: 12px;
  row-gap: 2px;
  min-height: 76px;
  padding: 10px 12px;
  overflow: visible;
}

.download-toolbox-section .user-product-logo,
.download-toolbox-section .backend-download-logo {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  width: 34px;
  height: 34px;
  margin: 0;
}

.download-toolbox-section .download-product-info {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  align-self: end;
  min-width: 0;
}

.download-toolbox-section .product-protocol-summary {
  display: none;
}

.download-toolbox-section .user-product-name {
  display: block;
  max-width: 100%;
  margin: 0;
}

.download-toolbox-section .user-btn-group {
  display: contents;
}

.download-toolbox-section .download-action-links {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  align-self: start;
  min-width: 0;
  gap: 10px;
}

.download-toolbox-section .download-action-main {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
  justify-content: flex-end;
}

.sk-article-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 16px;
}

.sk-article-row time {
  color: var(--sk-meta);
  font-size: 13px;
  font-weight: 750;
}

.sk-article-list--home .sk-article-row {
  grid-template-columns: 86px minmax(0, 1fr);
}

.sk-guide-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  margin-bottom: 28px;
}

.sk-guide-shell--solo {
  grid-template-columns: 1fr;
}

.article-sidebar.guide-sidebar {
  position: sticky;
  top: 132px;
  width: 280px;
  max-height: calc(100vh - 150px);
  overflow: auto;
}

.guide-sidebar .article-side-section {
  margin-bottom: 10px;
  overflow: hidden;
  border: 1px solid #dcecf2;
  border-radius: 12px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 4px 14px rgba(15, 23, 42, .035);
}

.guide-sidebar .article-side-header {
  padding: 13px 14px 12px;
  border-bottom: 1px solid #e0f0f5;
  background: linear-gradient(180deg, #f8fdff 0%, #f1f9fc 100%);
  color: #06485b;
}

.guide-sidebar .article-side-header h3 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
}

.guide-sidebar .article-side-list,
.guide-sidebar .article-submenu-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-sidebar .article-side-list.active {
  display: block;
}

.guide-sidebar .guide-product-item {
  border-bottom: 1px solid #eef5f8;
}

.guide-sidebar .guide-product-item:last-child {
  border-bottom: 0;
}

.guide-sidebar .guide-product-item.active > .guide-product-row {
  background: rgba(15, 111, 134, .045);
  color: var(--sk-brand);
}

.guide-sidebar .guide-product-row {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 40px;
  gap: 8px;
  padding: 7px 10px 7px 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #64748b;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: color .18s ease, background-color .18s ease;
}

.guide-sidebar .guide-product-row:hover {
  background: rgba(15, 111, 134, .08);
  color: #0f4f60;
}

.guide-sidebar .submenu-toggle {
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  opacity: .75;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%230f6f86'%3E%3Cpath d='M7 4l6 6-6 6z'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform .18s ease, opacity .18s ease;
}

.guide-sidebar .has-submenu.open .submenu-toggle {
  transform: rotate(90deg);
  opacity: 1;
}

.guide-sidebar .guide-product-main {
  display: flex;
  align-items: center;
  min-width: 0;
  flex: 1;
  gap: 8px;
}

.guide-sidebar .guide-product-main .title-icon {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.guide-sidebar .guide-product-name {
  min-width: 0;
  overflow: hidden;
  color: inherit;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.guide-sidebar .guide-product-count {
  flex: 0 0 auto;
  min-width: 34px;
  padding: 2px 6px;
  border: 1px solid #c9e8ef;
  border-radius: 999px;
  background: #eef9fc;
  color: var(--sk-brand);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.guide-sidebar .guide-article-list {
  position: relative;
  display: none;
  padding: 4px 8px 8px 36px;
  border-top: 1px solid #eef5f8;
  background: linear-gradient(180deg, #fff 0%, #fbfdfe 100%);
}

.guide-sidebar .guide-article-list::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 12px;
  left: 22px;
  width: 1px;
  background: #e2e8f0;
}

.guide-sidebar .guide-article-item {
  position: relative;
  border: 0;
}

.guide-sidebar .guide-article-item::before {
  content: "";
  position: absolute;
  top: 14px;
  left: -16px;
  z-index: 1;
  width: 5px;
  height: 5px;
  border: 2px solid #fbfdfe;
  border-radius: 50%;
  background: #cbd5e1;
}

.guide-sidebar .guide-article-link {
  display: block;
  margin: 1px 0;
  overflow: hidden;
  padding: 7px 10px 7px 12px;
  border-radius: 8px;
  color: #526575;
  font-size: 13px;
  line-height: 1.42;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.guide-sidebar .guide-article-link:hover {
  background: rgba(15, 111, 134, .045);
  color: #0f4f60;
}

.guide-sidebar .guide-product-item.open .guide-article-link {
  display: -webkit-box;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.guide-sidebar .guide-article-item.active .guide-article-link {
  color: var(--sk-brand);
  font-weight: 750;
}

.guide-sidebar .guide-article-item.active::before {
  background: var(--sk-brand);
  border-color: #f8fcfd;
}

.guide-index-intro {
  margin-bottom: 14px;
  padding: 18px 20px;
  border: 1px solid #d6edf3;
  border-radius: 12px;
  background: linear-gradient(180deg, #f8fdff 0%, #f2f9fc 100%);
  color: #17313d;
}

.guide-index-intro h1 {
  margin: 0 0 6px;
  color: #0a3f52;
  font-size: 22px;
  font-weight: 850;
}

.guide-index-intro p {
  color: #5a6f7c;
  font-size: 14px;
  line-height: 1.55;
}

.article-feedback-bar {
  margin: 0 0 14px;
  padding: 12px 16px;
  border: 1px solid #d6edf3;
  border-radius: 12px;
  background: #f7fcfe;
}

.feedback-content {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #345160;
  font-size: 14px;
  line-height: 1.5;
}

.feedback-icon {
  flex: 0 0 auto;
  font-size: 18px;
  line-height: 1;
}

.feedback-link {
  margin: 0 2px;
  color: var(--sk-brand);
  font-weight: 800;
}

.sk-guide-main {
  min-width: 0;
}

.product-search-container.guide-quick-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px 70px;
  gap: 8px;
  align-items: center;
  margin-bottom: 14px;
  padding: 10px;
  border: 1px solid #d6edf3;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(15, 111, 134, .045);
}

.product-search-input {
  width: 100%;
  height: 42px;
  padding: 0 14px;
  border: 1px solid #cfe5ec;
  border-radius: 9px;
  background: #f8fdff;
  color: var(--sk-heading);
  font: inherit;
  outline: none;
}

.product-search-input:focus {
  border-color: #9ed6e3;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(15, 111, 134, .09);
}

.product-search-btn,
.product-search-reset-btn {
  height: 42px;
  border: 0;
  border-radius: 9px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.product-search-btn {
  background: var(--sk-brand);
  color: #fff;
}

.product-search-reset-btn {
  border: 1px solid #cfe5ec;
  background: #f8fafc;
  color: #365165;
}

.sk-guide-finder {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: end;
  margin-bottom: 14px;
  padding: 18px;
  border: 1px solid #d6edf3;
  border-radius: 12px;
  background: #fff;
}

.sk-guide-finder h2 {
  font-size: 21px;
}

.sk-guide-finder p {
  margin-top: 7px;
  color: var(--sk-muted);
  font-size: 14px;
}

.guide-quick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.guide-quick-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 4px;
  align-items: center;
  min-height: 74px;
  padding: 12px 14px;
  border: 1px solid #d6edf3;
  border-radius: 12px;
  background: #fff;
  color: #123847;
  box-shadow: 0 8px 18px rgba(15, 111, 134, .055);
}

.guide-quick-item:hover {
  border-color: #9ed6e3;
  background: #f7fcfe;
  color: var(--sk-brand);
  box-shadow: 0 12px 24px rgba(15, 111, 134, .09);
  transform: translateY(-1px);
}

.guide-quick-icon {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
}

.guide-quick-icon--text {
  display: inline-grid;
  place-items: center;
  background: #eaf8fc;
  color: var(--sk-brand);
  font-size: 18px;
  font-weight: 850;
}

.guide-quick-name {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  min-width: 0;
  overflow: hidden;
  color: #0c2e3d;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.guide-quick-count {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  justify-self: start;
  padding: 3px 9px;
  border: 1px solid #bfe5ef;
  border-radius: 999px;
  background: #eaf8fc;
  color: var(--sk-brand);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.2;
}

.sk-guide-group {
  margin-top: 28px;
}

.sk-guide-product {
  margin-bottom: 20px;
}

.sk-guide-product > h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 18px;
}

.sk-guide-product > h3 span {
  color: var(--sk-meta);
  font-size: 13px;
}

.sk-guide-article-main {
  padding-top: 16px;
}

.launcher-recommendations {
  margin: 10px 0 14px;
  padding: 10px 12px;
  border: 1px solid #d6e7ed;
  border-radius: 12px;
  background: #f8fbfc;
}

.launcher-recommend-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

.launcher-recommend-head h2 {
  margin: 0;
  color: var(--sk-brand-dark);
  font-size: 16px;
  line-height: 1.3;
}

.launcher-recommend-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--sk-brand-dark);
  font-size: 12px;
  line-height: 1.45;
  white-space: nowrap;
}

.launcher-recommend-note span,
.launcher-recommend-note b {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.launcher-recommend-note span {
  background: var(--sk-brand);
  color: #fff;
}

.launcher-recommend-note b {
  border: 1px solid #b9dbe4;
  background: #f0fbff;
  color: var(--sk-brand-dark);
}

.launcher-recommend-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 6px;
}

.launcher-recommend-card {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  min-width: 0;
  min-height: 50px;
  padding: 6px 7px;
  border: 1px solid #d6e7ed;
  border-radius: 10px;
  background: #fff;
  color: inherit;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.launcher-recommend-card:hover {
  border-color: var(--sk-brand);
  background: #fff;
  box-shadow: 0 12px 26px rgba(15, 111, 134, .12);
  transform: translateY(-4px);
}

.launcher-recommend-logo {
  width: 28px;
  height: 28px;
  margin: 0;
  object-fit: contain;
  border-radius: 50%;
  background: #f1f6f8;
}

.launcher-recommend-logo-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sk-brand);
  font-weight: 700;
}

.launcher-recommend-info {
  display: grid;
  gap: 3px;
  justify-items: start;
  min-width: 0;
  width: 100%;
}

.launcher-recommend-info h3 {
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  color: var(--sk-heading);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.launcher-recommend-tags {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 3px;
  min-height: 16px;
  max-width: 100%;
  overflow: hidden;
}

.launcher-recommend-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 16px;
  padding: 0 5px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  white-space: nowrap;
}

.launcher-recommend-tags .protocol-pill-sk5 {
  border-color: #b9dff5;
  background: #e9f6ff;
  color: #075985;
}

.launcher-recommend-tags .protocol-pill-l2tp {
  border-color: #dbc7ff;
  background: #f3edff;
  color: #6d28d9;
}

.launcher-recommend-tags .protocol-pill-android {
  border-color: #bdeccb;
  background: #ebfff1;
  color: #15803d;
}

.launcher-recommend-tags .protocol-pill-pc,
.launcher-recommend-tags .protocol-pill-default {
  border-color: #d7e3ea;
  background: #f2f7fa;
  color: #475569;
}

.sk-product-card--shared {
  padding: 0;
  overflow: hidden;
  border-color: #d9e6ee;
  background: #fff;
}

.sk-product-card--shared .sk-product-card__body {
  padding: 18px;
}

.sk-product-card__brand {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.sk-product-card__brand > div {
  min-width: 0;
}

.sk-product-card__brand h3 {
  margin-bottom: 7px;
  font-size: 20px;
  line-height: 1.28;
}

.sk-product-card__brand h3 a {
  color: var(--sk-heading);
}

.sk-product-card__brand h3 a:hover {
  color: var(--sk-brand);
}

.sk-product-card__icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--sk-line);
  border-radius: 8px;
  object-fit: cover;
  background: #fff;
}

.sk-product-card--shared .sk-product-card__specs {
  margin-top: 14px;
  border: 1px solid #dceaf0;
  border-radius: 8px;
  overflow: hidden;
  background: #fbfdff;
}

.sk-product-card__badges,
.sk-product-card__protocols,
.sk-product-card__keywords {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 34px;
  padding: 7px 10px;
  border-bottom: 1px solid #e6eef4;
}

.sk-product-card__keywords {
  border-bottom: 0;
}

.sk-product-card__badges span,
.sk-product-card__protocols span,
.sk-product-card__keywords span {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 2px 9px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
}

.sk-product-card__badges span {
  background: #fff7e8;
  color: #b45309;
}

.sk-product-card__badges span:nth-child(2) {
  background: #e8f8ef;
  color: #15803d;
}

.sk-product-card__protocols span {
  background: #eaf5ff;
  color: #0b63ce;
}

.sk-product-card__keywords span {
  background: #eef7f5;
  color: var(--sk-brand-dark);
}

.sk-product-card--shared .sk-product-card__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding-top: 14px;
}

.sk-product-card--shared .sk-product-card__actions .sk-btn {
  width: 100%;
  min-height: 38px;
}

.sk-product-card--shared .sk-product-card__actions .sk-btn:only-child {
  grid-column: 1 / -1;
}

.sk-product-card--shared .sk-product-card__actions .sk-btn:nth-child(n+3) {
  grid-column: auto;
}

.sk-product-card--shared .sk-product-card__media {
  align-self: stretch;
  margin: 16px 16px 16px 0;
  border-color: #d5e4eb;
  background: #f8fbfd;
}

.sk-product-card--shared .sk-product-card__media img {
  object-fit: contain;
  padding: 8px;
}

.site-header--double {
  box-shadow: 0 6px 18px rgba(15, 23, 42, .05);
}

.site-header__top {
  border-bottom: 0;
}

.site-header__inner--top,
.site-header__inner--nav {
  width: min(1120px, calc(100% - 32px));
}

.site-header__inner--top {
  height: 76px;
  padding: 12px 10px;
}

.site-header__inner--nav {
  height: 54px;
  gap: 18px;
}

.site-logo {
  position: relative;
  width: 200px;
  height: 51px;
  overflow: hidden;
}

.site-logo img {
  display: block;
  width: 200px;
  height: 51px;
  object-fit: contain;
}

.site-logo::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  z-index: 1;
  width: 40%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, .9) 0%, rgba(255, 255, 255, .1) 70%, transparent 100%);
  transform: skewX(-15deg);
  animation: sk-logo-spotlight 4s infinite ease-in-out;
  pointer-events: none;
}

@keyframes sk-logo-spotlight {
  0% { left: -100%; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { left: 150%; opacity: 0; }
}

.site-header__quick {
  gap: 10px;
}

.site-header__quick a {
  min-width: 85px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid #d8eaf1;
  border-radius: 7px;
  background: #fff;
  color: #405166;
  font-size: 13px;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(15, 23, 42, .04);
}

.site-header__navrow {
  min-height: 54px;
  background: #0f6f86;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22), 0 6px 18px rgba(15, 23, 42, .1);
}

.site-header__inner--nav .site-nav > a,
.site-header__inner--nav .site-nav__item > a {
  min-height: 54px;
  padding: 0 19px;
  color: #ecfeff;
}

.site-header__inner--nav .site-nav > a:hover,
.site-header__inner--nav .site-nav > a.is-active,
.site-header__inner--nav .site-nav__item > a:hover,
.site-header__inner--nav .site-nav__item > a.is-active {
  background: rgba(255, 255, 255, .18);
  color: #fff;
}

.site-header__inner--nav .site-nav__dropdown {
  top: calc(100% + 6px);
}

.site-nav__tool {
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 7px;
}

.sk-home-page {
  padding: 30px 0 64px;
}

.sk-home-layout {
  width: min(1200px, calc(100% - 32px));
  grid-template-columns: 692px 280px;
  gap: 28px;
  justify-content: start;
}

.sk-home-products {
  padding: 34px 20px 20px;
  border: 1px solid #d6e7ed;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .055);
}

.sk-home-products + .sk-content-section {
  margin-top: 24px;
}

.sk-home-layout .sk-sidebar {
  width: 280px;
  gap: 14px;
  padding: 20px;
  border: 1px solid #dbe7ef;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
}

.sk-home-layout .sk-sidebox {
  width: 100%;
  padding: 0 0 15px;
  overflow: hidden;
  border-color: #d6e7ed;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .04);
}

.sk-home-layout .sk-sidebox__head {
  padding: 14px 16px 12px;
  border-bottom: 1px solid #e2eef3;
  background: linear-gradient(180deg, #f9fdff 0%, #f1f9fc 100%);
}

.sk-home-layout .sk-sidebox__head h3 {
  margin: 0;
  padding-left: 0;
  color: #132431;
  font-size: 17px;
  font-weight: 850;
}

.sk-home-layout .sk-sidebox__head h3::before {
  display: none;
}

.sk-home-layout .sk-sidebox__body {
  padding: 14px 15px 0;
}

.sk-home-layout .sk-hot-list {
  gap: 11px;
}

.sk-home-layout .sk-hot-list__rank {
  background: #fff7e8;
  color: #b45309;
}

.sk-home-layout .sk-hot-list__link span,
.sk-home-layout .sk-news-list a {
  color: #243548;
}

.sk-home-layout .sk-hot-list__link span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.sk-home-layout .sk-hot-list__link em {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.sk-product-card--home {
  width: 651px;
  min-height: 350px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  padding: 24px 26px;
  overflow: hidden;
  border: 1px solid #d8eaf1;
  border-radius: 17px;
  background: linear-gradient(180deg, #fff 0%, #f9fdff 100%);
  box-shadow: 0 14px 34px rgba(15, 111, 134, .075), 0 2px 8px rgba(15, 23, 42, .035);
}

.sk-product-card--home:hover {
  border-color: #b7dde8;
  box-shadow: 0 18px 42px rgba(15, 111, 134, .11), 0 4px 12px rgba(15, 23, 42, .045);
  transform: translateY(-1px);
}

.sk-product-card--home .sk-product-card__home-body {
  display: grid;
  grid-template-columns: 267px 314px;
  gap: 16px;
  height: 244px;
  align-items: stretch;
}

.sk-product-card--home .sk-product-card__home-left {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
  overflow: hidden;
}

.sk-product-card--home .sk-product-card__brand {
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
}

.sk-product-card--home .sk-product-card__icon {
  width: 46px;
  height: 46px;
  margin-top: 2px;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(15, 111, 134, .11);
}

.sk-product-card--home .sk-product-card__brand h3 {
  margin-bottom: 5px;
  font-size: 22px;
  line-height: 1.28;
  font-weight: 850;
}

.sk-product-card--home .sk-product-card__brand h3 a {
  display: -webkit-box;
  overflow: hidden;
  color: #07182c;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.sk-product-card--home .sk-product-card__brand p {
  display: -webkit-box;
  overflow: hidden;
  max-height: calc(1.32em * 2);
  color: #405166;
  font-size: 15px;
  line-height: 1.32;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.sk-product-card--home .sk-product-card__specs {
  margin-top: 0;
  overflow: hidden;
  border: 1px solid #dcecf2;
  border-radius: 13px;
  background: rgba(248, 253, 255, .78);
}

.sk-product-card--home .sk-product-card__badges,
.sk-product-card--home .sk-product-card__protocols,
.sk-product-card--home .sk-product-card__platforms,
.sk-product-card--home .sk-product-card__techline,
.sk-product-card--home .sk-product-card__launchers {
  gap: 6px;
  min-height: 34px;
  padding: 4px 12px;
  border-bottom-color: #e5f0f5;
}

.sk-product-card--home .sk-product-card__badges {
  background: #f0fbff;
}

.sk-product-card--home .sk-product-card__badges span,
.sk-product-card--home .sk-product-card__protocols span,
.sk-product-card--home .sk-product-card__platforms span,
.sk-product-card--home .sk-product-card__techline span,
.sk-product-card--home .sk-product-card__launchers span {
  min-width: 86px;
  min-height: 22px;
  justify-content: center;
  padding: 0 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
}

.sk-product-card--home .sk-product-card__badges span:first-child {
  background: #ecfdf3;
  color: #166534;
  border-color: #aeeec1;
}

.sk-product-card--home .sk-product-card__protocols span {
  background: #eaf7ff;
  color: #075985;
  border-color: #bfe7fb;
}

.sk-product-card--home .sk-product-card__platforms span {
  background: #ecfdf3;
  color: #166534;
  border-color: #aeeec1;
}

.sk-product-card--home .sk-product-card__platforms span:nth-child(2) {
  background: #f1f5f9;
  color: #334155;
  border-color: #cbd5e1;
}

.sk-product-card--home .sk-product-card__techline {
  position: relative;
  padding-left: 30px;
}

.sk-product-card--home .sk-product-card__techline::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sk-brand-600, #08798c);
  box-shadow: 0 0 0 4px rgba(8, 121, 140, .1);
  transform: translateY(-50%);
}

.sk-product-card--home .sk-product-card__launchers {
  position: relative;
  padding-left: 30px;
}

.sk-product-card--home .sk-product-card__launchers::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sk-brand-600, #08798c);
  box-shadow: 0 0 0 4px rgba(8, 121, 140, .1);
  transform: translateY(-50%);
}

.sk-product-card--home .sk-product-card__techline span.is-platform {
  background: #f1f5f9;
  color: #334155;
  border-color: #cbd5e1;
}

.sk-product-card--home .sk-product-card__launchers {
  border-bottom: 0;
}

.sk-product-card--home .sk-product-card__launchers span {
  width: 100%;
  min-width: 0;
  color: #7c2d12;
  background: #fff7ed;
  border-color: #fed7aa;
  font-weight: 800;
}

.sk-product-card--home .sk-product-card__media {
  grid-column: auto;
  grid-row: auto;
  width: 314px;
  height: 244px;
  min-height: 244px;
  margin: 0;
  border: 1px solid #dcecf2;
  border-radius: 13px;
  background: linear-gradient(180deg, #fff 0%, #f4fafc 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .72);
}

.sk-product-card--home .sk-product-card__media img {
  width: 96%;
  height: 92%;
  min-height: 0;
  padding: 0;
  object-fit: contain;
  object-position: center;
}

.sk-product-card--home .sk-product-card__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-top: 0;
}

.sk-product-card--home .sk-product-card__actions .sk-btn {
  min-height: 43px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
}

.sk-product-card--home .sk-product-card__actions .sk-btn:nth-child(n+3) {
  grid-column: auto;
}

.sk-product-card--home .sk-product-card__actions .sk-btn:only-child {
  grid-column: 1 / -1;
}

.sk-product-card--home .sk-btn--ghost {
  border-color: #9ed8e6;
  color: #0f6f86;
}

.sk-product-card--home .sk-btn--primary {
  border-color: #0f6f86;
  background: #0f6f86;
  box-shadow: 0 10px 22px rgba(15, 111, 134, .18);
}

.sk-product-card--category {
  width: 651px;
  min-height: 312px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid #d8eaf1;
  border-radius: 17px;
  background: linear-gradient(180deg, #fff 0%, #f9fdff 100%);
  box-shadow: 0 14px 34px rgba(15, 111, 134, .075), 0 2px 8px rgba(15, 23, 42, .035);
}

.sk-product-card--category:hover {
  border-color: #b7dde8;
  box-shadow: 0 18px 42px rgba(15, 111, 134, .11), 0 4px 12px rgba(15, 23, 42, .045);
  transform: translateY(-1px);
}

.sk-product-card--category .sk-product-card__home-body {
  display: grid;
  grid-template-columns: 251px 314px;
  gap: 14px;
  height: 224px;
  align-items: stretch;
}

.sk-product-card--category .sk-product-card__home-left {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
  overflow: hidden;
}

.sk-product-card--category .sk-product-card__brand {
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
}

.sk-product-card--category .sk-product-card__icon {
  width: 40px;
  height: 40px;
  margin-top: 1px;
  border: 0;
  border-radius: 11px;
  box-shadow: 0 8px 18px rgba(15, 111, 134, .11);
}

.sk-product-card--category .sk-product-card__brand h3 {
  margin-bottom: 4px;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 850;
}

.sk-product-card--category .sk-product-card__brand h3 a {
  display: -webkit-box;
  overflow: hidden;
  color: #07182c;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.sk-product-card--category .sk-product-card__brand p {
  display: -webkit-box;
  overflow: hidden;
  max-height: calc(1.32em * 2);
  color: #405166;
  font-size: 14px;
  line-height: 1.32;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.sk-product-card--category .sk-product-card__specs {
  margin-top: 0;
  overflow: hidden;
  border: 1px solid #dcecf2;
  border-radius: 13px;
  background: rgba(248, 253, 255, .78);
}

.sk-product-card--category .sk-product-card__badges,
.sk-product-card--category .sk-product-card__protocols,
.sk-product-card--category .sk-product-card__platforms,
.sk-product-card--category .sk-product-card__techline,
.sk-product-card--category .sk-product-card__launchers {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 31px;
  padding: 3px 10px;
  border-bottom: 1px solid #e5f0f5;
}

.sk-product-card--category .sk-product-card__badges {
  background: #f0fbff;
}

.sk-product-card--category .sk-product-card__badges span,
.sk-product-card--category .sk-product-card__protocols span,
.sk-product-card--category .sk-product-card__platforms span,
.sk-product-card--category .sk-product-card__techline span,
.sk-product-card--category .sk-product-card__launchers span {
  min-width: 82px;
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
}

.sk-product-card--category .sk-product-card__badges span:first-child {
  background: #ecfdf3;
  color: #166534;
  border-color: #aeeec1;
}

.sk-product-card--category .sk-product-card__protocols span {
  background: #eaf7ff;
  color: #075985;
  border-color: #bfe7fb;
}

.sk-product-card--category .sk-product-card__platforms span {
  background: #ecfdf3;
  color: #166534;
  border-color: #aeeec1;
}

.sk-product-card--category .sk-product-card__platforms span:nth-child(2) {
  background: #f1f5f9;
  color: #334155;
  border-color: #cbd5e1;
}

.sk-product-card--category .sk-product-card__techline {
  position: relative;
  padding-left: 28px;
}

.sk-product-card--category .sk-product-card__techline::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sk-brand-600, #08798c);
  box-shadow: 0 0 0 4px rgba(8, 121, 140, .1);
  transform: translateY(-50%);
}

.sk-product-card--category .sk-product-card__launchers {
  position: relative;
  padding-left: 28px;
}

.sk-product-card--category .sk-product-card__launchers::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sk-brand-600, #08798c);
  box-shadow: 0 0 0 4px rgba(8, 121, 140, .1);
  transform: translateY(-50%);
}

.sk-product-card--category .sk-product-card__techline span.is-platform {
  background: #f1f5f9;
  color: #334155;
  border-color: #cbd5e1;
}

.sk-product-card--category .sk-product-card__launchers {
  border-bottom: 0;
}

.sk-product-card--category .sk-product-card__launchers span {
  width: 100%;
  min-width: 0;
  color: #7c2d12;
  background: #fff7ed;
  border-color: #fed7aa;
}

.sk-product-card--category .sk-product-card__media {
  grid-column: auto;
  grid-row: auto;
  width: 314px;
  height: 224px;
  min-height: 224px;
  margin: 0;
  border: 1px solid #dcecf2;
  border-radius: 13px;
  background: linear-gradient(180deg, #fff 0%, #f4fafc 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .72);
}

.sk-product-card--category .sk-product-card__media img {
  width: 96%;
  height: 92%;
  min-height: 0;
  padding: 0;
  object-fit: contain;
  object-position: center;
}

.sk-product-card--category .sk-product-card__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-top: 0;
}

.sk-product-card--category .sk-product-card__actions .sk-btn {
  min-height: 40px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
}

.sk-product-card--category .sk-product-card__actions .sk-btn:nth-child(n+3) {
  grid-column: auto;
}

.sk-product-card--category .sk-product-card__actions .sk-btn:only-child {
  grid-column: 1 / -1;
}

.sk-product-card--category .sk-btn--ghost {
  border-color: #9ed8e6;
  color: #0f6f86;
}

.sk-product-card--category .sk-btn--primary {
  border-color: #0f6f86;
  background: #0f6f86;
  box-shadow: 0 10px 22px rgba(15, 111, 134, .18);
}

.sk-home-float {
  position: fixed;
  z-index: 44;
  display: none;
}

.sk-home-float a,
.sk-home-float button {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  writing-mode: vertical-rl;
  letter-spacing: 2px;
}

.sk-home-float button {
  padding: 0;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.sk-home-float--left {
  left: 0;
  top: 502px;
}

.sk-home-float--right {
  right: 0;
  top: 380px;
}

.sk-home-float--left a,
.sk-home-float--right a,
.sk-home-float--right button {
  width: 44px;
  min-height: 120px;
  border-radius: 0 8px 8px 0;
  background: #0f6f86;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .16);
}

.sk-home-float--right a,
.sk-home-float--right button {
  border-radius: 8px 0 0 8px;
}

:where(a, button, input):focus-visible {
  outline: 3px solid rgba(15, 111, 134, .2);
  outline-offset: 2px;
}

.sk-btn {
  transition: transform .18s ease, border-color .18s ease, background-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.sk-btn--primary,
.sk-product-card--home .sk-btn--primary,
.sk-product-card--category .sk-btn--primary {
  box-shadow: 0 9px 20px rgba(15, 111, 134, .16);
}

.sk-btn--primary:hover,
.sk-product-card--home .sk-btn--primary:hover,
.sk-product-card--category .sk-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(15, 111, 134, .2);
}

.site-header__quick a:hover {
  border-color: #b9dce7;
  background: #f6fbfd;
  color: #0f6f86;
  transform: translateY(-1px);
}

.site-header__inner--nav .site-nav > a.is-active,
.site-header__inner--nav .site-nav__item > a.is-active {
  box-shadow: inset 0 -3px 0 rgba(255, 255, 255, .34);
}

.sk-sidebox:not(.sk-sidebox--catalog) {
  border-color: #dce9ef;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(15, 23, 42, .035);
}

.sk-sidebox:not(.sk-sidebox--catalog) .sk-sidebox__head h3 {
  margin-bottom: 12px;
  color: #102536;
  font-size: 17px;
}

.sk-hot-list {
  gap: 10px;
}

.sk-hot-list__rank {
  border-radius: 999px;
  background: #fff8ed;
  color: #a85305;
}

.sk-hot-list__link img {
  border-color: #dce9ef;
  border-radius: 9px;
  background: #fff;
}

.sk-hot-list__link span,
.sk-news-list a {
  display: -webkit-box;
  overflow: hidden;
  color: #243548;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.sk-hot-list__link em {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sk-news-list a:hover,
.sk-hot-list__link:hover span {
  color: #0f6f86;
}

.sk-filter-panel,
.product-search-container.guide-quick-search,
.product-quick-nav.price-quick-nav {
  box-shadow: 0 8px 20px rgba(15, 23, 42, .045);
}

.sk-filter-panel--product .sk-filter-search strong {
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(15, 111, 134, .12);
}

.sk-filter-panel--product .sk-filter-search em {
  color: #486273;
}

.sk-filter-chips button,
.price-filter-chip {
  transition: transform .18s ease, border-color .18s ease, background-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.sk-filter-chips button:hover,
.sk-filter-chips button.is-active,
.price-filter-chip:hover,
.price-filter-chip.is-active {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(15, 111, 134, .08);
}

.sk-brand-grid a {
  border-color: #dce9ef;
  border-radius: 10px;
  transition: transform .18s ease, border-color .18s ease, background-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.sk-brand-grid a:hover {
  border-color: #a9d6e2;
  background: #f5fbfd;
  color: #0f6f86;
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(15, 111, 134, .07);
}

.product-search-btn,
.price-search-container .product-search-btn,
.download-search-container .user-search-btn {
  position: relative;
  transition: background-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.product-search-btn:hover,
.price-search-container .product-search-btn:hover,
.download-search-container .user-search-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(15, 111, 134, .16);
}

.product-search-btn i,
.price-search-container .product-search-btn i {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  font-size: 0;
}

.product-search-btn i::before,
.price-search-container .product-search-btn i::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 1px;
  width: 10px;
  height: 10px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.product-search-btn i::after,
.price-search-container .product-search-btn i::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1px;
  width: 8px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: center;
}

.sk-product-card--home,
.sk-product-card--category {
  box-shadow: 0 13px 30px rgba(15, 111, 134, .07), 0 1px 6px rgba(15, 23, 42, .035);
}

.sk-product-card--home .sk-product-card__media,
.sk-product-card--category .sk-product-card__media {
  border-color: #d4e7ef;
  background: linear-gradient(180deg, #fff 0%, #f6fbfd 100%);
}

.sk-product-card--home .sk-product-card__specs,
.sk-product-card--category .sk-product-card__specs {
  border-color: #d9ebf2;
  background: #fbfdff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85);
}

.sk-product-card--home .sk-product-card__protocols span,
.sk-product-card--category .sk-product-card__protocols span {
  background: #eef8fc;
  color: #07566a;
  border-color: #c8e8f1;
}

.sk-product-card--home .sk-product-card__badges span:first-child,
.sk-product-card--category .sk-product-card__badges span:first-child,
.sk-product-card--home .sk-product-card__platforms span,
.sk-product-card--category .sk-product-card__platforms span {
  background: #eefaf2;
  color: #146c33;
}

.sk-product-card--home .sk-product-card__launchers span,
.sk-product-card--category .sk-product-card__launchers span {
  background: #fff8ed;
  color: #8b3d0c;
}

.guide-sidebar .article-side-section,
.guide-index-intro,
.sk-guide-finder {
  box-shadow: 0 6px 16px rgba(15, 23, 42, .035);
}

.guide-sidebar .guide-product-item.active > .guide-product-row,
.guide-sidebar .guide-product-item.open > .guide-product-row {
  background: #eef8fc;
  color: #0f6f86;
}

.guide-sidebar .guide-article-item.active .guide-article-link {
  background: rgba(15, 111, 134, .07);
}

.guide-quick-item {
  box-shadow: 0 6px 16px rgba(15, 111, 134, .045);
}

.guide-quick-count {
  background: #f6fbfd;
}

.price-plan-grid .price-plan-card {
  border-left: 1px solid #d9edf3;
  box-shadow: 0 7px 18px rgba(15, 23, 42, .04);
}

.price-row-logo {
  box-shadow: 0 6px 14px rgba(15, 23, 42, .07);
}

.price-plan-card .trial-button:hover,
.price-plan-card .cta-button:hover {
  transform: translateY(-1px);
}

.download-center-page .user-product-item,
.launcher-download-section .launcher-download-item,
.download-toolbox-section .backend-download-item,
.download-accordion {
  box-shadow: 0 6px 16px rgba(15, 23, 42, .035);
}

.sk-home-float a,
.sk-home-float button {
  opacity: .82;
  transition: opacity .18s ease, transform .18s ease, background-color .18s ease;
}

.sk-home-float a:hover,
.sk-home-float button:hover {
  opacity: 1;
  background: #0b586a;
  transform: translateX(0);
}

.sk-home-float--left a:hover {
  transform: translateX(2px);
}

.sk-home-float--right a:hover,
.sk-home-float--right button:hover {
  transform: translateX(-2px);
}

.sk-product-card--home .sk-product-card__media,
.sk-product-card--category .sk-product-card__media {
  position: relative;
}

.sk-product-card__price-badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border: 1px solid rgba(15, 111, 134, .18);
  border-radius: 999px;
  background: rgba(15, 111, 134, .92) !important;
  color: #fff !important;
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 850;
  box-shadow: 0 8px 18px rgba(15, 111, 134, .2);
  pointer-events: none;
}

.sk-product-card--has-selling.sk-product-card--home {
  min-height: 350px;
}

.sk-product-card--has-selling.sk-product-card--category {
  min-height: 312px;
}

.sk-product-card--has-selling.sk-product-card--home .sk-product-card__home-body,
.sk-product-card--has-selling.sk-product-card--category .sk-product-card__home-body {
  height: auto;
  min-height: 244px;
}

.sk-product-card__selling-points {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #30465a;
  font-size: 12px;
  line-height: 1.35;
}

.sk-product-card__selling-points li {
  position: relative;
  min-width: 0;
  padding-left: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sk-product-card__selling-points li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: .46em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #1f9aaa;
  box-shadow: 0 0 0 3px rgba(31, 154, 170, .1);
}

.sk-sidebox--catalog .sk-category-list li:nth-child(1) a,
.sk-sidebox--catalog .sk-category-list li:nth-child(10) a {
  background: linear-gradient(180deg, #f9fdff 0%, #f0f9fc 100%);
  border-color: #cfe7ef;
}

.sk-sidebox--catalog .sk-category-list li:nth-child(n+2):nth-child(-n+5) a {
  background: #f7fcfe;
}

.sk-sidebox--catalog .sk-category-list li:nth-child(6),
.sk-sidebox--catalog .sk-category-list li:nth-child(7) {
  padding-top: 8px;
  border-top: 1px solid #e5f0f5;
}

.sk-sidebox--catalog .sk-category-list li:nth-child(n+6):nth-child(-n+9) a {
  background: #fbfdff;
}

body {
  background: var(--sk-bg);
  color: var(--sk-text-700);
}

a {
  color: var(--sk-brand-600);
}

a:hover {
  color: var(--sk-brand-700);
}

h1,
h2,
h3,
h4 {
  color: var(--sk-text-900);
  font-weight: 800;
}

:where(a, button, input):focus-visible {
  outline-color: rgba(8, 121, 140, .22);
}

.site-header--double {
  background: rgba(255, 255, 255, .9);
  border-bottom: 1px solid rgba(226, 232, 240, .78);
  box-shadow: 0 2px 12px rgba(15, 23, 42, .035);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header--double.is-scrolled {
  box-shadow: 0 10px 28px rgba(15, 23, 42, .075);
}

.site-header__top,
.site-header__navrow {
  background: transparent;
}

.site-header__top {
  border-bottom: 1px solid var(--sk-line-soft);
}

.site-header__inner--top {
  height: 66px;
}

.site-header__inner--nav {
  height: 48px;
  gap: 16px;
}

.site-header__quick {
  gap: 10px;
}

.site-header__quick a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--sk-text-500);
}

.site-header__quick a:hover {
  border-color: rgba(8, 121, 140, .18);
  background: var(--sk-brand-50);
  color: var(--sk-brand-700);
  transform: translateY(-1px);
}

.site-header__inner--nav .site-nav {
  gap: 6px;
}

.site-header__inner--nav .site-nav > a,
.site-header__inner--nav .site-nav__item > a {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--sk-text-700);
  font-size: 14px;
  font-weight: 700;
}

.site-header__inner--nav .site-nav > a:hover,
.site-header__inner--nav .site-nav > a.is-active,
.site-header__inner--nav .site-nav__item > a:hover,
.site-header__inner--nav .site-nav__item > a.is-active {
  background: var(--sk-brand-50);
  color: var(--sk-brand-700);
  box-shadow: none;
}

.site-header__inner--nav .site-nav__dropdown {
  border-color: var(--sk-line-soft);
  border-radius: var(--sk-radius-md);
  box-shadow: var(--sk-shadow);
}

.site-header__inner--nav .site-nav__dropdown a {
  color: var(--sk-text-700);
  border-radius: var(--sk-radius-sm);
}

.site-header__inner--nav .site-nav__dropdown a:hover {
  background: var(--sk-brand-50);
  color: var(--sk-brand-700);
}

.site-nav__tool {
  min-height: 34px;
  border: 1px solid rgba(8, 121, 140, .22);
  border-radius: 999px;
  background: #fff;
  color: var(--sk-brand-700);
  box-shadow: var(--sk-shadow-xs);
}

.site-nav__tool:hover {
  border-color: rgba(8, 121, 140, .34);
  background: var(--sk-brand-50);
  color: var(--sk-brand-700);
  transform: translateY(-1px);
}

.sk-btn,
.price-plan-card .cta-button,
.price-plan-card .trial-button,
.product-search-btn,
.price-search-container .product-search-btn,
.price-search-container .product-search-reset-btn,
.download-search-container .user-search-btn,
.download-search-container .user-search-reset-btn,
.download-center-page .user-btn,
.launcher-download-section .user-download-menu-btn,
.download-toolbox-section .user-download-menu-btn,
.download-toolbox-section .user-register-btn,
.download-toolbox-section .user-login-btn {
  border-radius: 10px;
  transition: transform .18s ease, border-color .18s ease, background-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.sk-btn--primary,
.sk-product-card--home .sk-btn--primary,
.sk-product-card--category .sk-btn--primary,
.price-plan-card .cta-button,
.product-search-btn,
.price-search-container .product-search-btn,
.download-search-container .user-search-btn,
.download-toolbox-section .user-download-menu-btn,
.launcher-download-section .user-download-menu-btn {
  border-color: var(--sk-brand-600);
  background: var(--sk-brand-600);
  color: #fff;
  box-shadow: 0 8px 18px rgba(8, 121, 140, .18);
}

.sk-btn--primary:hover,
.sk-product-card--home .sk-btn--primary:hover,
.sk-product-card--category .sk-btn--primary:hover,
.price-plan-card .cta-button:hover,
.product-search-btn:hover,
.price-search-container .product-search-btn:hover,
.download-search-container .user-search-btn:hover,
.download-toolbox-section .user-download-menu-btn:hover,
.launcher-download-section .user-download-menu-btn:hover {
  border-color: var(--sk-brand-700);
  background: var(--sk-brand-700);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(8, 121, 140, .22);
}

.sk-btn--ghost,
.sk-product-card--home .sk-btn--ghost,
.sk-product-card--category .sk-btn--ghost,
.price-plan-card .trial-button,
.price-search-container .product-search-reset-btn,
.download-search-container .user-search-reset-btn,
.download-toolbox-section .user-login-btn {
  border-color: rgba(8, 121, 140, .22);
  background: #fff;
  color: var(--sk-brand-700);
  box-shadow: none;
}

.sk-btn--ghost:hover,
.sk-product-card--home .sk-btn--ghost:hover,
.sk-product-card--category .sk-btn--ghost:hover,
.price-plan-card .trial-button:hover,
.price-search-container .product-search-reset-btn:hover,
.download-search-container .user-search-reset-btn:hover,
.download-toolbox-section .user-login-btn:hover {
  border-color: rgba(8, 121, 140, .34);
  background: var(--sk-brand-50);
  color: var(--sk-brand-700);
  transform: translateY(-1px);
}

.sk-btn--cta,
.download-toolbox-section .user-register-btn {
  border-color: var(--sk-accent-500);
  background: var(--sk-accent-500);
  color: #fff;
  box-shadow: 0 8px 18px rgba(234, 101, 8, .16);
}

.sk-btn--cta:hover,
.download-toolbox-section .user-register-btn:hover {
  border-color: var(--sk-accent-600);
  background: var(--sk-accent-600);
  color: #fff;
}

.sk-home-products,
.sk-card,
.sk-product-card,
.sk-product-card--home,
.sk-product-card--category,
.sk-sidebox,
.sk-filter-panel,
.product-search-container.guide-quick-search,
.product-quick-nav.price-quick-nav,
.price-page-head,
.price-plan-grid .price-plan-card,
.download-center-page .user-product-item,
.download-center-page .backend-download-item,
.download-search-container,
.guide-sidebar .article-side-section,
.article-feedback-bar,
.sk-content,
.sk-article-row {
  border-color: var(--sk-line-soft);
  border-radius: var(--sk-radius-lg);
  background: var(--sk-surface);
  box-shadow: var(--sk-shadow-sm);
}

.sk-product-card--home,
.sk-product-card--category {
  border-color: var(--sk-line-soft);
  background: #fff;
  box-shadow: var(--sk-shadow-sm);
  position: relative;
}

.sk-product-card--home:hover,
.sk-product-card--category:hover,
.price-plan-grid .price-plan-card:hover,
.download-center-page .user-product-item:hover {
  border-color: rgba(8, 121, 140, .22);
  box-shadow: var(--sk-shadow);
  transform: translateY(-2px);
}

.sk-product-card--home .sk-product-card__brand h3 a,
.sk-product-card--category .sk-product-card__brand h3 a,
.price-plan-card .price-article-title,
.price-plan-card .price-article-title a,
.download-center-page .user-product-name,
.sk-article-row h3 a {
  color: var(--sk-text-900);
}

.sk-product-card--home .sk-product-card__brand p,
.sk-product-card--category .sk-product-card__brand p,
.price-row-summary,
.sk-article-row p {
  color: var(--sk-text-500);
  line-height: 1.6;
}

.sk-product-card--home .sk-product-card__icon,
.sk-product-card--category .sk-product-card__icon,
.price-row-logo,
.download-center-page .user-product-logo,
.download-center-page .backend-download-logo {
  border-radius: var(--sk-radius-md);
  box-shadow: 0 6px 16px rgba(15, 23, 42, .06);
}

.sk-product-card--home .sk-product-card__media,
.sk-product-card--category .sk-product-card__media {
  border-color: var(--sk-line-soft);
  border-radius: var(--sk-radius-md);
  background: linear-gradient(180deg, #fff 0%, var(--sk-surface-soft) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .72);
}

.sk-product-card--home .sk-product-card__specs,
.sk-product-card--category .sk-product-card__specs {
  border-color: var(--sk-line-soft);
  border-radius: var(--sk-radius-md);
  background: var(--sk-surface-soft);
  box-shadow: none;
}

.sk-product-card--home .sk-product-card__badges,
.sk-product-card--category .sk-product-card__badges {
  background: #fff;
}

.sk-product-card--home .sk-product-card__badges,
.sk-product-card--home .sk-product-card__protocols,
.sk-product-card--home .sk-product-card__platforms,
.sk-product-card--home .sk-product-card__techline,
.sk-product-card--home .sk-product-card__launchers,
.sk-product-card--category .sk-product-card__badges,
.sk-product-card--category .sk-product-card__protocols,
.sk-product-card--category .sk-product-card__platforms,
.sk-product-card--category .sk-product-card__techline,
.sk-product-card--category .sk-product-card__launchers {
  border-bottom-color: var(--sk-line-soft);
}

.sk-product-card--home .sk-product-card__badges span,
.sk-product-card--category .sk-product-card__badges span {
  border-color: transparent;
  background: var(--sk-success-50);
  color: #15803d;
}

.sk-product-card--home .sk-product-card__protocols span,
.sk-product-card--category .sk-product-card__protocols span,
.sk-product-card--home .sk-product-card__techline span.is-protocol,
.sk-product-card--category .sk-product-card__techline span.is-protocol {
  border-color: transparent;
  background: var(--sk-brand-50);
  color: var(--sk-brand-700);
}

.sk-product-card--home .sk-product-card__platforms span,
.sk-product-card--home .sk-product-card__platforms span:nth-child(2),
.sk-product-card--category .sk-product-card__platforms span,
.sk-product-card--category .sk-product-card__platforms span:nth-child(2),
.sk-product-card--home .sk-product-card__techline span.is-platform,
.sk-product-card--category .sk-product-card__techline span.is-platform {
  border-color: transparent;
  background: #f1f5f9;
  color: var(--sk-text-700);
}

.sk-product-card--home .sk-product-card__launchers span,
.sk-product-card--category .sk-product-card__launchers span {
  border-color: transparent;
  background: #fff;
  color: var(--sk-text-700);
}

.sk-product-card__price-badge {
  border-color: rgba(8, 121, 140, .16);
  background: rgba(8, 121, 140, .94) !important;
  box-shadow: 0 8px 18px rgba(8, 121, 140, .18);
}

.sk-product-card__status-ribbon {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: -42px;
  width: 148px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
  transform-origin: center;
  background: linear-gradient(135deg, #069c8f 0%, #14b8a6 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: .03em;
  box-shadow: 0 8px 18px rgba(20, 184, 166, .22);
  pointer-events: none;
}

.sk-product-card__status-ribbon::before,
.sk-product-card__status-ribbon::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, .45);
}

.sk-product-card__status-ribbon::before {
  left: 8px;
}

.sk-product-card__status-ribbon::after {
  right: 8px;
}

.sk-product-card__selling-points {
  color: var(--sk-text-700);
}

.sk-product-card__selling-points li::before {
  background: var(--sk-brand-600);
  box-shadow: 0 0 0 3px rgba(8, 121, 140, .1);
}

.sk-product-card--home .sk-product-card__techline,
.sk-product-card--category .sk-product-card__techline {
  gap: 8px;
  flex-wrap: wrap;
}

.sk-product-card--home .sk-product-card__techline span,
.sk-product-card--category .sk-product-card__techline span {
  width: auto;
  min-width: 0;
  padding: 0 12px;
  white-space: nowrap;
  font-weight: 850;
}

.sk-product-card--home .sk-product-card__techline span.is-protocol-group,
.sk-product-card--category .sk-product-card__techline span.is-protocol-group {
  border-color: transparent;
  background: var(--sk-brand-50);
  color: var(--sk-brand-700);
}

.sk-product-card--home .sk-product-card__techline span.is-platform-group,
.sk-product-card--category .sk-product-card__techline span.is-platform-group {
  border-color: transparent;
  background: #eefdf5;
  color: #15803d;
}

.sk-product-card--home .sk-product-card__launchers span.is-launcher-group,
.sk-product-card--category .sk-product-card__launchers span.is-launcher-group {
  border-color: transparent;
  background: #fff7ed;
  color: #9a3412;
}

.sk-filter-panel,
.product-search-container.guide-quick-search,
.product-quick-nav.price-quick-nav,
.download-search-container {
  padding: 18px;
  border-color: var(--sk-line-soft);
}

.sk-filter-search input,
.price-search-container .product-search-input,
.download-search-container .user-search-input {
  height: 44px;
  border-color: var(--sk-line);
  border-radius: var(--sk-radius-md);
  background: #fff;
  color: var(--sk-text-900);
}

.sk-filter-search input:focus,
.price-search-container .product-search-input:focus,
.download-search-container .user-search-input:focus {
  border-color: rgba(8, 121, 140, .45);
  box-shadow: 0 0 0 3px rgba(8, 121, 140, .1);
}

.sk-filter-panel--product .sk-filter-search strong {
  background: var(--sk-accent-50);
  color: var(--sk-accent-600);
  box-shadow: none;
}

.sk-filter-panel--product .sk-filter-search em,
.sk-filter-search span {
  color: var(--sk-text-500);
}

.sk-filter-chips button,
.price-filter-chip {
  min-height: 36px;
  border-color: var(--sk-line);
  border-radius: 999px;
  background: #fff;
  color: var(--sk-text-700);
  box-shadow: none;
}

.sk-filter-chips button:hover,
.sk-filter-chips button.is-active,
.price-filter-chip:hover,
.price-filter-chip.is-active {
  border-color: rgba(8, 121, 140, .32);
  background: var(--sk-brand-50);
  color: var(--sk-brand-700);
  box-shadow: none;
  transform: translateY(-1px);
}

.price-filter-chip.is-active,
.sk-filter-chips button.is-active {
  background: var(--sk-brand-600);
  color: #fff;
  border-color: var(--sk-brand-600);
}

.price-page-head h1,
.price-page-head h2,
.sk-section-head--line h1,
.sk-section-head--line h2 {
  color: var(--sk-text-900);
}

.price-page-head p,
.price-row-summary {
  color: var(--sk-text-500);
}

.price-trust-strip span {
  border-color: transparent;
  background: var(--sk-success-50);
  color: #166534;
}

.price-plan-grid .price-plan-card {
  border-left: 1px solid var(--sk-line-soft);
  border-radius: var(--sk-radius-lg);
}

.price-plan-card .price-tag {
  color: var(--sk-accent-600);
}

.price-plan-card .price-tag span {
  color: var(--sk-text-500);
}

.sk-sidebox,
.sk-home-layout .sk-sidebar,
.sk-home-layout .sk-sidebox,
.sk-sidebox:not(.sk-sidebox--catalog) {
  border-color: var(--sk-line-soft);
  border-radius: var(--sk-radius-lg);
  box-shadow: var(--sk-shadow-sm);
}

.sk-sidebox__head,
.sk-home-layout .sk-sidebox__head,
.sk-sidebox--catalog .sk-sidebox__head {
  border-bottom-color: var(--sk-line-soft);
  background: linear-gradient(180deg, #fff 0%, var(--sk-surface-soft) 100%);
}

.sk-sidebox__head h3,
.sk-home-layout .sk-sidebox__head h3,
.sk-sidebox:not(.sk-sidebox--catalog) .sk-sidebox__head h3,
.sk-sidebox--catalog .sk-sidebox__head h3 {
  color: var(--sk-text-900);
  font-size: 16px;
  font-weight: 800;
}

.sk-sidebox--catalog .sk-category-list a {
  min-height: 36px;
  border-color: var(--sk-line-soft);
  border-radius: var(--sk-radius-md);
  background: #fff;
  color: var(--sk-text-700);
  font-weight: 700;
}

.sk-sidebox--catalog .sk-category-list a:hover {
  border-color: rgba(8, 121, 140, .24);
  background: var(--sk-brand-50);
  color: var(--sk-brand-700);
  transform: translateY(-1px);
}

.sk-sidebox--catalog .sk-category-list li:nth-child(1) a,
.sk-sidebox--catalog .sk-category-list li:nth-child(10) a {
  border-color: rgba(8, 121, 140, .2);
  background: var(--sk-brand-50);
  color: var(--sk-brand-700);
}

.sk-sidebox--catalog .sk-category-list li:nth-child(6),
.sk-sidebox--catalog .sk-category-list li:nth-child(7) {
  border-top-color: var(--sk-line-soft);
}

.sk-hot-list__rank,
.sk-home-layout .sk-hot-list__rank {
  width: 22px;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: var(--sk-brand-600);
  font-size: 15px;
  font-weight: 850;
}

.sk-hot-list__link span,
.sk-news-list a,
.sk-home-layout .sk-hot-list__link span,
.sk-home-layout .sk-news-list a {
  color: var(--sk-text-900);
}

.sk-hot-list__link em,
.sk-home-layout .sk-hot-list__link em {
  color: var(--sk-text-500);
}

.sk-news-list a:hover,
.sk-hot-list__link:hover span {
  color: var(--sk-brand-700);
}

.sk-content {
  color: var(--sk-text-700);
  line-height: 1.82;
}

.sk-content h1 {
  color: var(--sk-text-900);
  font-size: 32px;
  line-height: 1.3;
}

.sk-content h2 {
  margin-top: 34px;
  color: var(--sk-text-900);
  font-size: 23px;
  line-height: 1.4;
}

.sk-content p {
  color: var(--sk-text-700);
}

.sk-content img {
  border: 1px solid var(--sk-line-soft);
  border-radius: var(--sk-radius-md);
  box-shadow: var(--sk-shadow-sm);
}

.guide-sidebar .guide-product-item.active > .guide-product-row,
.guide-sidebar .guide-product-item.open > .guide-product-row,
.guide-sidebar .guide-article-item.active .guide-article-link {
  background: var(--sk-brand-50);
  color: var(--sk-brand-700);
}

.guide-sidebar .guide-article-item.active::before {
  background: var(--sk-brand-600);
}

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

  .site-logo::before {
    display: none;
  }
}

@media (min-width: 1280px) {
  .sk-home-float {
    display: block;
  }
}

@media (max-width: 1060px) {
  .site-header__quick {
    display: none;
  }

  .sk-brand-grid,
  .guide-quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .launcher-recommend-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sk-guide-shell,
  .sk-guide-finder {
    grid-template-columns: 1fr;
  }

  .product-search-container.guide-quick-search {
    grid-template-columns: minmax(0, 1fr) 48px 70px;
  }

  .article-sidebar.guide-sidebar {
    position: static;
    width: auto;
    max-height: none;
  }
}

@media (max-width: 760px) {
  .site-header__inner--top {
    height: 66px;
  }

  .site-header__inner--nav {
    height: 0;
    min-height: 0;
  }

  .site-nav__tool {
    display: none;
  }

  .site-header__inner--nav .site-nav {
    top: 66px;
    margin-left: 0;
    background: #fff;
  }

  .site-header__inner--nav .site-nav__item {
    width: 100%;
    display: grid;
  }

  .site-header__inner--nav .site-nav > a,
  .site-header__inner--nav .site-nav__item > a {
    min-height: 40px;
    padding: 0 13px;
    color: var(--sk-heading);
    border-radius: 7px;
    justify-content: flex-start;
  }

  .site-header__inner--nav .site-nav > a:hover,
  .site-header__inner--nav .site-nav > a.is-active,
  .site-header__inner--nav .site-nav__item > a:hover,
  .site-header__inner--nav .site-nav__item > a.is-active {
    background: var(--sk-brand-soft);
    color: var(--sk-brand-dark);
  }

  .site-header__inner--nav .site-nav__dropdown {
    position: static;
    min-width: 0;
    padding: 4px 0 4px 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-header__inner--nav .site-nav__dropdown::before {
    display: none;
  }

  .site-header__inner--nav .site-nav__dropdown a {
    min-height: 34px;
    color: var(--sk-muted);
  }

  .sk-product-card,
  .sk-price-row,
  .price-plan-grid .price-plan-card,
  .sk-download-row,
  .sk-article-row {
    grid-template-columns: 1fr;
  }

  .price-page-head {
    flex-direction: column;
    gap: 8px;
  }

  .price-search-container {
    grid-template-columns: 1fr;
  }

  .price-row-price,
  .price-row-actions {
    justify-content: flex-start;
  }

  .price-plan-card .product-actions {
    flex-wrap: wrap;
  }

  .sk-product-card__media {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    min-height: 150px;
  }

  .sk-product-card__body {
    grid-column: auto;
    grid-row: auto;
  }

  .sk-layout--product .sk-filter-panel {
    width: 100%;
    margin-left: 0;
  }

  .sk-filter-panel--product .sk-filter-search {
    grid-template-columns: 1fr;
  }

  .sk-filter-panel--product .sk-filter-search span {
    flex-wrap: wrap;
    white-space: normal;
  }

  .sk-layout--product .sk-product-feed {
    padding-left: 0;
  }

  .sk-product-card--category {
    width: 100%;
    min-height: 0;
  }

  .sk-product-card--category .sk-product-card__home-body {
    grid-template-columns: 1fr;
    height: auto;
  }

  .sk-product-card--category .sk-product-card__media {
    width: 100%;
    height: auto;
    min-height: 150px;
  }

  .sk-product-card--shared .sk-product-card__media {
    margin: 0 18px 18px;
  }

  .sk-product-card--shared .sk-product-card__actions {
    grid-template-columns: 1fr;
  }

  .sk-brand-grid,
  .guide-quick-grid {
    grid-template-columns: 1fr;
  }

  .launcher-recommend-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .launcher-recommend-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-search-container.guide-quick-search {
    grid-template-columns: 1fr;
  }

  .sk-price-row__side {
    justify-items: start;
  }

  .sk-download-row__actions {
    justify-content: flex-start;
  }

  .download-search-container {
    grid-template-columns: 1fr;
  }

  .launcher-download-section .backend-download-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .launcher-download-section .launcher-download-item,
  .download-toolbox-section .backend-download-item {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .launcher-download-section .user-btn-group,
  .download-toolbox-section .user-btn-group,
  .download-toolbox-section .download-action-links,
  .download-toolbox-section .download-action-main {
    grid-column: 1 / -1;
    grid-row: auto;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    min-width: 0;
  }

  .download-toolbox-section .user-product-logo,
  .download-toolbox-section .backend-download-logo {
    grid-row: 1 / 2;
  }

  .download-accordion-head {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .download-accordion-head > i {
    display: none;
  }
}

@media (max-width: 480px) {
  .launcher-recommend-grid {
    grid-template-columns: 1fr;
  }
}

:root {
  --sk-container-width: 1180px;
  --sk-main-width: 820px;
  --sk-sidebar-width: 280px;
  --sk-page-gap: 28px;
  --sk-feature-float-offset: 324px;
  --sk-service-float-offset: 74px;
}

.sk-wrap,
.site-header__inner {
  width: min(var(--sk-container-width), calc(100% - 40px));
}

.sk-layout,
.sk-layout--product,
.sk-home-layout {
  grid-template-columns: minmax(0, var(--sk-main-width)) var(--sk-sidebar-width);
  gap: var(--sk-page-gap);
  justify-content: center;
}

.sk-sidebar,
.sk-home-layout .sk-sidebar {
  width: var(--sk-sidebar-width);
}

.sk-layout--product .sk-filter-panel {
  width: 100%;
  margin-left: 0;
}

.sk-layout--product .sk-product-feed {
  padding-left: 0;
}

.sk-product-card--home,
.sk-product-card--category {
  width: 100%;
  border-radius: 16px;
  padding-left: 20px;
  padding-right: 20px;
}

.sk-product-card--home .sk-product-card__home-body,
.sk-product-card--category .sk-product-card__home-body {
  width: 100%;
  max-width: 1040px;
  height: auto;
  min-height: 226px;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.sk-product-card--home .sk-product-card__media,
.sk-product-card--category .sk-product-card__media {
  width: 100%;
  max-width: none;
}

.sk-product-card--home .sk-product-card__home-left,
.sk-product-card--category .sk-product-card__home-left {
  overflow: visible;
  justify-items: start;
}

.sk-product-card--home .sk-product-card__brand,
.sk-product-card--category .sk-product-card__brand,
.sk-product-card--home .sk-product-card__specs,
.sk-product-card--category .sk-product-card__specs,
.sk-product-card--home .sk-product-card__summary,
.sk-product-card--category .sk-product-card__summary,
.sk-product-card--home .sk-product-card__selling-points,
.sk-product-card--category .sk-product-card__selling-points {
  width: 100%;
  max-width: none;
}

.sk-product-card--home .sk-product-card__brand p.sk-product-card__subtitle,
.sk-product-card--category .sk-product-card__brand p.sk-product-card__subtitle {
  max-height: none;
  margin-top: 2px;
  font-size: 13px;
  line-height: 1.45;
  -webkit-line-clamp: 2;
}

.sk-product-card--home .sk-product-card__summary,
.sk-product-card--category .sk-product-card__summary {
  display: -webkit-box;
  overflow: hidden;
  color: var(--sk-text-600);
  font-size: 13px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.sk-product-card--home .sk-product-card__actions,
.sk-product-card--category .sk-product-card__actions {
  width: 100%;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.site-header__inner--nav {
  justify-content: flex-start;
}

.site-header__inner--nav .site-nav {
  flex: 1;
}

.site-header__quick {
  margin-left: auto;
}

.site-header__quick a:last-child {
  border-color: rgba(8, 121, 140, .22);
  color: var(--sk-brand-700);
}

.site-header__quick a:last-child:hover {
  border-color: rgba(8, 121, 140, .34);
}

.site-header__quick a.is-active {
  border-color: rgba(8, 121, 140, .28);
  background: var(--sk-brand-50);
  color: var(--sk-brand-700);
}

.sk-sidebox--catalog .sk-category-list li:nth-child(10) a {
  border-color: var(--sk-line-soft);
  background: #fff;
  color: var(--sk-text-700);
}

.sk-sidebox--catalog .sk-category-list a.is-active {
  border-color: rgba(8, 121, 140, .32);
  background: var(--sk-brand-50);
  color: var(--sk-brand-700);
  box-shadow: inset 3px 0 0 var(--sk-brand-600);
}

.price-compare-section {
  margin-top: 22px;
}

.price-compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--sk-line-soft);
  border-radius: var(--sk-radius-lg);
  background: #fff;
  box-shadow: var(--sk-shadow-sm);
}

.compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: separate;
  border-spacing: 0;
}

.compare-table th {
  padding: 14px 16px;
  border-bottom: 1px solid var(--sk-line);
  background: var(--sk-surface-soft);
  color: var(--sk-text-700);
  font-size: 13px;
  font-weight: 850;
  text-align: left;
  white-space: nowrap;
}

.compare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--sk-line-soft);
  color: var(--sk-text-500);
  font-size: 13px;
  line-height: 1.5;
  vertical-align: middle;
}

.compare-table tr:last-child td {
  border-bottom: 0;
}

.compare-table td strong {
  color: var(--sk-text-900);
  font-weight: 850;
}

.price-text {
  color: var(--sk-accent-600);
  font-weight: 900;
  white-space: nowrap;
}

.price-text em {
  margin-left: 2px;
  color: var(--sk-text-500);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.compare-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.compare-actions a {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid rgba(8, 121, 140, .22);
  border-radius: 999px;
  background: #fff;
  color: var(--sk-brand-700);
  font-size: 12px;
  font-weight: 800;
}

.compare-actions a.compare-primary {
  border-color: var(--sk-brand-600);
  background: var(--sk-brand-600);
  color: #fff;
}

.sk-article-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 7px;
}

.sk-article-badges span {
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--sk-brand-50);
  color: var(--sk-brand-700);
  font-size: 12px;
  font-weight: 800;
}

.sk-article-badges span:first-child {
  background: #f1f5f9;
  color: var(--sk-text-700);
}

.sk-article-more {
  margin-top: 10px;
  display: inline-flex;
  color: var(--sk-brand-700);
  font-size: 13px;
  font-weight: 850;
}

.sk-article-more::after {
  content: "→";
  margin-left: 4px;
}

.download-page-head {
  margin-bottom: 18px;
  padding: 22px 20px;
  border: 1px solid var(--sk-line-soft);
  border-radius: var(--sk-radius-lg);
  background: #fff;
  box-shadow: var(--sk-shadow-sm);
}

.download-page-head h1,
.download-page-head h2 {
  margin: 0 0 8px;
  color: var(--sk-text-900);
  font-size: 28px;
  line-height: 1.3;
  font-weight: 850;
}

.download-page-head p {
  max-width: 720px;
  color: var(--sk-text-500);
  font-size: 15px;
  line-height: 1.7;
}

.download-product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 5px 0 2px;
}

.download-product-badges span {
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--sk-brand-50);
  color: var(--sk-brand-700);
  font-size: 12px;
  font-weight: 800;
}

.download-product-badges span:nth-child(n+3) {
  background: #f1f5f9;
  color: var(--sk-text-700);
}

.download-product-badges span.is-success {
  background: var(--sk-success-50);
  color: #166534;
}

.sk-hot-list__link span,
.sk-home-layout .sk-hot-list__link span {
  -webkit-line-clamp: 2;
  line-height: 1.45;
}

.sk-home-float--left {
  display: block;
  left: max(20px, calc((100vw - var(--sk-container-width)) / 2 - var(--sk-feature-float-offset)));
  top: 50%;
  transform: translateY(-50%);
}

.sk-home-float--right {
  display: block;
  right: max(20px, calc((100vw - var(--sk-container-width)) / 2 - var(--sk-service-float-offset)));
  top: auto;
  bottom: 28px;
}

.sk-home-float--right button {
  position: relative;
  overflow: hidden;
  width: 54px;
  min-height: 54px;
  height: 54px;
  border: 1px solid rgba(8, 121, 140, .18);
  border-radius: 14px;
  background: #08798c;
  color: #fff;
  writing-mode: horizontal-tb;
  letter-spacing: 0;
  font-size: 12px;
  line-height: 1.22;
  text-align: center;
  font-weight: 850;
  text-shadow: none;
  box-shadow:
    0 10px 24px rgba(8, 121, 140, .22),
    inset 0 1px 0 rgba(255, 255, 255, .16);
}

.sk-home-float--right button::before {
  display: none;
}

.sk-home-float--left a {
  width: 42px;
  min-height: 110px;
  border-radius: 999px;
  background: #0f6f86;
  box-shadow: 0 12px 28px rgba(8, 121, 140, .18);
}

.home-feature-float,
.home-feature-float *,
.home-feature-float *::before,
.home-feature-float *::after {
  box-sizing: border-box;
}

.home-feature-float {
  position: fixed;
  left: max(20px, calc((100vw - var(--sk-container-width)) / 2 - var(--sk-feature-float-offset)));
  top: 50%;
  z-index: 45;
  width: 286px;
  pointer-events: none;
  transform: translateY(-50%);
}

.home-feature-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.home-feature-card {
  overflow: hidden;
  width: 304px;
  border: 1px solid rgba(8, 121, 140, .16);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, .13);
  pointer-events: auto;
  transition: width .2s ease, box-shadow .2s ease, transform .2s ease;
}

.home-feature-trigger {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 14px;
  cursor: pointer;
  background: linear-gradient(135deg, var(--sk-brand-600), #0f9aa6);
  color: #fff;
  font-size: 14px;
  font-weight: 850;
}

.home-feature-trigger-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.home-feature-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  font-size: 15px;
  line-height: 1;
}

.home-feature-arrow {
  font-size: 10px;
  transition: transform .18s ease;
}

.home-feature-panel {
  max-height: 360px;
  padding: 14px 16px 16px;
  transition: opacity .18s ease, max-height .2s ease, padding .2s ease;
}

.home-feature-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--sk-line-soft);
}

.home-feature-panel-head span:first-child {
  color: var(--sk-text-900);
  font-size: 14px;
  font-weight: 850;
}

.home-feature-panel-head span:last-child {
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--sk-brand-50);
  color: var(--sk-brand-700);
  font-size: 12px;
  font-weight: 800;
}

.home-feature-list {
  display: grid;
  gap: 0;
  max-height: 270px;
  margin: 0;
  padding: 0;
  overflow-y: auto;
  list-style: none;
}

.home-feature-item {
  padding: 10px 0;
  border-bottom: 1px solid var(--sk-line-soft);
}

.home-feature-item:last-child {
  border-bottom: 0;
}

.home-feature-item a {
  display: -webkit-box;
  overflow: hidden;
  color: var(--sk-text-700);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 750;
  text-decoration: none;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-feature-item a:hover {
  color: var(--sk-brand-700);
}

.home-feature-meta {
  margin-top: 6px;
  color: var(--sk-text-400);
  font-size: 12px;
}

.home-feature-toggle:not(:checked) ~ .home-feature-card {
  width: 48px;
}

.home-feature-float.is-user-collapsed,
.home-feature-float.is-auto-collapsed:not(.is-user-controlled) {
  width: 48px;
}

.home-feature-float.is-user-collapsed .home-feature-card {
  width: 48px;
}

.home-feature-float.is-auto-collapsed:not(.is-user-controlled) .home-feature-card {
  width: 48px;
}

.home-feature-toggle:not(:checked) ~ .home-feature-card .home-feature-panel {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  pointer-events: none;
}

.home-feature-float.is-user-collapsed .home-feature-panel {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  pointer-events: none;
}

.home-feature-float.is-auto-collapsed:not(.is-user-controlled) .home-feature-panel {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  pointer-events: none;
}

.home-feature-toggle:not(:checked) ~ .home-feature-card .home-feature-trigger {
  min-height: 128px;
  padding: 12px 0;
  justify-content: center;
  writing-mode: vertical-rl;
  letter-spacing: 2px;
}

.home-feature-float.is-user-collapsed .home-feature-trigger {
  min-height: 128px;
  padding: 12px 0;
  justify-content: center;
  writing-mode: vertical-rl;
  letter-spacing: 2px;
}

.home-feature-float.is-auto-collapsed:not(.is-user-controlled) .home-feature-trigger {
  min-height: 128px;
  padding: 12px 0;
  justify-content: center;
  writing-mode: vertical-rl;
  letter-spacing: 2px;
}

.home-feature-toggle:not(:checked) ~ .home-feature-card .home-feature-trigger-main {
  flex-direction: row;
}

.home-feature-float.is-user-collapsed .home-feature-trigger-main {
  flex-direction: row;
}

.home-feature-float.is-auto-collapsed:not(.is-user-controlled) .home-feature-trigger-main {
  flex-direction: row;
}

.home-feature-toggle:not(:checked) ~ .home-feature-card .home-feature-arrow {
  display: none;
}

.home-feature-float.is-user-collapsed .home-feature-arrow {
  display: none;
}

.home-feature-float.is-auto-collapsed:not(.is-user-controlled) .home-feature-arrow {
  display: none;
}

.home-feature-toggle:checked ~ .home-feature-card .home-feature-arrow {
  transform: rotate(180deg);
}

.sk-service-popover {
  position: absolute;
  right: 68px;
  bottom: -6px;
  overflow: hidden;
  width: 414px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(20, 184, 166, .2), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(8, 121, 140, .12), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, .86), rgba(236, 252, 253, .68));
  box-shadow:
    0 26px 70px rgba(15, 23, 42, .22),
    inset 0 1px 0 rgba(255, 255, 255, .75);
  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.sk-service-popover::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .5), rgba(255, 255, 255, 0) 38%),
    linear-gradient(180deg, rgba(255, 255, 255, .28), rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.sk-service-popover::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: 22px;
  width: 12px;
  height: 12px;
  border-top: 1px solid rgba(255, 255, 255, .72);
  border-right: 1px solid rgba(255, 255, 255, .72);
  background: rgba(242, 253, 254, .82);
  transform: rotate(45deg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.sk-service-popover strong {
  position: relative;
  z-index: 1;
  display: block;
  color: #073b43;
  font-size: 26px;
  line-height: 1.3;
  font-weight: 850;
  letter-spacing: -.2px;
}

.sk-service-popover p {
  position: relative;
  z-index: 1;
  margin: 10px 0 20px;
  color: #607383;
  font-size: 15px;
  line-height: 1.75;
}

.sk-service-contact-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

.sk-service-contact {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 92px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 18px;
  background: rgba(255, 255, 255, .48);
  box-shadow:
    0 12px 30px rgba(15, 23, 42, .06),
    inset 0 1px 0 rgba(255, 255, 255, .72);
  backdrop-filter: blur(14px) saturate(138%);
  -webkit-backdrop-filter: blur(14px) saturate(138%);
}

.sk-service-contact__icon {
  display: inline-flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 18px;
  background: rgba(255, 255, 255, .48);
  box-shadow:
    0 10px 24px rgba(8, 121, 140, .08),
    inset 0 1px 0 rgba(255, 255, 255, .75);
}

.sk-service-contact__icon.is-wechat {
  background: rgba(236, 253, 245, .58);
}

.sk-service-contact__icon img {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.sk-service-contact > div b,
.sk-service-contact > div span,
.sk-service-contact > div a {
  display: block;
}

.sk-service-contact > div b {
  color: #13293d;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 850;
}

.sk-service-contact > div span,
.sk-service-contact > div a {
  margin-top: 6px;
  color: #4b6174;
  font-size: 17px;
  line-height: 1.4;
  text-decoration: none;
  writing-mode: horizontal-tb;
  letter-spacing: 0;
  justify-content: flex-start;
  text-align: left;
}

.sk-service-popover .sk-service-contact a {
  width: auto;
  min-height: 0;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #4b6174;
  font-weight: 700;
}

.sk-service-contact a:hover {
  color: #08798c;
}

.sk-service-actions {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.sk-service-actions a {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(14, 165, 183, .74);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .2), rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, #17b7c8, #0b8fa1);
  color: #fff;
  writing-mode: horizontal-tb;
  letter-spacing: 0;
  font-size: 17px;
  font-weight: 850;
  box-shadow: 0 14px 28px rgba(8, 121, 140, .2);
}

.sk-service-actions a::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 45%;
  background: linear-gradient(180deg, rgba(255, 255, 255, .24), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.sk-service-actions a:last-child {
  border-color: rgba(8, 121, 140, .28);
  background: rgba(255, 255, 255, .42);
  color: #08798c;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
}

.sk-home-float--right.is-open .sk-service-popover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

[data-filter-item][hidden] {
  display: none !important;
}

.sk-entry-block--actions {
  margin-top: 20px;
  padding: 14px;
  border-color: rgba(8, 121, 140, .14);
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
}

.sk-entry-block--actions .sk-actions {
  margin-top: 0;
  gap: 10px;
}

.sk-entry-block--actions .sk-btn {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0;
  box-shadow: none;
}

.sk-entry-block--actions .sk-btn:hover {
  transform: translateY(-1px);
}

.sk-entry-block--actions .sk-btn--primary {
  border-color: var(--sk-brand-600);
  background: var(--sk-brand-600);
  color: #fff;
  box-shadow: 0 8px 18px rgba(8, 121, 140, .18);
}

.sk-entry-block--actions .sk-btn--ghost {
  border-color: rgba(8, 121, 140, .22);
  background: #f8fafc;
  color: var(--sk-brand-700);
}

.sk-entry-block--actions .sk-btn--cta {
  border-color: var(--sk-accent-600);
  background: var(--sk-accent-600);
  color: #fff;
  box-shadow: 0 8px 18px rgba(234, 88, 12, .18);
}

.sk-product-card--home,
.sk-product-card--category {
  overflow: hidden;
  border-color: rgba(15, 23, 42, .08);
  background: linear-gradient(180deg, #fff 0%, #fbfdfe 100%);
}

.sk-product-card--home::before,
.sk-product-card--category::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--sk-brand-600) 0%, var(--sk-accent-600) 100%);
  opacity: .88;
}

.sk-product-card--home .sk-product-card__brand,
.sk-product-card--category .sk-product-card__brand {
  align-items: flex-start;
}

.sk-product-card--home .sk-product-card__icon,
.sk-product-card--category .sk-product-card__icon {
  border: 1px solid rgba(8, 121, 140, .12);
  background: #fff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .06);
}

.sk-product-card--home .sk-product-card__media,
.sk-product-card--category .sk-product-card__media {
  border-color: rgba(8, 121, 140, .12);
  background: linear-gradient(180deg, #fff 0%, #f6fbfd 100%);
}

.sk-product-card--home .sk-product-card__specs,
.sk-product-card--category .sk-product-card__specs {
  border-color: rgba(8, 121, 140, .12);
  background: #fbfdff;
}

.sk-product-card--home .sk-product-card__badges span,
.sk-product-card--home .sk-product-card__protocols span,
.sk-product-card--home .sk-product-card__platforms span,
.sk-product-card--home .sk-product-card__techline span,
.sk-product-card--home .sk-product-card__launchers span,
.sk-product-card--category .sk-product-card__badges span,
.sk-product-card--category .sk-product-card__protocols span,
.sk-product-card--category .sk-product-card__platforms span,
.sk-product-card--category .sk-product-card__techline span,
.sk-product-card--category .sk-product-card__launchers span {
  min-height: 24px;
  border-radius: 999px;
}

.sk-product-card--home .sk-product-card__actions,
.sk-product-card--category .sk-product-card__actions {
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(8, 121, 140, .1);
}

.sk-product-card--home .sk-product-card__actions .sk-btn,
.sk-product-card--category .sk-product-card__actions .sk-btn {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 850;
}

.sk-product-card--home .sk-product-card__actions .sk-btn--ghost,
.sk-product-card--category .sk-product-card__actions .sk-btn--ghost {
  background: #fff;
}

.sk-product-card--home .sk-product-card__actions .sk-btn--primary,
.sk-product-card--category .sk-product-card__actions .sk-btn--primary {
  box-shadow: 0 8px 18px rgba(8, 121, 140, .16);
}

@media (max-width: 960px) {
  .sk-wrap,
  .site-header__inner {
    width: min(100% - 28px, var(--sk-container-width));
  }

  .sk-layout,
  .sk-layout--product,
  .sk-home-layout {
    grid-template-columns: 1fr;
  }

  .sk-sidebar {
    display: none;
  }

  .sk-product-card--home .sk-product-card__home-body,
  .sk-product-card--category .sk-product-card__home-body {
    grid-template-columns: 1fr;
  }

  .sk-product-card--home .sk-product-card__media,
  .sk-product-card--category .sk-product-card__media {
    width: 100%;
    height: auto;
    min-height: 180px;
  }

  .sk-home-float,
  .home-feature-float {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .sk-entry-block--actions {
    padding: 12px;
  }

  .sk-entry-block--actions .sk-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .sk-entry-block--actions .sk-btn {
    width: 100%;
    min-width: 0;
    padding: 0 10px;
    font-size: 13px;
  }

  .download-page-head {
    padding: 18px;
  }

  .download-page-head h1,
  .download-page-head h2 {
    font-size: 24px;
  }
}

@media (max-width: 380px) {
  .sk-entry-block--actions .sk-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header__inner--top {
    width: min(100% - 24px, var(--sk-container-width));
    height: 58px;
    min-height: 58px;
    padding: 7px 4px;
  }

  .site-header__navrow,
  .site-header__inner--nav {
    height: 0;
    min-height: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }

  .site-header__inner--nav {
    padding: 0;
  }

  .site-header__inner--nav .site-nav {
    top: 58px;
  }

  .site-logo {
    width: 168px;
    height: 43px;
  }

  .site-logo img {
    width: 168px;
    height: 43px;
  }

  .sk-wrap,
  .sk-home-layout,
  .sk-layout--download,
  .site-header__inner {
    width: min(100% - 24px, var(--sk-container-width));
  }

  .sk-page,
  .sk-home-page {
    padding-top: 18px;
  }

  .sk-layout,
  .sk-layout--product,
  .sk-home-layout,
  .sk-main-column,
  .sk-content,
  .sk-filter-panel,
  .download-center-page,
  .backend-download-section,
  .product-search-container,
  .download-search-container,
  .price-search-container,
  .price-plan-grid,
  .price-plan-grid .price-plan-card,
  .article-feedback-bar,
  .guide-sidebar .article-side-section {
    max-width: 100%;
    min-width: 0;
  }

  .sk-breadcrumb,
  .sk-section-kicker,
  .sk-article-head,
  .sk-article-head h1,
  .sk-content__summary,
  .sk-content__body,
  .sk-content__body h2,
  .sk-content__body h3,
  .sk-content__body h4,
  .sk-content__body p,
  .sk-content__body li,
  .sk-card h3,
  .sk-card p,
  .price-page-head h1,
  .price-page-head h2,
  .price-page-head p,
  .price-plan-card .price-article-title,
  .price-plan-card .price-article-title a,
  .price-row-summary,
  .download-page-head h1,
  .download-page-head h2,
  .download-page-head p,
  .download-center-page .user-product-name,
  .download-group-main strong,
  .download-group-main small {
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .price-plan-card .price-article-title,
  .price-plan-card .price-article-title a,
  .price-row-summary {
    display: block;
    text-overflow: clip;
    white-space: normal;
  }

  .sk-article-head {
    padding: 22px 18px;
    overflow: hidden;
  }

  .sk-article-head h1 {
    font-size: 25px;
    line-height: 1.26;
    letter-spacing: 0;
  }

  .sk-content__body table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .sk-content__body img {
    max-width: 100%;
    height: auto;
  }

  .sk-home-products {
    padding: 22px 12px 14px;
    overflow: hidden;
  }

  .sk-product-card--home,
  .sk-product-card--category {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    padding: 18px 16px;
    overflow: hidden;
  }

  .sk-product-card--home .sk-product-card__home-body,
  .sk-product-card--category .sk-product-card__home-body {
    grid-template-columns: minmax(0, 1fr);
    height: auto;
    min-width: 0;
    gap: 14px;
  }

  .sk-product-card--home .sk-product-card__home-left,
  .sk-product-card--category .sk-product-card__home-left,
  .sk-product-card--home .sk-product-card__body,
  .sk-product-card--category .sk-product-card__body {
    min-width: 0;
    overflow: visible;
  }

  .sk-product-card--home .sk-product-card__brand,
  .sk-product-card--category .sk-product-card__brand {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .sk-product-card--home .sk-product-card__brand h3,
  .sk-product-card--category .sk-product-card__brand h3 {
    font-size: 19px;
    line-height: 1.32;
  }

  .sk-product-card--home .sk-product-card__brand h3 a,
  .sk-product-card--category .sk-product-card__brand h3 a,
  .sk-product-card--home .sk-product-card__brand p,
  .sk-product-card--category .sk-product-card__brand p,
  .sk-product-card--home .sk-product-card__summary,
  .sk-product-card--category .sk-product-card__summary,
  .sk-product-card__selling-points li {
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .sk-product-card--home .sk-product-card__brand h3 a,
  .sk-product-card--category .sk-product-card__brand h3 a,
  .sk-product-card--home .sk-product-card__brand p,
  .sk-product-card--category .sk-product-card__brand p,
  .sk-product-card--home .sk-product-card__summary,
  .sk-product-card--category .sk-product-card__summary {
    display: block;
    max-height: none;
    overflow: visible;
    -webkit-box-orient: initial;
    -webkit-line-clamp: initial;
  }

  .sk-product-card--home .sk-product-card__media,
  .sk-product-card--category .sk-product-card__media {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .sk-product-card--home .sk-product-card__media img,
  .sk-product-card--category .sk-product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .sk-product-card--home .sk-product-card__specs,
  .sk-product-card--category .sk-product-card__specs {
    min-width: 0;
    overflow: hidden;
  }

  .sk-product-card--home .sk-product-card__badges,
  .sk-product-card--home .sk-product-card__protocols,
  .sk-product-card--home .sk-product-card__platforms,
  .sk-product-card--home .sk-product-card__techline,
  .sk-product-card--home .sk-product-card__launchers,
  .sk-product-card--category .sk-product-card__badges,
  .sk-product-card--category .sk-product-card__protocols,
  .sk-product-card--category .sk-product-card__platforms,
  .sk-product-card--category .sk-product-card__techline,
  .sk-product-card--category .sk-product-card__launchers {
    flex-wrap: wrap;
    min-width: 0;
  }

  .sk-product-card--home .sk-product-card__badges span,
  .sk-product-card--home .sk-product-card__protocols span,
  .sk-product-card--home .sk-product-card__platforms span,
  .sk-product-card--home .sk-product-card__techline span,
  .sk-product-card--home .sk-product-card__launchers span,
  .sk-product-card--category .sk-product-card__badges span,
  .sk-product-card--category .sk-product-card__protocols span,
  .sk-product-card--category .sk-product-card__platforms span,
  .sk-product-card--category .sk-product-card__techline span,
  .sk-product-card--category .sk-product-card__launchers span {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .sk-product-card--home .sk-product-card__actions,
  .sk-product-card--category .sk-product-card__actions,
  .price-plan-card .product-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .sk-product-card--home .sk-product-card__actions .sk-btn,
  .sk-product-card--category .sk-product-card__actions .sk-btn,
  .price-plan-card .cta-button,
  .price-plan-card .trial-button,
  .download-center-page .user-btn,
  .launcher-download-section .user-download-menu-btn,
  .download-toolbox-section .user-download-menu-btn,
  .download-toolbox-section .user-register-btn,
  .download-toolbox-section .user-login-btn {
    width: 100%;
    min-width: 0;
    white-space: normal;
    text-align: center;
  }

  .sk-filter-search,
  .sk-filter-panel--product .sk-filter-search,
  .price-search-container,
  .download-search-container,
  .product-search-container.guide-quick-search {
    grid-template-columns: minmax(0, 1fr);
  }

  .sk-filter-search input,
  .price-search-container .product-search-input,
  .download-search-container .user-search-input {
    width: 100%;
    min-width: 0;
  }

  .sk-filter-chips,
  .price-filter-bar,
  .price-trust-strip {
    display: flex;
    flex-wrap: nowrap;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .sk-filter-chips button,
  .price-filter-chip,
  .price-trust-strip span {
    flex: 0 0 auto;
    max-width: 82vw;
  }

  .article-feedback-bar {
    padding: 14px 16px;
  }

  .feedback-content {
    min-width: 0;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .feedback-link {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .price-page-head,
  .download-page-head {
    overflow: hidden;
  }

  .price-plan-grid .price-plan-card {
    overflow: hidden;
  }

  .price-row-info {
    min-width: 0;
  }

  .price-row-copy {
    min-width: 0;
  }

  .price-row-price,
  .price-row-actions {
    min-width: 0;
    flex-wrap: wrap;
  }

  .download-center-page .user-product-item,
  .launcher-download-section .launcher-download-item,
  .download-toolbox-section .backend-download-item,
  .download-accordion {
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .launcher-download-section .user-btn-group,
  .download-toolbox-section .user-btn-group,
  .download-toolbox-section .download-action-links,
  .download-toolbox-section .download-action-main,
  .download-action-links,
  .download-action-main {
    min-width: 0;
    flex-wrap: wrap;
  }
}

@media (max-width: 380px) {
  .site-header__inner--top {
    width: min(100% - 20px, var(--sk-container-width));
  }

  .site-logo {
    width: 150px;
    height: 38px;
  }

  .site-logo img {
    width: 150px;
    height: 38px;
  }

  .sk-wrap,
  .sk-home-layout,
  .sk-layout--download,
  .site-header__inner {
    width: min(100% - 20px, var(--sk-container-width));
  }

  .sk-article-head h1 {
    font-size: 24px;
  }

  .sk-product-card--home,
  .sk-product-card--category {
    padding: 16px 14px;
  }

  .sk-product-card--home .sk-product-card__actions,
  .sk-product-card--category .sk-product-card__actions,
  .price-plan-card .product-actions {
    grid-template-columns: 1fr;
  }
}
