/* =========================
   HOME ACTORS SLIDER
========================= */

.home-actors-section {
    margin: 40px 0;
    padding: 25px;
    background: linear-gradient(135deg,#121826,#0f1722);
    border-radius: 18px;
}

/* HEADER */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.section-title a {
    color: #fff;
    text-decoration: none;
}

.section-title a:hover {
    color: #6c63ff;
}

/* ARROWS */
.slider-nav {
    display: flex;
    gap: 10px;
}

.slider-nav div {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: 0.2s;
}

.slider-nav div:hover {
    background: #6c63ff;
}

/* SLIDER */
.actors-slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.actors-slider::-webkit-scrollbar {
    display: none;
}

/* CARD */
.actor-slide {
    min-width: 150px;
    flex-shrink: 0;
}

/* IMAGE */
.actor-avatar {
    width: 150px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    background: #0f172a;
}

.actor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* 🔥 NAME STYLE (როგორც სქრინში) */
.actor-name {
    margin-top: 8px;
    font-size: 13px;
    color: #cbd5e1;
    text-align: center;

    white-space: nowrap;      /* 1 ხაზი */
    overflow: hidden;
    text-overflow: ellipsis;  /* ... */

    padding: 0 5px;
}