.snippet-card-feature {
  background-color: var(--colour-white);
  border-radius: var(--border-radius-md);
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 16.25rem;
}
.snippet-card-feature .image {
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  object-fit: contain;
  height: auto;
  width: 100%;
}
.snippet-card-feature .card-content {
  padding: 0 0.5rem 0.5rem;
}
.snippet-card-feature .card-content .card-heading {
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.snippet-card-feature .card-content p:last-of-type {
  margin: 0;
}