.bbb-movie {
    grid-column: span 2;
}

.bbb-movie--itens {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.bbb-movie--itens > img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    z-index: -1;
    position: absolute;
    border-radius: 15px;
}

.bbb--movie-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: linear-gradient(359deg, black, transparent);
    border-radius: 15px;
}

.bbb--movie-content > h3 {
    font-family: "NunitoSans-SemiBold";
    font-size: 15px;
    line-height: 19px;
    color: #4A4A4A;
    display: flex;
    gap: 10px;
    align-items: center;
}

.bbb--movie-text {
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: center;
}

.bbb--movie-text > h2 {
    font-size: 18px;
    font-family: 'NunitoSans-Black';
    line-height: 24px;
    color: #fff;
    text-align: center;
}
@media (max-width: 1024px) {
    .bbb--movie-content{
        min-height: 180px;
    }
    .bbb-movie{
        grid-column: span 1;
    }
}

@media (max-width: 590px) {
    .bbb--movie-content{
        min-height: 180px;
        align-items: flex-start;
    }
    .bbb--movie-text{
        align-items: flex-start;
    }
    .bbb--movie-text>h2{
        text-align: left;
    }
}