/* карточки скрыты на десктопе */
.dedi-cards{ display:none; }

/* базовый стиль карточки сервера */
.dedi-card{
  background:#fff; border:1px solid rgba(2,6,23,.08); border-radius:10px;
  padding:14px; box-shadow:0 6px 16px rgba(0,0,0,.06);
  display:grid; gap:10px; position:relative;
}
.dedi-card__head{ display:flex; align-items:center; justify-content:space-between; gap:8px; }
.dedi-card__badge{ font:700 12px/1 Inter; background:#F2F5FD; border:1px solid rgba(2,6,23,.06); color:#0b1040; padding:4px 8px; border-radius:999px; }
.dedi-card__title{ font:800 16px/1.2 Inter; color:#0b1040; }
.dedi-card__meta{ display:flex; flex-wrap:wrap; gap:6px; }
.dedi-chip{ background:#F2F5FD; color:#0b1040; border:1px solid rgba(2,6,23,.06); font:700 11px/1 Inter; padding:4px 8px; border-radius:999px; }
.dedi-card__row{ display:flex; justify-content:space-between; align-items:center; gap:10px; }
.dedi-card__price{ display:flex; align-items:baseline; gap:6px; }
.dedi-card__price .num{ font:700 22px/1 Inter; color:#2d3259; letter-spacing:-.02em; }
.dedi-card__price .per{ font:600 12px/1; opacity:.7; }
.dedi-card__old{ font-size:13px; opacity:.55; text-decoration:line-through; text-decoration-color:#ed4c8f; }
.dedi-card__cta .dedi-btn{ width:100%; }

/* Переключение на мобилке: карточки вместо таблицы */
@media (max-width: 780px){
  .table-dedi-wrap{ display:none; }
  .dedi-cards{
    display:grid;
    grid-template-columns:1fr;
    gap:12px;
    margin-top:12px;
  }
}
