.home-card-actions {
  display: grid;
  width: 100%;
  max-width: 190px;
  margin: auto auto 0;
  gap: 8px;
}

.home-details-button {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}

.home-details-button:hover {
  background: #1d392f;
  transform: translateY(-1px);
}

.home-card-actions .home-amazon {
  max-width: none;
  margin: 0;
}

@media (max-width: 760px) {
  .home-card-actions {
    max-width: 150px;
  }

  .home-details-button {
    min-height: 31px;
    font-size: 13px;
  }
}
