:root {
  --kvms-blue: #1673c9;
  --kvms-blue-dark: #0d5ba8;
  --kvms-navy: #12365e;
  --kvms-navy-deep: #0e2b4c;
  --kvms-ink: #17233a;
  --kvms-body: #4a5568;
  --kvms-muted: #8a94a6;
  --kvms-line: #e3e8ee;
  --kvms-bg: #f4f6f9;
  --kvms-card: #ffffff;
  --kvms-green: #2e9c46;
  --kvms-radius: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.kvms-blog-theme {
  margin: 0;
  background: #fff;
  color: var(--kvms-body);
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

.kvms-blog-theme img {
  max-width: 100%;
  height: auto;
}

.kvms-blog-theme a {
  color: var(--kvms-blue);
  text-decoration: none;
}

.kvms-blog-theme a:hover {
  text-decoration: underline;
}

.kvms-blog-theme button,
.kvms-blog-theme input,
.kvms-blog-theme select,
.kvms-blog-theme textarea {
  font: inherit;
}

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

.kvms-topbar {
  background: var(--kvms-blue);
  color: #fff;
  font-size: 12.5px;
}

.kvms-topbar .kvms-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  gap: 8px;
  flex-wrap: wrap;
}

.kvms-topbar a {
  color: #fff;
}

.kvms-topbar__left,
.kvms-topbar__right,
.kvms-topbar__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.kvms-topbar__left {
  gap: 18px;
}

.kvms-topbar__divider {
  opacity: .45;
}

.kvms-header {
  position: relative;
  z-index: 5;
  background: #fff;
  border-bottom: 1px solid var(--kvms-line);
  box-shadow: 0 2px 8px rgba(18, 54, 94, .06);
}

.kvms-header__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px 0;
}

.kvms-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  white-space: nowrap;
}

.kvms-logo:hover {
  text-decoration: none;
}

.kvms-logo img {
  display: block;
  width: 175px;
  max-width: 100%;
  height: auto;
  max-height: 54px;
  object-fit: contain;
}

.kvms-nav {
  flex: 1;
}

.kvms-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--kvms-line);
  border-radius: 8px;
  background: #fff;
  color: var(--kvms-ink);
  cursor: pointer;
  padding: 0;
}

.kvms-menu-toggle:hover {
  border-color: var(--kvms-blue);
  color: var(--kvms-blue);
}

.kvms-menu-toggle__icon {
  position: relative;
  display: block;
  width: 19px;
  height: 14px;
}

.kvms-menu-toggle__icon span {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .2s, opacity .2s, top .2s;
}

.kvms-menu-toggle__icon span:nth-child(1) {
  top: 0;
}

.kvms-menu-toggle__icon span:nth-child(2) {
  top: 6px;
}

.kvms-menu-toggle__icon span:nth-child(3) {
  top: 12px;
}

.kvms-header.is-menu-open .kvms-menu-toggle__icon span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.kvms-header.is-menu-open .kvms-menu-toggle__icon span:nth-child(2) {
  opacity: 0;
}

.kvms-header.is-menu-open .kvms-menu-toggle__icon span:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

.kvms-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.kvms-menu a {
  color: var(--kvms-body);
  font-size: 13.5px;
  font-weight: 600;
}

.kvms-menu a:hover {
  color: var(--kvms-blue);
  text-decoration: none;
}

.kvms-btn-expert {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1.5px solid var(--kvms-blue);
  border-radius: 24px;
  color: var(--kvms-blue);
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 20px;
  white-space: nowrap;
}

.kvms-btn-expert:hover {
  background: var(--kvms-blue);
  color: #fff;
  text-decoration: none;
}

