/* Страница актёра — крупная и выразительная */
.lcab-actor-page {
	max-width: 1280px;
	margin: 0 auto;
	padding: 32px 24px 48px;
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

.lcab-actor-page__inner {
	background: #fff;
	border-radius: 24px;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08), 0 2px 12px rgba(0, 0, 0, 0.04);
	overflow: hidden;
}

/* Шапка — крупный блок с фото и данными */
.lcab-actor-page__header {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	align-items: flex-start;
	padding: 48px 48px 56px;
	background: linear-gradient(145deg, #0f172a 0%, #1e293b 40%, #334155 100%);
	color: #f1f5f9;
	position: relative;
}

.lcab-actor-page__header::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 80px;
	background: linear-gradient(to top, rgba(15, 23, 42, 0.4), transparent);
	pointer-events: none;
}

.lcab-actor-page__avatar {
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}

.lcab-actor-page__avatar-img {
	width: 220px;
	height: 220px;
	border-radius: 50%;
	object-fit: cover;
	border: 5px solid rgba(255, 255, 255, 0.25);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.lcab-actor-page__avatar-placeholder .lcab-actor-page__avatar-img {
	background: rgba(255, 255, 255, 0.08);
}

.lcab-actor-page__header-info {
	flex: 1;
	min-width: 0;
	position: relative;
	z-index: 1;
}

.lcab-actor-page__title {
	margin: 0 0 12px;
	font-size: 36px;
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.15;
	color: #fff;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.lcab-actor-page__original {
	margin: 0 0 24px;
	font-size: 18px;
	opacity: 0.9;
	color: rgba(255, 255, 255, 0.85);
}

.lcab-actor-page__meta {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 10px 28px;
	margin: 0;
	font-size: 15px;
	line-height: 1.5;
}

.lcab-actor-page__meta dt {
	margin: 0;
	color: rgba(255, 255, 255, 0.7);
	font-weight: 500;
}

.lcab-actor-page__meta dd {
	margin: 0;
	color: #f1f5f9;
}

.lcab-actor-page__rating {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	padding: 6px 14px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 10px;
	font-weight: 700;
	font-size: 16px;
}

/* Блок биографии */
.lcab-actor-page__bio {
	padding: 36px 48px 40px;
	border-bottom: 1px solid #e2e8f0;
	background: #fafbfc;
}

.lcab-actor-page__bio-title {
	margin: 0 0 16px;
	font-size: 22px;
	font-weight: 800;
	color: #0f172a;
	letter-spacing: -0.02em;
}

.lcab-actor-page__bio-content {
	font-size: 16px;
	line-height: 1.7;
	color: #334155;
}

.lcab-actor-page__bio-content p {
	margin: 0 0 1em;
}

.lcab-actor-page__bio-content p:last-child {
	margin-bottom: 0;
}

/* Секция фильмографии */
.lcab-actor-page__films {
	padding: 40px 48px 48px;
}

.lcab-actor-page__films-head {
	display: flex;
	align-items: baseline;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 28px;
	padding-bottom: 16px;
	border-bottom: 2px solid #e2e8f0;
}

.lcab-actor-page__films-title {
	margin: 0;
	font-size: 26px;
	font-weight: 800;
	color: #0f172a;
	letter-spacing: -0.02em;
}

.lcab-actor-page__films-count {
	font-size: 15px;
	color: #64748b;
	font-weight: 500;
}

.lcab-actor-page__no-films {
	margin: 0;
	color: #64748b;
	font-size: 17px;
	line-height: 1.6;
}

/* Сетка фильмов — крупные карточки */
.lcab-actor-page__films-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 28px;
}

.lcab-actor-page__film-item {
	margin: 0;
}

.lcab-actor-page__film-link {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	border-radius: 16px;
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
}

.lcab-actor-page__film-link:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
	border-color: #cbd5e1;
}

.lcab-actor-page__film-thumb-wrap {
	display: block;
	position: relative;
	aspect-ratio: 2/3;
	overflow: hidden;
	background: #e2e8f0;
}

.lcab-actor-page__film-thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.lcab-actor-page__film-link:hover .lcab-actor-page__film-thumb {
	transform: scale(1.05);
}

.lcab-actor-page__film-no-thumb {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
	font-size: 56px;
}

.lcab-actor-page__film-info {
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1;
}

.lcab-actor-page__film-title {
	font-weight: 700;
	font-size: 15px;
	color: #0f172a;
	line-height: 1.35;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.lcab-actor-page__film-role {
	font-size: 13px;
	color: #64748b;
	line-height: 1.3;
}

.lcab-actor-page__film-year {
	font-size: 13px;
	color: #94a3b8;
	font-weight: 500;
}

/* Постраничная навигация */
.lcab-actor-page__pagination {
	margin-top: 40px;
	padding-top: 28px;
	border-top: 1px solid #e2e8f0;
}

.lcab-actor-page__pagination-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
}

.lcab-actor-page__pagination-item {
	margin: 0;
}

.lcab-actor-page__pagination-item a,
.lcab-actor-page__pagination-item span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	color: #475569;
	background: #f1f5f9;
	border: 1px solid #e2e8f0;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.lcab-actor-page__pagination-item a:hover {
	background: #e2e8f0;
	color: #0f172a;
	border-color: #cbd5e1;
}

.lcab-actor-page__pagination-item .current {
	background: #1e293b;
	color: #fff;
	border-color: #1e293b;
	cursor: default;
}

.lcab-actor-page__pagination-item .dots {
	background: transparent;
	border-color: transparent;
	cursor: default;
}

/* Адаптив */
@media (max-width: 900px) {
	.lcab-actor-page {
		padding: 20px 16px 32px;
		max-width: 100%;
	}
	.lcab-actor-page__header {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 36px 24px 44px;
		gap: 28px;
	}
	.lcab-actor-page__avatar-img {
		width: 180px;
		height: 180px;
	}
	.lcab-actor-page__title {
		font-size: 28px;
	}
	.lcab-actor-page__meta {
		justify-content: center;
	}
	.lcab-actor-page__bio {
		padding: 28px 24px 32px;
	}
	.lcab-actor-page__films {
		padding: 28px 24px 36px;
	}
	.lcab-actor-page__films-list {
		grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
		gap: 20px;
	}
}

@media (max-width: 640px) {
	.lcab-actor-page__header {
		padding: 28px 20px 36px;
	}
	.lcab-actor-page__avatar-img {
		width: 160px;
		height: 160px;
	}
	.lcab-actor-page__title {
		font-size: 24px;
	}
	.lcab-actor-page__films-title {
		font-size: 22px;
	}
	.lcab-actor-page__films-list {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
	.lcab-actor-page__film-info {
		padding: 12px;
	}
	.lcab-actor-page__film-title {
		font-size: 14px;
	}
	.lcab-actor-page__pagination-item a,
	.lcab-actor-page__pagination-item span {
		min-width: 40px;
		height: 40px;
		font-size: 14px;
	}
}
