/* до 640px меняем порядок колонок: 2-я идёт первой */
@media (max-width: 640px){
  #rec1421130661 .t-container .t-col:nth-child(2){ order:-1; }
  #rec1421130661 .t-container{ display:flex; flex-direction:column; }
}

/* 2-я карточка — рамка/тень + чуть меньше скругление */
#rec1421130661 .t-container .t-col:nth-child(2) [class*="__item"],
#rec1421130661 .t-container .t-col:nth-child(2) [class*="__wrapper"],
#rec1421130661 .t-container .t-col:nth-child(2) [class*="__content"]{
  border:1px solid #2A7A6D !important;
  box-shadow:0 10px 28px rgba(15,23,42,.12) !important;
  border-radius:18px !important; /* было 20px */
}

/* бейдж — выше и вправо, скругление -2px */
#rec1421130661 .t-container .t-col:nth-child(2) .t-name,
#rec1421130661 .t-container .t-col:nth-child(2) h3{
  position:relative; padding-top:28px;
}
#rec1421130661 .t-container .t-col:nth-child(2) .t-name::before,
#rec1421130661 .t-container .t-col:nth-child(2) h3::before{
  content:"Популярный";
  position:absolute; 
  top:-10px;              /* было 0 */
  right:0;                /* выровняли вправо */
  left:auto;              /* отключили left */
  background:#4C8DF6; 
  opacity:.95;
  color:#fff;
  padding:4px 10px; 
  border-radius:10px;     /* было 12px */
  font-weight:600; 
  font-size:12px; 
  line-height:1;
}
