/* Блок тарифов: выравнивание цен и отступы описания/списка */

/* Равная высота карточек и прижатие цены к одной линии */
.plan__list {
  align-items: stretch;
}
.plan__item-wrapper {
  display: flex;
  flex-direction: column;
}
.plan__item {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  min-height: 0;
}
/* Цена и кнопка внизу — цены по одной линии */
.plan__price {
  margin-top: auto;
  padding-top: 0.5rem;
}
/* Отступ между описанием и списком (Безлимит, 7 устройств) */
.plan__descr {
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.plan__list-features {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.plan__list-features .plan__list-item {
  margin-bottom: 0.5rem;
}
.plan__list-features .plan__list-item:last-child {
  margin-bottom: 0;
}