.kvms-hero,
.kvms-article-hero {
  background: linear-gradient(120deg, var(--kvms-navy-deep) 0%, var(--kvms-navy) 55%, #1a5089 100%);
  color: #fff;
  padding: 56px 0 60px;
}

.kvms-hero--compact {
  padding: 46px 0 50px;
}

.kvms-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b8daf5;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .09em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.kvms-hero h1,
.kvms-article-hero h1 {
  max-width: 980px;
  margin: 0 0 16px;
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -.5px;
  line-height: 1.22;
}

.kvms-hero p,
.kvms-article-hero p,
.kvms-hero__description {
  max-width: 880px;
  margin: 0 0 26px;
  color: #d5e0ee;
  font-size: 15px;
}

.kvms-searchbar {
  display: flex;
  gap: 12px;
  width: min(650px, 100%);
  flex-wrap: wrap;
}

.kvms-searchbar input {
  flex: 1 1 280px;
  min-width: 0;
  max-width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 8px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  outline: none;
  padding: 12px 16px;
}

.kvms-searchbar input::placeholder {
  color: #d5e0ee;
}

.kvms-searchbar button,
.kvms-small-cta,
.kvms-page-content .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 24px;
  background: var(--kvms-blue);
  color: #fff;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.25;
  padding: 11px 22px;
  text-align: center;
}

.kvms-small-cta {
  color: #fff !important;
  min-width: 180px;
}

.kvms-searchbar button {
  background: #fff;
  color: var(--kvms-ink);
}

.kvms-searchbar button:hover,
.kvms-small-cta:hover,
.kvms-page-content .wp-block-button__link:hover {
  background: var(--kvms-blue-dark);
  color: #fff;
  text-decoration: none;
}

.kvms-searchbar button:hover {
  background: #e8eef6;
  color: var(--kvms-ink);
}

.kvms-blog-listing {
  background: var(--kvms-bg);
  padding: 44px 0 56px;
}

.kvms-blog-listing > .kvms-wrap {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 32px;
  align-items: start;
}

.kvms-blog-listing--simple > .kvms-wrap {
  display: block;
}

.kvms-filter-box {
  margin-bottom: 20px;
  border: 1px solid var(--kvms-line);
  border-radius: var(--kvms-radius);
  background: var(--kvms-card);
  padding: 20px;
}

.kvms-filter-box h2 {
  margin: 0 0 12px;
  color: var(--kvms-ink);
  font-size: 14px;
  font-weight: 700;
}

.kvms-filter-box p {
  margin: 0 0 14px;
  font-size: 13.5px;
}

.kvms-filter-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.kvms-filter-box li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid #f0f3f7;
  padding: 7px 0;
  color: var(--kvms-muted);
  font-size: 12.5px;
}

.kvms-filter-box li:first-child {
  border-top: 0;
}

.kvms-filter-box li a {
  color: var(--kvms-body);
  font-size: 13.5px;
}

.kvms-filter-box li a:hover {
  color: var(--kvms-blue);
  text-decoration: none;
}

.kvms-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
  color: var(--kvms-body);
  font-size: 13.5px;
}

.kvms-toolbar span:last-child {
  color: var(--kvms-ink);
  font-weight: 600;
}

.kvms-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

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

.kvms-post-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--kvms-line);
  border-radius: var(--kvms-radius);
  background: var(--kvms-card);
  transition: box-shadow .2s, transform .2s;
}

.kvms-post-card:hover {
  box-shadow: 0 8px 24px rgba(18, 54, 94, .1);
  transform: translateY(-2px);
}

.kvms-post-card__image {
  display: flex;
  min-height: 190px;
  aspect-ratio: 16 / 10;
  align-items: center;
  justify-content: center;
  background: #f7f9fb;
  color: var(--kvms-muted);
}

.kvms-post-card__image:hover {
  text-decoration: none;
}

