/* =========================
   MECHTA — PLAN IMAGE FIX
   ОДИНАКОВЫЙ размер, компактно
   ========================= */

/* контейнер изображения */
.plans img,
.t396 img,
.t-card img{
  max-width: 78% !important;   /* ключевая строка */
  margin: 0 auto !important;
  display: block !important;
  height: auto !important;
}

/* убираем лишний визуальный “воздух” */
.plans .t-card,
.plans > div{
  padding-bottom: 20px !important;
}

/* мобильная версия — чуть крупнее */
@media (max-width: 980px){
  .plans img,
  .t396 img,
  .t-card img{
    max-width: 90% !important;
  }
}
/* =========================
   MECHTA — BUTTON CONTRAST FIX
   Зеленые кнопки: читаемый текст
   ========================= */

/* 1) Все зелёные кнопки — белый текст */
a.btn.primary,
.btn.primary,
.t-submit,
button.t-submit,
.t-btn,
.t-btn_sm,
.t-btn_md,
.t-btn_lg{
  color: #ffffff !important;
  font-weight: 900 !important;
  text-shadow: 0 1px 0 rgba(0,0,0,.25);
}

/* 2) Чуть “собираем” зелёный фон, чтобы не светился грязно */
a.btn.primary,
.btn.primary,
.t-submit,
button.t-submit{
  background: linear-gradient(135deg,#16b874,#0f8f5b) !important;
  box-shadow: 0 14px 34px rgba(0,0,0,.30) !important;
}

/* 3) Ховер/нажатие (приятный отклик) */
a.btn.primary:hover,
.btn.primary:hover,
.t-submit:hover,
button.t-submit:hover{
  filter: brightness(1.05);
  transform: translateY(-1px);
}