.card {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.card-img {
  width: 100%;
  aspect-ratio: 1.5;
  height: auto;
  object-fit: cover;
  display: block;
}

.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
}

.card-content p {
  margin-top: 0;
}

.card-caption {
  flex: 1;
}

.card-content .button {
  font-size: 16px;
  text-align: center;
}

.card-style-1 {
  color: black;
  background-color: var(--foreground-color);
  box-shadow: 0px 0px 12px rgba(0, 0, 0, .15);
}

.card-style-2 {
  color: white;
  background-color: var(--primary-color);
}