.kvms-post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kvms-post-card__placeholder {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.kvms-post-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.kvms-post-card__cat {
  align-self: flex-start;
  margin-bottom: 6px;
  color: var(--kvms-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.kvms-post-card__title {
  margin: 0 0 10px;
  color: var(--kvms-ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.kvms-post-card__title a {
  color: inherit;
}

.kvms-post-card p {
  margin: 0 0 16px;
  color: var(--kvms-body);
  font-size: 13.5px;
  line-height: 1.65;
}

.kvms-post-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  color: var(--kvms-muted);
  font-size: 12.5px;
}

.kvms-product-showcase {
  background: #fff;
  padding: 54px 0 60px;
}

.kvms-product-showcase--post {
  background: var(--kvms-bg);
}

.kvms-product-showcase + .kvms-blog-listing {
  padding-top: 44px;
}

.kvms-product-showcase__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.kvms-product-showcase__eyebrow {
  margin: 0 0 8px;
  color: var(--kvms-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.kvms-product-showcase h2 {
  margin: 0;
  color: var(--kvms-ink);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.4px;
  line-height: 1.2;
}

.kvms-product-showcase__head p:not(.kvms-product-showcase__eyebrow) {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--kvms-body);
}

.kvms-product-showcase__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--kvms-line);
  border-radius: 8px;
  background: #fff;
  color: var(--kvms-ink);
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 18px;
  white-space: nowrap;
}

.kvms-product-showcase__link:hover {
  border-color: var(--kvms-blue);
  color: var(--kvms-blue);
  text-decoration: none;
}

.kvms-product-showcase__count {
  margin: -8px 0 18px;
  color: var(--kvms-muted);
  font-size: 13.5px;
  font-weight: 600;
}

.kvms-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.kvms-product-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--kvms-line);
  border-radius: var(--kvms-radius);
  background: #fff;
  transition: box-shadow .2s, transform .2s;
}

.kvms-product-card:hover {
  box-shadow: 0 8px 24px rgba(18, 54, 94, .1);
  transform: translateY(-2px);
}

.kvms-product-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  border-radius: 5px;
  background: #e53935;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 9px;
}

.kvms-product-card__thumb {
  display: flex;
  height: 210px;
  align-items: center;
  justify-content: center;
  border-radius: var(--kvms-radius) var(--kvms-radius) 0 0;
  background: #f7f9fb;
  padding: 18px;
}

.kvms-product-card__thumb:hover {
  text-decoration: none;
}

