/* Стили для полной страницы актеров */

.actor-card-fullpage {
    display: flex;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.actor-card-fullpage:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.actor-poster-section {
    flex-shrink: 0;
    width: 120px;
    height: 180px;
    overflow: hidden;
}

.actor-poster-fullpage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.actor-card-fullpage:hover .actor-poster-fullpage {
    transform: scale(1.05);
}

.actor-info-section {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.actor-header {
    margin-bottom: 10px;
}

.actor-name {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.actor-name a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.actor-name a:hover {
    color: #007bff;
}

.actor-details {
    margin-bottom: 15px;
}

.actor-detail {
    margin-bottom: 5px;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.actor-detail strong {
    color: #333;
    font-weight: 500;
}

.actor-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.actor-stat {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #666;
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 4px;
}

.actor-rating {
    color: #ffc107;
    font-weight: bold;
}

.actor-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}


/* Адаптивность */

@media (max-width: 768px) {
    .actor-card-fullpage {
        flex-direction: column;
    }
    .actor-poster-section {
        width: 100%;
        height: 200px;
    }
    .actor-info-section {
        padding: 12px;
    }
    .actor-stats {
        gap: 10px;
    }
    .actor-stat {
        font-size: 12px;
        padding: 3px 6px;
    }
}

@media (max-width: 480px) {
    .actor-poster-section {
        height: 150px;
    }
    .actor-name {
        font-size: 16px;
    }
    .actor-detail {
        font-size: 13px;
    }
    .actor-stats {
        flex-direction: column;
        gap: 5px;
    }
}