/* company-movies-list section -- */
.company-movies-list.section{
    gap: 40px;
    margin-bottom: 60px;
}
.company-movies-list.section a:hover{
    text-decoration: none;
}
.company-movies-wrapper{
    display: grid;
    gap: 20px;
    grid-template-rows: max-content max-content;
    grid-template-columns: 1fr 1fr;
}
.company-movies-item-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 30px;
    word-break: break-all;
}
.company-movies-item{
    position: relative;
    width: 100%;
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 20px;
}
.company-movie-title{
    font-size: 19px;
    color: #3eb134;
    font-weight: 600;
    word-break: break-all;
}
.company-name{
    font-size: 14px;
    color: #000000;
    font-weight: 300;
    letter-spacing: 1px;
}
.company-movie iframe{
    aspect-ratio: 3 / 2;
}
.company-detail-link-wrapper{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.company-detail-link-wrapper > a{
    position: relative;
    width: 100%;
    border: 1px solid #3eb134;
    color: #3eb134;
    text-align: center;
    padding: 8px 0;
    border-radius: 30px;
    font-size: 16px;
}
.pager{
    margin-top: 20px;
}
@media (min-width: 769px) {
    .company-movies-wrapper{
        display: grid;
        gap: 30px;
        grid-template-rows: repeat(auto, 1fr);
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    .company-movies-item-wrapper{
        width: calc((90vw - 90px) / 4);
    }
    .company-movies-item > div{
        width: calc((90vw - 90px) / 4);
    }

    .company-movies-wrapper.not-max-columns-count{
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin-bottom: 10px;
    }
}
@media (min-width: 1200px) {
    .company-movies-item-wrapper{
        width: calc((1093px - 90px) / 4);
    }
    .company-movies-item > div{
        width: calc((1093px - 90px) / 4);
    }
}

.company-movies-item .no-movie{
    height: 170px;
    width: 100%;
    background-color: #bbbbbb;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333333;
}
/* -- company-movies-list section */

.footer{
    margin-top: 90px;
}
@media (min-width: 769px){
    .footer{
        margin-top: 150px;
    }
}

.no-company-movies-wrapper{
    position: relative;
    width: 90%;
    max-width: 1093px;
    margin: 0 auto;
    text-align: center;
    color: #999999;
}