.kvms-product-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.kvms-product-card__thumb span {
  color: var(--kvms-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.kvms-product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.kvms-product-card__cat {
  margin-bottom: 6px;
  color: var(--kvms-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.kvms-product-card h3 {
  margin: 0 0 10px;
  color: var(--kvms-ink);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.kvms-product-card h3 a {
  color: inherit;
}

.kvms-product-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}

.kvms-product-card__price {
  color: var(--kvms-ink);
  font-size: 19px;
  font-weight: 700;
}

.kvms-product-card__price-old {
  color: var(--kvms-muted);
  font-size: 13.5px;
  text-decoration: line-through;
}

.kvms-product-card__stock {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  color: #e53935;
  font-size: 12.5px;
  font-weight: 500;
}

.kvms-product-card__stock::before {
  content: "!";
  font-size: 11px;
  font-weight: 700;
}

.kvms-product-card__stock.is-in-stock {
  color: var(--kvms-green);
}

.kvms-product-card__stock.is-in-stock::before {
  content: "✓";
}

.kvms-product-card__actions {
  margin-top: auto;
}

.kvms-product-card__btn {
  display: inline-flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: var(--kvms-blue);
  color: #fff !important;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.25;
  padding: 10px 16px;
  text-align: center;
  text-indent: 0 !important;
}

.kvms-product-card__btn:hover {
  background: var(--kvms-blue-dark);
  color: #fff;
  text-decoration: none;
}

.kvms-pagination {
  margin-top: 28px;
}

.kvms-pagination ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.kvms-pagination a,
.kvms-pagination span {
  display: inline-flex;
  min-width: 38px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--kvms-line);
  border-radius: 8px;
  background: #fff;
  color: var(--kvms-body);
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 12px;
}

.kvms-pagination a:hover,
.kvms-pagination .current {
  border-color: var(--kvms-navy);
  background: var(--kvms-navy);
  color: #fff;
  text-decoration: none;
}

.kvms-product-pagination {
  margin-top: 24px;
}

.kvms-empty {
  border: 1px solid var(--kvms-line);
  border-radius: var(--kvms-radius);
  background: #fff;
  padding: 28px;
}

.kvms-empty h2 {
  margin: 0 0 10px;
  color: var(--kvms-ink);
}

.kvms-article-hero {
  padding: 52px 0 56px;
}

.kvms-article-hero__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  color: #d5e0ee;
  font-size: 12.5px;
  font-weight: 600;
}

.kvms-article-hero__meta a {
  color: #fff;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.kvms-featured-wrap {
  margin-top: 34px;
}

.kvms-featured-image {
  overflow: hidden;
  border-radius: var(--kvms-radius);
  background: #f7f9fb;
}

.kvms-featured-image img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.kvms-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 44px;
  align-items: start;
  padding: 50px 0 60px;
}

.kvms-article-content,
.kvms-page-content {
  max-width: 860px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.kvms-article-content h2,
.kvms-page-content h2 {
  margin: 44px 0 16px;
  color: var(--kvms-ink);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -.3px;
  line-height: 1.25;
}

.kvms-article-content h2:first-child,
.kvms-page-content h2:first-child {
  margin-top: 0;
}

.kvms-article-content h3,
.kvms-page-content h3 {
  margin: 30px 0 10px;
  color: var(--kvms-ink);
  font-size: 17px;
  font-weight: 700;
}

.kvms-article-content p,
.kvms-page-content p {
  margin: 0 0 16px;
}

.kvms-article-content strong,
.kvms-page-content strong {
  color: var(--kvms-ink);
}

.kvms-article-content a,
.kvms-page-content a {
  font-weight: 600;
}

.kvms-article-content img,
.kvms-page-content img {
  border-radius: var(--kvms-radius);
}

.kvms-article-content figure,
.kvms-page-content figure {
  margin: 24px 0;
}

.kvms-article-content figcaption,
.kvms-page-content figcaption {
  color: var(--kvms-muted);
  font-size: 13px;
  text-align: center;
}

.kvms-article-content ul,
.kvms-page-content ul {
  margin: 0 0 20px;
  padding-left: 24px;
}

.kvms-article-content li,
.kvms-page-content li {
  margin-bottom: 7px;
  overflow-wrap: anywhere;
}

.kvms-article-content table,
.kvms-page-content table {
  width: 100%;
  margin: 18px 0 26px;
  overflow: hidden;
  border: 1px solid var(--kvms-line);
  border-collapse: collapse;
  border-radius: var(--kvms-radius);
  font-size: 14px;
}

.kvms-article-content th,
.kvms-page-content th {
  background: var(--kvms-navy);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  padding: 12px 16px;
  text-align: left;
}

.kvms-article-content td,
.kvms-page-content td {
  border-top: 1px solid var(--kvms-line);
  padding: 11px 16px;
  vertical-align: top;
}

.kvms-article-content tbody tr:nth-child(even),
.kvms-page-content tbody tr:nth-child(even) {
  background: #f8fafc;
}

.kvms-article-content blockquote,
.kvms-page-content blockquote,
.kvms-article-content .callout,
.kvms-page-content .callout {
  margin: 26px 0;
  border-left: 4px solid var(--kvms-blue);
  border-radius: 0 var(--kvms-radius) var(--kvms-radius) 0;
  background: #eef5fc;
  color: var(--kvms-body);
  padding: 20px 24px;
}

.kvms-article-content blockquote p:last-child,
.kvms-page-content blockquote p:last-child {
  margin-bottom: 0;
}

.kvms-article-content details,
.kvms-page-content details {
  overflow: hidden;
  margin-bottom: 12px;
  border-radius: var(--kvms-radius);
  background: var(--kvms-bg);
}

.kvms-article-content summary,
.kvms-page-content summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  color: var(--kvms-ink);
  font-size: 14.5px;
  font-weight: 500;
  padding: 18px 22px;
}

.kvms-article-content summary::-webkit-details-marker,
.kvms-page-content summary::-webkit-details-marker {
  display: none;
}

.kvms-article-content summary::after,
.kvms-page-content summary::after {
  content: "+";
  color: var(--kvms-ink);
  font-size: 20px;
  line-height: 1;
}

.kvms-article-content details[open] summary::after,
.kvms-page-content details[open] summary::after {
  content: "-";
}

.kvms-article-content details > *:not(summary),
.kvms-page-content details > *:not(summary) {
  padding: 0 22px 20px;
}

.kvms-article-aside {
  position: sticky;
  top: 20px;
}

.kvms-related {
  background: var(--kvms-bg);
  padding: 54px 0;
}

.kvms-related h2 {
  margin: 0 0 22px;
  color: var(--kvms-ink);
  font-size: 26px;
}

.kvms-comments {
  padding: 40px 0 60px;
}

.kvms-comments,
.kvms-comments * {
  max-width: 100%;
}

.kvms-comments fieldset,
.kvms-comments .comment-form-comment,
.kvms-comments .comment-form-textarea,
.kvms-comments .ast-grid-common-col {
  width: 100% !important;
  min-width: 0 !important;
  min-inline-size: 0;
}

.kvms-comments input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.kvms-comments textarea {
  width: 100% !important;
  min-width: 0;
}

.kvms-page-section {
  padding: 56px 0;
}

.kvms-features-band {
  background: #3b82c4;
  padding: 54px 0;
}

.kvms-features-band .kvms-wrap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.kvms-feature h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.kvms-feature p {
  margin: 0;
  color: #e3eefb;
  line-height: 1.7;
}

.kvms-footer {
  background: #3b82c4;
  color: #eaf3fc;
  font-size: 15px;
  padding: 64px 0 0;
}

.kvms-footer__cols {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1.25fr;
  gap: 40px;
  padding-bottom: 48px;
}

.kvms-footer h3 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.kvms-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.kvms-footer li {
  margin-bottom: 13px;
}

.kvms-footer a {
  color: #eaf3fc;
}

.kvms-footer a:hover {
  color: #fff;
}

.kvms-footer__brand {
  margin-bottom: 16px;
  color: #fff;
  font-size: 21px;
  font-weight: 600;
}

.kvms-footer__desc {
  margin: 0;
  color: #ddecfb;
  line-height: 1.85;
}

.kvms-footer__line {
  margin: 0 0 14px;
}

.kvms-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.kvms-socials a {
  display: flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
  color: #fff;
  font-weight: 700;
}

.kvms-socials a:hover {
  background: rgba(255, 255, 255, .28);
  text-decoration: none;
}

.kvms-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .25);
  padding: 20px 0;
}

