.foot {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


.movie {
    display: flex;
    align-items: flex-start;
}



.movie img {
    aspect-ratio: 2/3;
    width: 75px;
    filter: grayscale(70%);
    opacity: 90%;
    border-radius: 6px;
    flex-shrink: 0;
    max-width: 100%; /* Don't exceed container */
    height: auto; /* Maintain aspect ratio */
    outline: 2px solid var(--border-color);
    outline-offset: -2px; /* This pushes the outline inside */
}

.movie img:hover{
    outline-width: 3px;
    outline-color: hsl(200, 75%, 60%);
    transition: outline-color .1s ease;
}


.details {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    margin: 0 0 0 15px;
    min-width:0;
    flex: 1;

}

.details span{
    font-size: 1rem;
    color: var(--h3-color);

}

.details pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
}



@media (max-width: 768px) {
    .movie img {
        width: 70px;
    }
}