/* ============================================================================
   Денежный кластер: /ceny + калькуляторы (redesign sess.88, mobile-first).
   Язык дизайна: фирменный тёмно-зелёный hero-градиент (как радио-блок главной),
   белые карточки на кремовом фоне, крупные цифры, touch-таргеты 44px+.
   Подключается per-page через $pageStylesheets. Откат: _backups/money-redesign-pre/
   ============================================================================ */

:root {
  --mny-forest-1: #1e3a29;
  --mny-forest-2: #2d5238;
  --mny-green:    #1a7a5e;
  --mny-green-dk: #14614a;
  --mny-soft:     #eef7f1;
  --mny-soft-bd:  #cfe7da;
  --mny-card-bd:  #e8e5dd;
  --mny-text:     #1f2d24;
  --mny-muted:    #6b7280;
  --mny-shadow:   0 10px 30px rgba(31, 61, 43, .08);
}

/* ── Обёртки страниц ─────────────────────────────────────────────────── */
.cl-wrap, .cb-wrap, .ceny-wrap {
  max-width: 1000px; margin: 0 auto; padding: 0 16px 56px;
  color: var(--mny-text);
}

/* ── HERO: фирменная градиентная панель ─────────────────────────────── */
.mny-hero {
  position: relative; overflow: hidden;
  margin: 16px 0 22px;
  padding: clamp(18px, 3.5vw, 30px) clamp(16px, 3.5vw, 30px);
  border-radius: 20px;
  background: linear-gradient(135deg, var(--mny-forest-1) 0%, var(--mny-forest-2) 100%);
  color: #fff;
  box-shadow: 0 16px 40px rgba(31, 61, 43, .22);
}
.mny-hero::after {
  content: ""; position: absolute; top: -46%; right: -6%;
  width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(126, 196, 140, .28), transparent 70%);
  pointer-events: none;
}
.mny-hero > * { position: relative; z-index: 1; }

