.testimonial-card-link {
  display: flex;
  flex-flow: column;
  grid-row-gap: 40px;
  grid-column-gap: 40px;
  color: inherit;
  text-decoration: none;
  transition: box-shadow 0.2s ease;
}

.testimonial-card-link:hover {
  box-shadow:
    0 2px 8px -2px #1a192514,
    0 4px 16px -4px #1a19251a;
}

.testimonial-card-footer {
  align-items: center;
}

.testimonial-story-chevron {
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  color: var(--accent, #c2b067);
  transition: transform 0.2s ease;
}

.testimonial-card-link:hover .testimonial-story-chevron {
  transform: translateX(3px);
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-card-link:hover .testimonial-story-chevron {
    transform: none;
  }
}
