.poster {
    width: 400px;
}

.programs {
    width: 100%;
    display: flex;
    grid-gap: 20px;
    text-align: center;
}

@media (orientation: portrait) {
    .poster {
        width: 100%
    }

    .programs {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-gap: 20px;
        text-align: center;
    }
}
