/* ===== ACTORS SLIDER ===== */

.actors-block {
    margin-top: 30px;
}

.actors-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.actors-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.actors-nav {
    display: flex;
    gap: 8px;
}

.actors-prev,
.actors-next {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #1f2633;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: .2s;
}

.actors-prev:hover,
.actors-next:hover {
    background: #00b27a;
    color: #041b12;
}

/* cards */

.actor-card {
    width: 140px;
}

.actor-card img {
    width: 100%;
    aspect-ratio: 2 / 3;
    border-radius: 14px;
    object-fit: cover;
    margin-bottom: 6px;
}

.actor-name {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.actor-role {
    font-size: 12px;
    color: #9aa4b2;
}

/* swiper fix */
.actors-swiper {
    padding-bottom: 10px;
}