:root {
  color-scheme: light;
  --page: #f6f8f7;
  --surface: #ffffff;
  --surface-soft: #eef4f1;
  --ink: #18211f;
  --muted: #62716c;
  --line: #dbe5e0;
  --brand: #0e6f65;
  --brand-strong: #0a514b;
  --accent: #f4b740;
  --accent-soft: #fff3d8;
  --info: #2563a8;
  --danger: #b13c35;
  --shadow: 0 18px 45px rgba(20, 37, 32, 0.08);
  --radius: 8px;
  --content: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--brand);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  overflow-wrap: anywhere;
}

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

a[data-missing-asset="true"] {
  color: var(--muted);
  cursor: not-allowed;
  text-decoration-style: dashed;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(var(--content), calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--brand);
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: 0 8px 20px rgba(14, 111, 101, 0.2);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-size: 20px;
  font-weight: 800;
}

.brand-subtitle {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  content: "";
}

.nav-toggle span::before {
  transform: translateY(-7px);
}

.nav-toggle span::after {
  transform: translateY(5px);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

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

.site-search {
  position: relative;
  min-width: 0;
}

.site-search input {
  width: 100%;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fbfa;
  color: var(--ink);
  padding: 0 40px 0 14px;
  font: inherit;
  font-size: 14px;
  outline: none;
}

.site-search input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(14, 111, 101, 0.12);
}

.search-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  width: 16px;
  height: 16px;
  border: 2px solid var(--muted);
  border-radius: 50%;
  transform: translateY(-55%);
  pointer-events: none;
}

.search-icon::after {
  position: absolute;
  right: -6px;
  bottom: -5px;
  width: 8px;
  height: 2px;
  background: var(--muted);
  content: "";
  transform: rotate(45deg);
}

.search-results {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(520px, calc(100vw - 32px));
  max-height: min(520px, calc(100vh - 120px));
  overflow: auto;
  display: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.search-results.is-open {
  display: block;
}

.search-result {
  display: block;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
}

.search-result:last-child {
  border-bottom: 0;
}

.search-result strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  line-height: 1.35;
}

.search-result span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.page-hero {
  background: linear-gradient(180deg, #ffffff 0%, #eef4f1 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  width: min(var(--content), calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 34px;
  align-items: end;
}

.page-hero-inner.no-media {
  grid-template-columns: minmax(0, 1fr);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--brand);
}

.breadcrumbs span::after,
.breadcrumbs a::after {
  margin-left: 8px;
  color: #99a7a2;
  content: "/";
}