.kvms-footer__bottom .kvms-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
}

.kvms-footer__bottom a {
  color: #fff;
  font-weight: 700;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

@media (max-width: 1050px) {
  .kvms-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .kvms-article-layout {
    grid-template-columns: 1fr;
  }

  .kvms-article-aside {
    position: static;
  }
}

@media (max-width: 960px) {
  .kvms-header__inner {
    align-items: center;
    flex-wrap: wrap;
    gap: 14px 16px;
    padding: 12px 0;
  }

  .kvms-logo {
    order: 1;
  }

  .kvms-logo img {
    width: 156px;
    max-height: 48px;
  }

  .kvms-menu-toggle {
    display: inline-flex;
    order: 2;
    margin-left: auto;
  }

  .kvms-nav {
    display: none;
    order: 3;
    flex: 0 0 100%;
    width: 100%;
  }

  .kvms-header.is-menu-open .kvms-nav {
    display: block;
  }

  .kvms-menu {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--kvms-line);
    border-radius: 8px;
    background: #fff;
  }

  .kvms-menu li + li {
    border-top: 1px solid var(--kvms-line);
  }

  .kvms-menu a {
    display: block;
    padding: 12px 14px;
  }

  .kvms-btn-expert {
    display: none;
    order: 4;
    width: 100%;
    justify-content: center;
  }

  .kvms-header.is-menu-open .kvms-btn-expert {
    display: inline-flex;
  }

  .kvms-blog-listing > .kvms-wrap {
    grid-template-columns: 1fr;
  }

  .kvms-features-band .kvms-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 680px) {
  .kvms-wrap {
    width: min(100% - 30px, 1200px);
  }

  .kvms-topbar {
    font-size: 11.5px;
    line-height: 1.35;
  }

  .kvms-topbar .kvms-wrap {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    min-height: 0;
    padding: 5px 0;
  }

  .kvms-topbar__left,
  .kvms-topbar__right {
    align-items: center;
    flex-direction: row;
    gap: 5px 10px;
    flex-wrap: wrap;
    padding: 0;
  }

  .kvms-topbar__item {
    gap: 5px;
  }

  .kvms-topbar__divider {
    display: none;
  }

  .kvms-hero,
  .kvms-article-hero {
    padding: 42px 0 46px;
  }

  .kvms-hero h1,
  .kvms-article-hero h1 {
    font-size: 27px;
  }

  .kvms-searchbar input,
  .kvms-searchbar button {
    width: 100%;
  }

  .kvms-grid,
  .kvms-grid--three {
    grid-template-columns: 1fr;
  }

  .kvms-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .kvms-product-card__thumb {
    height: 126px;
    padding: 10px;
  }

  .kvms-product-card__body {
    padding: 12px;
  }

  .kvms-product-card__badge {
    top: 9px;
    left: 9px;
    font-size: 10.5px;
    padding: 2px 7px;
  }

  .kvms-product-card__cat {
    font-size: 9.5px;
    line-height: 1.35;
    margin-bottom: 6px;
  }

  .kvms-product-card h3 {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }

  .kvms-product-card__price-row {
    gap: 5px 7px;
    flex-wrap: wrap;
    margin-bottom: 5px;
  }

  .kvms-product-card__price {
    font-size: 15.5px;
  }

  .kvms-product-card__price-old {
    font-size: 11.5px;
  }

  .kvms-product-card__stock {
    margin-bottom: 10px;
    font-size: 11.5px;
  }

  .kvms-product-card__btn {
    min-height: 36px;
    border-radius: 18px;
    font-size: 12px;
    padding: 8px 10px;
  }

  .kvms-product-showcase__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .kvms-product-showcase h2 {
    font-size: 24px;
  }

  .kvms-toolbar,
  .kvms-post-card__meta,
  .kvms-footer__bottom .kvms-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .kvms-article-content h2,
  .kvms-page-content h2 {
    font-size: 23px;
  }

  .kvms-article-layout,
  .kvms-article-content,
  .kvms-page-content {
    max-width: 100%;
    min-width: 0;
  }

  .kvms-article-content > *,
  .kvms-page-content > * {
    max-width: 100%;
  }

  .kvms-article-content table,
  .kvms-page-content table {
    display: block;
    width: 100%;
    overflow: visible;
    white-space: normal;
  }

  .kvms-article-content thead,
  .kvms-article-content tbody,
  .kvms-article-content tr,
  .kvms-article-content th,
  .kvms-article-content td,
  .kvms-page-content thead,
  .kvms-page-content tbody,
  .kvms-page-content tr,
  .kvms-page-content th,
  .kvms-page-content td {
    display: block;
    width: 100%;
    min-width: 0;
    white-space: normal;
  }

  .kvms-article-content tr,
  .kvms-page-content tr {
    border-bottom: 1px solid var(--kvms-line);
  }

  .kvms-article-content th,
  .kvms-article-content td,
  .kvms-page-content th,
  .kvms-page-content td {
    overflow-wrap: anywhere;
  }

  .kvms-features-band .kvms-wrap,
  .kvms-footer__cols {
    grid-template-columns: 1fr;
  }
}
