.grid.container{
    padding:0;
}
.search-actors-section {
    margin-top: 40px;
}
.actors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(256px, 1fr));
    gap: 25px;
}
.actor-card {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}
.actor-card:hover {
    transform: translateY(-5px);
}

/* Photo */
.actor-photo-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 2/3; /* Пропорции как у постера */
    border-radius: 16px;
    overflow: hidden;
    background: #1a1f29;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.actor-photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Name */
.actor-info {
    padding: 12px 5px;
}
.actor-name {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.actor-en-name {
    font-size: 13px;
    color: #94a3b8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Mobile */
@media (max-width: 480px) {
    .actors-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .actor-name {
        font-size: 14px;
    }
}