.breadcrumbs span:last-child::after,
.breadcrumbs a:last-child::after {
  content: "";
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--brand-strong);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.page-title {
  max-width: 900px;
  margin: 0;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.page-description {
  max-width: 790px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-card {
  align-self: stretch;
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  display: block;
}

.site-main {
  width: min(var(--content), calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 58px;
  flex: 1;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 30px;
  align-items: start;
}

.content-panel {
  min-width: 0;
}

.article-shell,
.archive-shell {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.article-shell {
  padding: clamp(22px, 4vw, 46px);
}

.archive-shell {
  padding: clamp(18px, 3vw, 28px);
}

.side-panel {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
}

.side-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 18px;
  box-shadow: 0 12px 28px rgba(20, 37, 32, 0.06);
}

.side-box h2 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.25;
}

.side-box p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.quick-links {
  display: grid;
  gap: 8px;
}

.quick-links a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  min-height: 40px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.quick-links a:hover {
  border-color: rgba(14, 111, 101, 0.35);
  background: var(--surface-soft);
  color: var(--brand-strong);
}

.quick-links a::after {
  color: var(--accent);
  content: ">";
}

.entry-content,
.archive-content {
  min-width: 0;
  overflow-wrap: anywhere;
}

.entry-content > :first-child,
.archive-content > :first-child {
  margin-top: 0;
}

.entry-content p,
.archive-content p {
  margin: 0 0 1.05em;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.archive-content h1,
.archive-content h2,
.archive-content h3,
.archive-content h4 {
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: 0;
}

.entry-content h1,
.archive-content h1 {
  font-size: clamp(28px, 4vw, 44px);
  margin: 0 0 20px;
}

.entry-content h2,
.archive-content h2 {
  margin: 2em 0 0.75em;
  font-size: clamp(24px, 3vw, 34px);
}

.entry-content h3,
.archive-content h3 {
  margin: 1.7em 0 0.6em;
  font-size: clamp(20px, 2.4vw, 26px);
}

.entry-content h4,
.archive-content h4 {
  margin: 1.4em 0 0.5em;
  font-size: 19px;
}

.entry-content ul,
.entry-content ol,
.archive-content ul,
.archive-content ol {
  padding-left: 1.35rem;
  margin: 0 0 1.3em;
}

.entry-content li,
.archive-content li {
  margin: 0.45em 0;
}

.entry-content blockquote,
.archive-content blockquote {
  margin: 1.55em 0;
  padding: 18px 20px;
  border-left: 4px solid var(--brand);
  border-radius: 8px;
  background: var(--surface-soft);
  color: #25332f;
}

.entry-content blockquote p:last-child,
.archive-content blockquote p:last-child {
  margin-bottom: 0;
}

.entry-content blockquote.warning,
.archive-content blockquote.warning {
  border-left-color: var(--accent);
  background: var(--accent-soft);
}

.entry-content blockquote.danger,
.archive-content blockquote.danger {
  border-left-color: var(--danger);
  background: #fff0ef;
}

.entry-content blockquote.info,
.archive-content blockquote.info {
  border-left-color: var(--info);
  background: #edf6ff;
}

.entry-content blockquote.check,
.archive-content blockquote.check {
  border-left-color: var(--brand);
}

.entry-content img,
.archive-content img {
  border-radius: 8px;
}

.entry-content iframe,
.archive-content iframe,
.entry-content embed,
.archive-content embed,
.entry-content object,
.archive-content object {
  max-width: 100%;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignright {
  float: right;
  margin: 0.3em 0 1em 1.25em;
}

.alignleft {
  float: left;
  margin: 0.3em 1.25em 1em 0;
}

.entry-content span[itemtype="https://schema.org/ImageObject"],
.archive-content span[itemtype="https://schema.org/ImageObject"] {
  max-width: 100%;
}

.entry-content figure,
.archive-content figure {
  margin: 1.7em 0;
}

.entry-content figcaption,
.archive-content figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.entry-content table,
.archive-content table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  margin: 1.2em 0;
  font-size: 14px;
}

.entry-content table td,
.entry-content table th,
.archive-content table td,
.archive-content table th {
  border: 1px solid var(--line);
  padding: 11px 12px;
  vertical-align: top;
}

.entry-content table th,
.archive-content table th,
.entry-content table tr:first-child td,
.archive-content table tr:first-child td {
  background: #edf4f0;
  color: var(--ink);
  font-weight: 800;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 1.25em 0;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.table-wrap table {
  margin: 0;
  border: 0;
}

.table-wrap table td:first-child,
.table-wrap table th:first-child {
  border-left: 0;
}

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

.table-wrap table tr:first-child td,
.table-wrap table tr:first-child th {
  border-top: 0;
}

.post-box {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(20, 37, 32, 0.06);
}

.posts-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.post-box .entry-header {
  padding: 18px 18px 0;
}

.post-box .entry-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 800;
}

.post-box .entry-title a {
  color: var(--ink);
  text-decoration: none;
}

.post-box .entry-title a:hover {
  color: var(--brand);
}

.entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.entry-meta a {
  color: var(--brand);
  text-decoration: none;
}

.post-box .entry-image {
  margin-top: 14px;
}

.post-box .entry-image a,
.post-box .entry-image img {
  display: block;
  width: 100%;
}

.post-box .entry-image img {
  aspect-ratio: 16 / 8.4;
  object-fit: cover;
  border-radius: 0;
}

.post-box__content {
  padding: 16px 18px 4px;
  color: var(--muted);
}

.post-box__content p {
  margin: 0;
}

.post-box__footer {
  padding: 0 18px 18px;
}

.entry-footer__more,
.visit-link,
.btn,
button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--brand);
  color: #ffffff;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.entry-footer__more:hover,
.visit-link:hover,
.btn:hover,
button:hover,
input[type="submit"]:hover {
  background: var(--brand-strong);
  color: #ffffff;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.pagination a,
.pagination span {
  display: inline-flex;
  min-width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.pagination .current,
.pagination a:hover {
  background: var(--brand);
  color: #ffffff;
}

.filter-credit,
.credit-filter,
.main-opt-credit,
.all-char-credit-block,
.dop_parametres,
.open-block-credit,
.credit-list,
.cards-list {
  border-radius: 8px;
}

.filter-credit {
  margin: 0 0 24px;
  padding: 18px;
  border: 1px solid var(--line);
  background: #f9fbfa;
}

.main-opt-credit {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}

.filter-credit .title {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.filter-credit input:not([type="checkbox"]):not([type="radio"]),
.filter-credit select,
.search-form__text {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  padding: 8px 11px;
  font: inherit;
}

.filter-credit input[type="checkbox"],
.filter-credit input[type="radio"] {
  width: auto;
  min-height: 0;
  margin: 0 8px 0 0;
  accent-color: var(--brand);
}

.all-char-credit-block {
  margin-top: 12px;
  color: var(--brand);
  cursor: pointer;
  font-weight: 800;
}

.filter-result-note {
  margin-top: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(14, 111, 101, 0.18);
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--brand-strong);
  font-weight: 800;
}

.dop_parametres,
.open-block-credit {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.credit-card,
.card-item,
.credit-item,
.offers-list,
.offer_credcard,
.card-block,
.desc-block,
.results-info-block,
.char_rat_item,
.webnavoz_re_table,
.webnavoz_re_row,
.bank-variations > div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 16px;
}

.credit-list-page,
.offers-full-list,
.cards-list,
.bank-variations {
  display: grid;
  gap: 16px;
}

.offers-list,
.offer_credcard {
  display: grid;
  gap: 14px;
  margin: 0 0 16px;
  min-width: 0;
  box-shadow: 0 10px 24px rgba(20, 37, 32, 0.05);
}

.offers-info-top,
.card-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(110px, 180px);
  gap: 16px;
  align-items: center;
  min-width: 0;
}

.offers-about,
.offers-bank-logo,
.desc-block {
  min-width: 0;
}

.offers-name-bank,
.offer_in_rating_title,
.credit-type-name {
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.offers-bank-logo {
  justify-self: end;
  width: min(180px, 100%);
  text-align: center;
}

.offers-bank-logo img,
.card-block img,
.offer_credcard img,
.attachment img {
  max-height: 120px;
  object-fit: contain;
}

.more-offers-block {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.more-offers-link,
.visit-link-small,
.small-visit-link,
.review {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.more-offers-link,
.visit-link-small,
.small-visit-link {
  background: var(--brand);
  color: #ffffff;
}

.more-offers-link:hover,
.visit-link-small:hover,
.small-visit-link:hover {
  background: var(--brand-strong);
  color: #ffffff;
}

.review {
  border: 1px solid rgba(14, 111, 101, 0.28);
  background: var(--surface-soft);
  color: var(--brand-strong);
}

.offers-info-bottom,
.all_char_wrap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
}

.properties,
.end-prop,
.of_rat_un_wrap_t {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fbfa;
  padding: 10px 12px;
}

.calcinst {
  margin: 24px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fbfa;
}

.calcinst_buy + .calcinst_buy {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.calcinst_headline {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 800;
}

.calcinst_row2,
.calcinst_row3,
.calcinst_table .calcinst_row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.calcinst_row3,
.calcinst_row4,
.calcinst_row5 {
  margin-top: 14px;
}

.calcinst_label {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.calcinst input,
.calcinst select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  padding: 8px 11px;
  font: inherit;
}

.calcinst_payment_month,
.calcinst_overpayment,
.calcinst_table .calcinst_col {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 10px 12px;
  font-weight: 800;
}

.calcinst_remove,
.calcinst_add {
  display: inline-flex;
  margin: 0 10px 10px 0;
  color: var(--brand);
  cursor: pointer;
  font-weight: 800;
}

.calcinst_schedule_btn {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  background: var(--brand);
  color: #ffffff;
  padding: 9px 16px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.p_title,
.title,
.offer_in_rating_title + div {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.p_value,
.value {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
}

.rat-stars,
.char_rat_plus_minus {
  color: var(--accent);
  font-weight: 800;
}

.char_rat_plus_minus {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.user-review-block {
  margin: 28px 0;
}

.user-review-block .avatar,
.user-review-block .content-text {
  border: 1px solid var(--line);
  background: #f9fbfa;
  padding: 14px;
}

.user-review-block .avatar {
  border-radius: 8px 8px 0 0;
  font-weight: 800;
}

.user-review-block .content-text {
  border-top: 0;
  border-radius: 0 0 8px 8px;
}

.webnavoz_re_main {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.webnavoz_re_item {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
}

.webnavoz_re_image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
}

.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--line);
  background: #16231f;
  color: #dbe5e0;
}

.footer-inner {
  width: min(var(--content), calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
}

.footer-inner a {
  color: #ffffff;
}

.footer-note {
  max-width: 680px;
  margin: 0;
  color: #b9c7c2;
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.offers-list.is-hidden-by-filter {
  display: none;
}

.removed-affiliate-link {
  color: var(--muted);
  cursor: default;
  text-decoration: none;
}

.removed-affiliate-link.more-offers-link,
.removed-affiliate-link.visit-link,
.removed-affiliate-link.visit-link-small,
.removed-affiliate-link.small-visit-link,
.removed-affiliate-link.ref-link {
  background: #7b8a86;
  color: #ffffff;
  pointer-events: none;
}

.removed-affiliate-link.more-offers-link:hover,
.removed-affiliate-link.visit-link:hover,
.removed-affiliate-link.visit-link-small:hover,
.removed-affiliate-link.small-visit-link:hover,
.removed-affiliate-link.ref-link:hover {
  background: #7b8a86;
  color: #ffffff;
}

.hidden-xs,
.screen-reader-text,
.page-separator,
.clear {
  display: none !important;
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: auto auto 1fr;
    gap: 12px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    grid-column: 2;
    grid-row: 1;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

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

  .site-search {
    justify-self: end;
    width: 100%;
    max-width: min(360px, 44vw);
  }

  .page-hero-inner,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .side-panel {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offers-info-bottom,
  .all_char_wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  body {
    font-size: 15px;
  }

  .header-inner {
    width: min(var(--content), calc(100% - 24px));
    min-height: 68px;
    grid-template-columns: 1fr auto;
    gap: 10px 12px;
  }

  .brand-subtitle {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
  }

  .brand-name {
    font-size: 18px;
  }

  .nav-toggle {
    grid-column: 2;
    justify-self: end;
  }

  .site-nav {
    left: 12px;
    right: 12px;
    max-height: calc(100vh - 88px);
    overflow: auto;
  }

  .site-nav a {
    min-height: 44px;
    white-space: normal;
  }

  .site-search {
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
    padding-bottom: 12px;
  }

  .site-search input {
    height: 44px;
    font-size: 16px;
  }

  .page-hero-inner,
  .site-main,
  .footer-inner {
    width: calc(100% - 24px);
  }

  .page-hero-inner {
    padding: 28px 0 24px;
    gap: 20px;
  }

  .credit-calc .summa-credit-block,
  .credit-calc .percent-block,
  .credit-calc .time {
    padding: 20px 14px 0 !important;
  }

  .credit-calc .summa-credit-block .title,
  .credit-calc .percent-block .title,
  .credit-calc .time .title,
  .credit-calc .summa-credit-block .value,
  .credit-calc .percent-block .value,
  .credit-calc .time .value {
    display: block !important;
    width: 100% !important;
  }

  .credit-calc #credit div#buttons {
    display: grid;
    gap: 10px;
    padding: 22px 14px !important;
  }

  .credit-calc #calculate,
  .credit-calc #reset {
    width: 100%;
    padding: 11px 14px !important;
    font-size: 16px !important;
  }

  .dop_parametres {
    display: none;
  }

  .dop_parametres.is-open {
    display: grid;
  }

  .calcinst_row2,
  .calcinst_row3,
  .calcinst_table .calcinst_row {
    grid-template-columns: 1fr;
  }

  .page-title {
    font-size: clamp(26px, 8.5vw, 32px);
    line-height: 1.12;
  }

  .page-description {
    font-size: 16px;
    line-height: 1.55;
  }

  .article-shell,
  .archive-shell {
    padding: 16px;
  }

  .posts-container,
  .main-opt-credit,
  .dop_parametres,
  .open-block-credit,
  .side-panel {
    grid-template-columns: 1fr;
  }

  .post-box .entry-header {
    padding: 16px 16px 0;
  }

  .post-box__content {
    padding: 14px 16px 2px;
  }

  .post-box__footer {
    padding: 0 16px 16px;
  }

  .post-box .entry-title {
    font-size: 18px;
  }

  .breadcrumbs {
    font-size: 12px;
    line-height: 1.4;
  }

  .entry-content h1,
  .archive-content h1 {
    font-size: 27px;
  }

  .entry-content h2,
  .archive-content h2 {
    font-size: 24px;
  }

  .entry-content h3,
  .archive-content h3 {
    font-size: 20px;
  }

  .entry-content blockquote,
  .archive-content blockquote {
    margin: 1.15em 0;
    padding: 14px 15px;
  }

  .entry-content ul,
  .entry-content ol,
  .archive-content ul,
  .archive-content ol {
    padding-left: 1.1rem;
  }

  .alignright,
  .alignleft {
    float: none;
    display: block;
    margin: 1em auto;
  }

  .entry-content p > span[itemtype="https://schema.org/ImageObject"],
  .archive-content p > span[itemtype="https://schema.org/ImageObject"] {
    display: block;
    margin: 12px auto;
    text-align: center;
  }

  .entry-content p > img,
  .archive-content p > img {
    display: block;
    margin: 12px auto;
  }

  .entry-footer__more,
  .visit-link,
  .more-offers-link,
  .visit-link-small,
  .small-visit-link,
  .review,
  .btn,
  button,
  input[type="submit"] {
    width: 100%;
    min-height: 44px;
    text-align: center;
  }

  .offers-list,
  .offer_credcard,
  .card-block,
  .desc-block,
  .results-info-block,
  .char_rat_item {
    padding: 14px;
  }

  .offers-info-top,
  .offers-info-bottom,
  .card-block,
  .all_char_wrap,
  .webnavoz_re_item {
    grid-template-columns: 1fr;
  }

  .offers-bank-logo {
    justify-self: start;
    width: min(170px, 100%);
  }

  .more-offers-block {
    width: 100%;
  }

  .properties {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 8px;
    align-items: baseline;
  }

  .webnavoz_re_image {
    justify-self: start;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .header-inner,
  .page-hero-inner,
  .site-main,
  .footer-inner {
    width: calc(100% - 20px);
  }

  .article-shell,
  .archive-shell,
  .side-box {
    padding: 14px;
  }

  .properties {
    grid-template-columns: 1fr;
  }
}
