/**
 * 作品一覧（[movie_list] / [coming_soon_list]ショートコード）共通スタイル
 */

.movie-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.movie-list-item {
    width: calc(25% - 23px);
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.movie-list-thumbnail {
    aspect-ratio: 2/3;
    overflow: hidden;
    background: #f0f0f0;
}

.movie-list-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.movie-list-thumbnail .no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
}

.movie-list-info {
    padding: 15px;
    text-align: center;
}

.movie-list-title {
    font-size: 16px;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.movie-list-title a {
    color: #333;
    text-decoration: none;
}

.movie-list-title a:hover {
    color: #f0831e;
}

.movie-list-release-date {
    font-size: 13px;
    color: #666;
    margin: 0 0 15px 0;
    font-weight: bold;
}

.movie-list-button {
    display: inline-block;
    background: #f0831e;
    color: #fff;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
}

.movie-list-button:hover {
    background: #d97218;
    color: #fff;
}

.no-movies {
    text-align: center;
    padding: 30px;
    color: #666;
}

@media (max-width: 768px) {
    .movie-list-item {
        width: calc(50% - 15px);
    }
}