.mny-hero .cl-crumbs, .mny-hero .cb-crumbs, .mny-hero .ceny-crumbs {
  margin: 0 0 10px; font-size: .78rem; color: rgba(255,255,255,.62);
}
.mny-hero .cl-crumbs a, .mny-hero .cb-crumbs a, .mny-hero .ceny-crumbs a {
  color: rgba(255,255,255,.78); text-decoration: none;
}
.mny-hero .cl-crumbs a:hover, .mny-hero .cb-crumbs a:hover, .mny-hero .ceny-crumbs a:hover { color: #fff; text-decoration: underline; }

.mny-hero .cl-h1, .mny-hero .cb-h1, .mny-hero .ceny-h1 {
  margin: 0 0 8px; color: #fff;
  font-size: clamp(1.35rem, 4.6vw, 1.9rem); line-height: 1.2; font-weight: 800;
}
.mny-hero .cl-lead, .mny-hero .cb-lead, .mny-hero .ceny-lead {
  margin: 0; max-width: 62ch;
  color: rgba(255,255,255,.78); font-size: .95rem; line-height: 1.55;
}

/* чипы городов в hero */
.cl-citynav, .cb-citynav { margin: 14px 0 0; font-size: .86rem; color: rgba(255,255,255,.7); }
.cl-citynav a, .cb-citynav a {
  display: inline-block; margin: 6px 8px 0 0; padding: 7px 14px;
  background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px; color: #fff; font-weight: 600; text-decoration: none;
  transition: background .15s;
}
.cl-citynav a:hover, .cb-citynav a:hover { background: rgba(255,255,255,.26); }
.cl-citynav b, .cb-citynav b {
  display: inline-block; margin: 6px 8px 0 0; padding: 7px 14px;
  background: #fff; border-radius: 999px; color: var(--mny-forest-1); font-weight: 700;
}

/* статистика хаба цен в hero */
.mny-hero .ceny-stats { margin: 14px 0 0; display: flex; gap: 8px; flex-wrap: wrap; font-size: .82rem; color: #fff; }
.mny-hero .ceny-stats span {
  background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px; padding: 7px 13px;
}
.mny-hero .ceny-stats b { font-weight: 800; }

/* ── Кнопки ──────────────────────────────────────────────────────────── */
.mny-btn, .ceny-btn {
  display: inline-block; background: var(--mny-green); color: #fff;
  border: 0; border-radius: 12px; padding: 13px 22px;
  font-size: .95rem; font-weight: 700; cursor: pointer; text-decoration: none;
  font-family: inherit; transition: background .15s, transform .12s;
}
.mny-btn:hover, .ceny-btn:hover { background: var(--mny-green-dk); transform: translateY(-1px); color: #fff; }
.mny-btn--ghost {
  background: #fff; color: var(--mny-green); border: 2px solid var(--mny-green);
  padding: 11px 20px;
}
.mny-btn--ghost:hover { background: var(--mny-soft); color: var(--mny-green-dk); }

/* ── Сетка калькуляторов ─────────────────────────────────────────────── */
.cl-grid, .cb-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 820px) { .cl-grid, .cb-grid { grid-template-columns: 1fr; } }

.cl-panel, .cb-panel {
  background: #fff; border: 1px solid var(--mny-card-bd); border-radius: 18px;
  padding: clamp(16px, 3vw, 24px); box-shadow: var(--mny-shadow);
}
.cl-panel > h2, .cb-panel > h2 {
  margin: 0 0 16px; font-size: .8rem; font-weight: 800;
  letter-spacing: .09em; text-transform: uppercase; color: var(--mny-green);
}

/* ── Поля формы ──────────────────────────────────────────────────────── */
.cl-field, .cb-field { margin-bottom: 16px; }
.cl-field > label, .cb-field > label {
  display: block; font-size: .84rem; color: var(--mny-muted);
  margin-bottom: 7px; font-weight: 600;
}
.cl-field input[type=number], .cb-field input[type=number],
.cl-field select, .cb-field select {
  width: 100%; height: 46px; padding: 0 14px;
  border: 1.5px solid #d9d5cb; border-radius: 12px;
  font-size: 1rem; font-family: inherit; color: var(--mny-text); background: #fff;
  -moz-appearance: textfield;
}
.cl-field select, .cb-field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 38px;
}
.cl-field input:focus, .cb-field input:focus, .cl-field select:focus, .cb-field select:focus {
  outline: none; border-color: var(--mny-green); box-shadow: 0 0 0 3px rgba(26, 122, 94, .14);
}

/* чекбоксы «есть авто» / «экскурсии» */
.cl-check, .cb-check {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: .93rem; color: var(--mny-text) !important;
  min-height: 44px; cursor: pointer;
}
.cl-check input, .cb-check input { width: 21px; height: 21px; accent-color: var(--mny-green); cursor: pointer; }

/* сегменты «уровень жизни» / «стиль поездки» */
.cl-styles, .cb-styles { display: flex; gap: 8px; flex-wrap: wrap; }
.cl-styles label, .cb-styles label {
  flex: 1; min-width: 92px; min-height: 44px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: #f6f4ee; border: 1.5px solid #e3dfd4; border-radius: 12px;
  padding: 9px 8px; font-size: .88rem; cursor: pointer; font-weight: 600; margin: 0;
  color: var(--mny-muted); transition: all .15s;
}
.cl-styles input, .cb-styles input { position: absolute; opacity: 0; }
.cl-styles label:has(input:checked), .cb-styles label:has(input:checked) {
  border-color: var(--mny-green); background: var(--mny-soft);
  color: var(--mny-green-dk); box-shadow: 0 0 0 1px var(--mny-green) inset;
}

/* чипы городов (бюджет поездки) */
.cb-cities { display: flex; flex-wrap: wrap; gap: 8px; }
.cb-cities label {
  display: flex; align-items: center; gap: 7px; min-height: 42px;
  background: #f6f4ee; border: 1.5px solid #e3dfd4; border-radius: 999px;
  padding: 8px 16px; font-size: .9rem; cursor: pointer; font-weight: 600; margin: 0;
  color: var(--mny-muted); transition: all .15s;
}
.cb-cities input { width: 17px; height: 17px; accent-color: var(--mny-green); margin: 0; }
.cb-cities label:has(input:checked) {
  border-color: var(--mny-green); background: var(--mny-soft); color: var(--mny-green-dk);
}

/* ── Результат ───────────────────────────────────────────────────────── */
.cb-result { text-align: center; }
.cl-total, .cb-total {
  font-size: clamp(2.3rem, 8vw, 3rem); font-weight: 800; letter-spacing: -.5px;
  margin: 2px 0; color: var(--mny-text); font-variant-numeric: tabular-nums;
}
.cl-alt, .cb-alt {
  display: inline-block; margin: 2px 0 12px; padding: 5px 13px;
  background: var(--mny-soft); border-radius: 999px;
  color: var(--mny-green-dk); font-size: .95rem; font-weight: 700;
}
.cb-range { color: var(--mny-muted); font-size: .88rem; margin: 0 0 14px; }

.cb-break { text-align: left; border-top: 1px solid #efece4; padding-top: 12px; margin-top: 6px; }
.cl-break-row, .cb-break-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  padding: 9px 0; font-size: .94rem; color: #4a5148;
  border-bottom: 1px dashed #eceade;
}
.cl-break-row:last-child, .cb-break-row:last-child { border-bottom: 0; }
.cl-break-row b, .cb-break-row b {
  color: var(--mny-text); font-variant-numeric: tabular-nums; white-space: nowrap;
}

/* кнопка «скопировать ссылку» */
.cl-sharebtn, .cb-sharebtn {
  display: block; width: 100%; margin-top: 14px; min-height: 46px;
  background: #fff; border: 1.5px solid var(--mny-green); color: var(--mny-green);
  border-radius: 12px; padding: 10px 14px; font-size: .9rem; font-weight: 700;
  cursor: pointer; font-family: inherit; transition: background .15s;
}
.cl-sharebtn:hover, .cb-sharebtn:hover { background: var(--mny-soft); }

/* ── Сравнение городов ──────────────────────────────────────────────── */
.cl-cmp {
  margin-top: 18px; background: #fff; border: 1px solid var(--mny-card-bd);
  border-radius: 18px; padding: clamp(16px, 3vw, 24px); box-shadow: var(--mny-shadow);
}
.cl-cmp h2 {
  margin: 0 0 14px; font-size: .8rem; font-weight: 800;
  letter-spacing: .09em; text-transform: uppercase; color: var(--mny-green);
}
.cl-cmp-row { display: flex; align-items: center; gap: 12px; padding: 8px 0; font-size: .92rem; }
.cl-cmp-row .nm { width: 108px; flex: none; color: var(--mny-muted); font-weight: 600; }
.cl-bar {
  height: 20px; border-radius: 7px; min-width: 3px;
  background: linear-gradient(90deg, var(--mny-green), #2f9d77);
  opacity: .55; transition: width .25s;
}
.cl-cmp-row.is-sel .cl-bar { opacity: 1; }
.cl-cmp-row.is-sel .nm { color: var(--mny-forest-1); font-weight: 800; }
.cl-cmp-row .vv { color: var(--mny-muted); font-size: .85rem; white-space: nowrap; font-variant-numeric: tabular-nums; }
.cl-cmp-row.is-sel .vv { color: var(--mny-text); font-weight: 700; }
@media (max-width: 560px) {
  .cl-cmp-row { flex-wrap: wrap; gap: 6px 10px; }
  .cl-cmp-row .nm { width: auto; min-width: 88px; }
  .cl-cmp-row .vv { width: 100%; padding-left: 0; margin-top: -2px; }
  .cl-bar { flex: 1 1 100%; order: 3; }
}

/* ── FAQ ─────────────────────────────────────────────────────────────── */
.cl-faq, .cb-faq { margin-top: 22px; }
.cl-faq h2, .cb-faq h2 {
  margin: 0 0 12px; font-size: 1.1rem; font-weight: 800; color: var(--mny-text);
}
.cl-faq h3, .cb-faq h3 {
  margin: 14px 0 6px; font-size: .97rem; font-weight: 700; color: var(--mny-forest-1);
}
.cl-faq p, .cb-faq p {
  margin: 0; font-size: .92rem; line-height: 1.6; color: #4a5148;
}

/* ── Email-блок ─────────────────────────────────────────────────────── */
.cl-email, .cb-email {
  margin-top: 22px; background: var(--mny-soft);
  border: 1px solid var(--mny-soft-bd); border-radius: 18px;
  padding: clamp(16px, 3vw, 22px);
}
.cl-email form, .cb-email form { display: flex; gap: 10px; flex-wrap: wrap; }
.cl-email input[type=email], .cb-email input[type=email] {
  flex: 1; min-width: 200px; height: 48px; padding: 0 16px;
  border: 1.5px solid var(--mny-soft-bd); border-radius: 12px;
  font-size: 1rem; font-family: inherit;
}
.cl-email input[type=email]:focus, .cb-email input[type=email]:focus {
  outline: none; border-color: var(--mny-green); box-shadow: 0 0 0 3px rgba(26,122,94,.14);
}
.cl-email button, .cb-email button {
  min-height: 48px; background: var(--mny-green); color: #fff; border: 0;
  border-radius: 12px; padding: 10px 22px; font-weight: 700; font-size: .95rem;
  cursor: pointer; font-family: inherit;
}
.cl-email button:hover, .cb-email button:hover { background: var(--mny-green-dk); }
@media (max-width: 560px) { .cl-email button, .cb-email button { width: 100%; } }

/* ── CTA-ссылки внизу ───────────────────────────────────────────────── */
.cl-cta, .cb-cta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.cl-cta a, .cb-cta a {
  padding: 11px 17px; border-radius: 999px; text-decoration: none;
  font-weight: 700; font-size: .89rem; transition: transform .12s;
}
.cl-cta a:hover, .cb-cta a:hover { transform: translateY(-1px); }
.cl-cta .p, .cb-cta .p { background: var(--mny-green); color: #fff; }
.cl-cta .s, .cb-cta .s { background: #fff; color: var(--mny-text); border: 1.5px solid var(--mny-card-bd); }

.cl-note, .cb-note { color: #9aa096; font-size: .8rem; margin-top: 16px; line-height: 1.5; }
.cl-flash, .cb-flash, .ceny-flash {
  background: var(--mny-soft); border: 1px solid var(--mny-green); color: #13543f;
  padding: 12px 16px; border-radius: 12px; margin: 0 0 16px; font-weight: 600; font-size: .92rem;
}
.cl-empty, .cb-empty { color: var(--mny-muted); }
.form-hp { position: absolute; left: -9999px; }

/* ── Липкая панель итога (мобайл) ───────────────────────────────────── */
.mny-sticky {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: var(--mny-forest-1); color: #fff;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 24px rgba(0,0,0,.18);
  align-items: center; justify-content: space-between; gap: 12px;
}
.mny-sticky span { font-size: .8rem; color: rgba(255,255,255,.7); }
.mny-sticky b { display: block; font-size: 1.12rem; color: #fff; font-variant-numeric: tabular-nums; }
.mny-sticky button {
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3); color: #fff;
  border-radius: 999px; padding: 9px 16px; font-size: .84rem; font-weight: 700;
  cursor: pointer; font-family: inherit; white-space: nowrap;
}
@media (max-width: 820px) {
  .mny-sticky { display: flex; }
  .cl-wrap, .cb-wrap { padding-bottom: 96px; }
}

/* ============================================================================
   /ceny — хаб, город, позиция, пара
   ============================================================================ */
.ceny-cat { margin: 26px 0 10px; font-size: 1.02rem; font-weight: 800; color: var(--mny-text); }

.ceny-tiles {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px; margin: 10px 0 24px;
}
.ceny-tile {
  display: flex; align-items: center; min-height: 52px;
  padding: 12px 16px; border: 1px solid var(--mny-card-bd); border-radius: 14px;
  text-decoration: none; color: var(--mny-text); background: #fff; font-weight: 600;
  font-size: .92rem; line-height: 1.3;
  box-shadow: 0 3px 10px rgba(31,61,43,.05);
  transition: transform .12s, box-shadow .12s, border-color .12s;
}
.ceny-tile:hover {
  transform: translateY(-2px); border-color: var(--mny-green);
  box-shadow: 0 8px 20px rgba(31,61,43,.12); color: var(--mny-green-dk);
}
.ceny-tiles--cities .ceny-tile {
  min-height: 62px; font-size: 1.02rem; font-weight: 800; justify-content: space-between;
  background: linear-gradient(135deg, #ffffff, var(--mny-soft));
}
@media (max-width: 560px) { .ceny-tiles { grid-template-columns: repeat(2, 1fr); gap: 8px; } }

/* таблицы цен */
.ceny-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  margin: 0 0 8px; font-size: .93rem;
  background: #fff; border: 1px solid var(--mny-card-bd); border-radius: 14px;
  overflow: hidden; box-shadow: 0 3px 10px rgba(31,61,43,.05);
}
.ceny-table td { padding: 12px 14px; border-bottom: 1px solid #f0ede5; vertical-align: top; }
.ceny-table tr:last-child td { border-bottom: 0; }
.ceny-table tr:hover td { background: #fbfaf6; }
.ceny-table td:first-child { font-weight: 600; }
.ceny-table a { color: var(--mny-text); text-decoration: none; border-bottom: 1px dotted #b9c4bd; }
.ceny-table a:hover { color: var(--mny-green); border-bottom-color: var(--mny-green); }
.ceny-table td:last-child { text-align: right; white-space: normal; }

.ceny-unit { color: #9aa096; font-size: .8rem; }
.ceny-median { font-size: 1.02rem; font-variant-numeric: tabular-nums; }
.ceny-alt { color: var(--mny-green); font-size: .85rem; }
.ceny-range { color: var(--mny-muted); font-size: .8rem; margin-left: 4px; }
.ceny-n { color: #b6bbb2; font-size: .76rem; margin-left: 6px; white-space: nowrap; }
.ceny-nodata { color: #b6bbb2; font-style: italic; }
.ceny-trend { font-size: .8rem; margin-left: 4px; }
.ceny-trend-up { color: #c0392b; } .ceny-trend-down { color: var(--mny-green); }

/* большая цифра на странице пары */
.ceny-hero-num {
  font-size: clamp(2.4rem, 9vw, 3.4rem); font-weight: 800; letter-spacing: -.5px;
  margin: 8px 0 2px; color: var(--mny-text); font-variant-numeric: tabular-nums;
}

/* форма «сообщить цену» */
.ceny-form {
  border: 1px solid var(--mny-soft-bd); border-radius: 18px;
  padding: clamp(16px, 3vw, 22px); margin: 26px 0; background: var(--mny-soft);
}
.ceny-form h3 { margin: 0 0 12px; font-size: 1.02rem; font-weight: 800; }
.ceny-form-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 10px; }
.ceny-form-row > label, .ceny-form-full { display: block; flex: 1; min-width: 150px; font-size: .82rem; color: var(--mny-muted); font-weight: 600; }
.ceny-form-full { margin-bottom: 10px; }
.ceny-form input, .ceny-form select {
  width: 100%; height: 46px; padding: 0 13px; margin-top: 5px;
  border: 1.5px solid var(--mny-soft-bd); border-radius: 12px;
  font-size: .95rem; font-family: inherit; background: #fff;
}
.ceny-form input:focus, .ceny-form select:focus {
  outline: none; border-color: var(--mny-green); box-shadow: 0 0 0 3px rgba(26,122,94,.14);
}
.ceny-form-hint { color: #7d8a80; font-size: .78rem; margin: 10px 0 0; }
.ceny-btn { margin-top: 8px; }
@media (max-width: 560px) { .ceny-btn { width: 100%; } }

/* строка CTA на хабе */
.ceny-cta-row { margin: 24px 0 0; display: flex; gap: 10px; flex-wrap: wrap; }

/* ── Аффордансы кликабельности и «добавьте цену» (sess.88, по фидбеку Алекса) ── */
.mny-hero-actions { margin: 16px 0 0; }
.mny-btn--onhero { background: #fff; color: var(--mny-forest-1); }
.mny-btn--onhero:hover { background: var(--mny-soft); color: var(--mny-forest-1); transform: translateY(-1px); }

/* вся строка ведёт на страницу позиции: курсор + шеврон справа */
.ceny-table tr[data-href] { cursor: pointer; }
.ceny-table tr[data-href] td:last-child { position: relative; padding-right: 34px; }
.ceny-table tr[data-href] td:last-child::after {
  content: "›"; position: absolute; right: 13px; top: 50%; transform: translateY(-50%);
  color: #c3cdc6; font-size: 1.2rem; font-weight: 700; transition: color .15s, right .15s;
}
.ceny-table tr[data-href]:hover td:last-child::after { color: var(--mny-green); right: 10px; }

/* разовая яркая подсказка на первой строке: появляется, «кивает», исчезает.
   Рисуется НИЖЕ текста (стрелка вверх): таблица-карточка с overflow:hidden
   обрезала бы всё, что торчит над первой строкой. */
.ceny-hint { position: relative; }
.ceny-hint::after {
  content: "👆 Нажмите и добавьте свою цену";
  position: absolute; left: 2px; top: calc(100% + 5px);
  background: #f97316; color: #fff;
  font-size: .68rem; font-weight: 700; letter-spacing: .03em; line-height: 1;
  padding: 6px 10px; border-radius: 8px; white-space: nowrap;
  box-shadow: 0 4px 14px rgba(249, 115, 22, .45);
  z-index: 6; pointer-events: none;
  animation: mnyHint 7s ease-in-out forwards;
}
.ceny-hint::before {
  content: ""; position: absolute; left: 20px; top: calc(100% + 0px);
  border-left: 5px solid transparent; border-right: 5px solid transparent;
  border-bottom: 6px solid #f97316; z-index: 6; pointer-events: none;
  animation: mnyHint 7s ease-in-out forwards;
}
@keyframes mnyHint {
  0%   { opacity: 0; transform: translateY(-5px); }
  6%   { opacity: 1; transform: translateY(0); }
  18%  { transform: translateY(3px); }
  30%  { transform: translateY(0); }
  42%  { transform: translateY(3px); }
  55%  { transform: translateY(0); }
  85%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(2px); }
}
@media (prefers-reduced-motion: reduce) {
  .ceny-hint::after, .ceny-hint::before { animation: mnyHintFade 7s ease forwards; }
}
@keyframes mnyHintFade { 0% { opacity: 0; } 8% { opacity: 1; } 85% { opacity: 1; } 100% { opacity: 0; } }

/* ── Витрина «Деньги в Марокко» на ГЛАВНОЙ (sess.88): 3 таблетки.
   v4 по фидбеку Алекса: большой контейнер с округлыми углами — БЕЛЫЙ и
   спокойный (как соседние секции), а цветной фон — у самих таблеток:
   каждая в своём пастельном тоне под иконку (золото / шалфей / терракота). ── */
.mnyh { padding: 10px 0; }
.mnyh__panel {
  border-radius: 20px;
  padding: clamp(16px, 3vw, 24px);
  background: #fff;
  border: 1px solid var(--mny-card-bd);
  box-shadow: 0 8px 26px rgba(31, 61, 43, .06);
}
.mnyh__head { margin-bottom: 12px; }
.mnyh__eyebrow {
  display: block; font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--mny-green); margin-bottom: 4px;
}
.mnyh__title {
  margin: 0; color: var(--mny-text); font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  font-weight: 800; line-height: 1.25;
}
.mnyh__row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
@media (max-width: 760px) { .mnyh__row { grid-template-columns: 1fr; } }

.mnyh__card {
  display: flex; align-items: center; gap: 12px;
  border-radius: 14px; padding: 14px 16px;
  text-decoration: none; color: var(--mny-text);
  border: 1px solid transparent;
  transition: transform .13s, box-shadow .13s, filter .13s;
}
.mnyh__card:hover {
  transform: translateY(-2px); color: var(--mny-text);
  box-shadow: 0 10px 22px rgba(31, 61, 43, .14); filter: saturate(1.06);
}

/* фоны таблеток: тёплое золото · шалфей · терракота */
.mnyh__card:nth-child(1) { background: linear-gradient(135deg, #fdf4dd 0%, #f7e7bb 100%); border-color: #ecd9a0; }
.mnyh__card:nth-child(2) { background: linear-gradient(135deg, #e9f5ee 0%, #d5ebdd 100%); border-color: #c3e0cf; }
.mnyh__card:nth-child(3) { background: linear-gradient(135deg, #fdefe7 0%, #f8dcc9 100%); border-color: #eccab3; }

.mnyh__ic {
  flex: none; width: 42px; height: 42px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; background: rgba(255, 255, 255, .75);
  box-shadow: 0 2px 6px rgba(31, 61, 43, .08);
}
.mnyh__txt { flex: 1; min-width: 0; }
.mnyh__txt b { display: block; font-size: .96rem; font-weight: 800; line-height: 1.2; }
.mnyh__txt small { display: block; margin-top: 2px; font-size: .78rem; font-weight: 600; }
.mnyh__card:nth-child(1) small { color: #8a6a14; }
.mnyh__card:nth-child(2) small { color: var(--mny-green-dk); }
.mnyh__card:nth-child(3) small { color: #a34e2a; }
.mnyh__go { flex: none; font-weight: 800; font-size: 1.1rem; }
.mnyh__card:nth-child(1) .mnyh__go { color: #8a6a14; }
.mnyh__card:nth-child(2) .mnyh__go { color: var(--mny-green-dk); }
.mnyh__card:nth-child(3) .mnyh__go { color: #a34e2a; }
