.movie-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  cursor: pointer;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  background-color: var(--color-bg-alt, #f5f5f5);

  &:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }

  .movie-card__image {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    background-color: var(--color-bg, #e0e0e0);
  }

  .movie-card__title {
    padding: 0.5rem;
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    /* color: var(--color-fg); */
    color: black;
    line-height: 1.3;
    word-break: break-word;
  }
}
