:root {
    --slider-height: 72px;
    --item-image-width: 96px;
    --item-image-horizontal-margin: 16px;
    --item-name-width: 208px;
    --item-name-horizontal-margin: 32px;
    --item-full-width: calc(
        var(--item-image-width)
        + var(--item-image-horizontal-margin)
        + var(--item-name-width) 
        + var(--item-name-horizontal-margin)
    );
}

dl {
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
}
dd {
    margin-inline-start: 0;
}


#actors_section h2 {
    font-weight: 800;
    font-size: 18px;
    line-height: 32px;
}

.slider-arrow {
    padding: 5px;
    min-width: 20px;
    height: var(--slider-height);
    border: none;
    font-size: 0;
    background-image: url("../images/icon_circle_arrow.png");
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    cursor: pointer;
}
.slider-prev {
    margin-right: 5px;
    transform: rotate(180deg);
}
.slider-next {
    margin-left: 5px;
}
.slider-hidden {
    visibility: hidden;
}

#actors_slider {
    margin: 16px 0 32px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
}
#slider_viewport {
    margin: 0 10px;
    overflow: hidden;
    width: calc(var(--item-full-width) * 2);
    height: var(--slider-height);
}
#slider_track {
    display: flex;
    flex-direction: row;
    align-items: center;
    transition: 0.5s ease-out;
}
.slider-item-container {
    margin-right: var(--item-name-horizontal-margin);
}
.slider_item {
    display: flex;
    flex-direction: row;
}
.actor_image {
    margin-right: var(--item-image-horizontal-margin);
    width: var(--item-image-width);
    height: var(--slider-height);
}
.actor_image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.actor_name_container {
    width: var(--item-name-width);
}
.actor_name {
    font-size: 15px;
    font-weight: 600;
}
.actor_name_eng {
    font-size: 15px;
    font-weight: 400;
    color: #999999;
}
