.movie-view {
    display: flex;
    flex-direction: column;
}

.movie-meta-data {
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
    .movie-meta-data {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

.movie-meta-data .movie-poster {
    width: 311px;
    height: 420px;
}

.movie-meta-data .movie-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.movie-meta-data .movie-info {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    color:#FFFFFF;
    min-width: 525px;
    justify-content: space-between;
}

@media screen and (max-width: 600px) {
    .movie-meta-data .movie-info {
        min-width: 100px;
    }
}

.movie-meta-data .movie-info .movie-info-title {
    font-size: 52px;
    font-weight: 600;
    line-height: 62px;
    margin-bottom: 30px;
}

@media screen and (max-width: 600px) {
    .movie-meta-data .movie-info .movie-info-title {
        width: 100%;
    }
}

.movie-meta-data .movie-info .movie-info-others {
    font-size: 28px;
    font-weight: 600;
    line-height: 33px;
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    flex-direction: row;
}

@media screen and (max-width: 600px) {
    .movie-meta-data .movie-info .movie-info-others {
        flex-direction: column;
    }
}

.movie-meta-data .movie-info .movie-info-others span.detail_label {
    font-size: 24px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 10px;
    width: 50%;
    min-width: 350px;

}

.movie-meta-data .movie-info .movie-info-others span.detail_value {
    font-size: 24px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 10px;
    width: 50%;
    color:#B0B0B0;

}

.movie-view .movie-storyline {
    color: #ffffff;
    font-weight: 400;
    font-size:22px;
    line-height: 33px;
    font-family: 'Inter-Regular', sans-serif !important;
}

.movie-related {
    color: #ffffff;
}

.movie-related a {
    color: #ffffff;
    text-decoration: none;
}

.movie-related a:hover {
    text-decoration: underline;
}