.movie-vertical-item {
    width: 100%;
    display: flex;
    gap: 1rem;
    background-color: var(--bg-default-2);
    border-radius: 0.5rem;
    padding: 1rem;
    transition: transform 0.2s ease;
}

.movie-vertical-item:hover {
    cursor: pointer;
    transform: translateY(-10px);
}

.movie-v-image {
    width: 40%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.movie-v-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    aspect-ratio: 3/2;
    border-radius: 0.5rem;
}

.movie-v-content {
    display: flex;
    width: 60%;
    flex-direction: column;
    gap: 0.5rem;
}

.movie-v-title {
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.4;
}

.movie-v-code {
    color: var(--pg-main);
    font-weight: 600;
    margin-right: 0.5rem;
}

.movie-v-info {
    display: flex;
    flex-direction: column;
    color: var(--fg-light2);
    font-size: 0.9rem;
}

.info-label {
    color: var(--fg-light4);
    margin-right: 0.5rem;
}

.movie-v-actresses,
.movie-v-maker {
    display: flex;
    align-items: baseline;
}

.actress-list,
.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.actress-list a {
    color: var(--fg-light1);
}

.actress-list a:hover {
    color: var(--pg-main);
}

.movie-v-tags {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    gap: 0.3rem;
    width: 100%;
}

.tag {
    display: inline-block;
    background-color: var(--bg-tag-minor);
    padding: 0.1rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.movie-v-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    color: #666666;
    font-size: 0.85rem;
}

.view-count {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nocover {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #5c0c14;
    border-radius: 0.5rem;
}

.nocover img {
    width: 40%;
    height: auto;
}

.nocover-text {
    font-size: 0.8rem;
    color: #fff;
    margin-top: 0.5rem;
}