/* делаем ссылки в описании похожими на кнопки */
.t-store__card__text a {
  display: inline-block;
  padding: 12px 24px;
  margin-right: 10px;
  margin-top: 15px;
  border-radius: 4px;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff !important;
}

/* первая кнопка */
.t-store__card__text a:first-of-type {
  background-color: #292f39; /* тёмно-серый */
}

/* вторая кнопка */
.t-store__card__text a:nth-of-type(2) {
  background-color: #ff8562; /* оранжевый */
}

/* при наведении */
.t-store__card__text a:hover {
  opacity: 0.9;
}