.public-actor__single {
	padding-block: 40px;
}

.public-actor__single .container {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.actor-sidebar {
	width: 100%;
    max-width: 320px;
	flex-shrink: 0;
	padding: 12px;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	background: #fff;
}

@media (min-width: 768px) {
	.actor-sidebar {
		padding: 24px;
	}
}

.actor-sidebar__avatar img {
	display: block;
	width: 100%;
	height: auto;
}

.actor-sidebar__name {
	margin: 16px 0 0;
    font-size: 24px;
    text-align: center;
}

.actor-sidebar__social {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 16px 0 0;
	padding: 0;
}

.actor-social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid #e5e5e5;
	border-radius: 50%;
	color: inherit;
	text-decoration: none;
}

.actor-social svg {
	width: 18px;
	height: 18px;
	display: block;
}

.actor-social__letter {
	font-size: 12px;
	line-height: 1;
}

.actor-sidebar__skills {
	margin-top: 20px;
}

.actor-sidebar__heading {
	margin: 0 0 8px;
}

.actor-sidebar__skills p {
	margin: 0;
	padding: 12px;
	background: #f5f5f5;
	border-radius: 4px;
}

.actor-content {
	width: 100%;
	max-width: calc(100% - 340px);
	min-width: 0;
}

.actor-block {
	padding: 12px;
	margin-bottom: 20px;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	background: #fff;
}

@media (min-width: 768px) {
	.actor-block {
		padding: 24px;
	}
}

.actor-block h3 {
	margin: 0 0 16px;
	padding-bottom: 10px;
	border-bottom: 1px solid #eee;
}

.actor-block h3 + h3 {
	margin-top: 24px;
}

.actor-block h4 {
	margin: 20px 0 10px;
}

.actor-block p {
	margin: 0 0 12px;
}

.actor-block .pa-muted {
	color: #777;
}

.pa-credits-scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	margin: 0 0 16px;
}

.actor-block table.pa-credits {
	width: 100%;
	min-width: 560px;
	border-collapse: collapse;
	margin: 0;
}

.actor-block table.pa-credits th,
.actor-block table.pa-credits td {
	border: 1px solid #e5e5e5;
	padding: 8px 10px;
	text-align: left;
	vertical-align: top;
	white-space: nowrap;
}

.actor-photos {
	display: grid;
	grid-template-columns: repeat(auto-fill, 220px);
	gap: 12px;
}

.actor-photos__item {
	display: block;
	width: 220px;
	height: 170px;
	padding: 0;
	border: 1px solid #e5e5e5;
	background: #f5f5f5;
	cursor: pointer;
	overflow: hidden;
	line-height: 0;
}

.actor-photos__item img {
	width: 220px;
	height: 170px;
	object-fit: cover;
	display: block;
}

.actor-lightbox[hidden] {
	display: none !important;
}

.actor-lightbox {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.actor-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.75);
}

.actor-lightbox__dialog {
	position: relative;
	z-index: 1;
	max-width: min(92vw, 1100px);
	max-height: 90vh;
	display: flex;
	align-items: center;
	gap: 12px;
}

.actor-lightbox__figure {
	margin: 0;
	max-height: 90vh;
}

.actor-lightbox__image {
	display: block;
	max-width: 80vw;
	max-height: 85vh;
	width: auto;
	height: auto;
	background: #111;
}

.actor-lightbox__close,
.actor-lightbox__nav {
	border: 0;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	cursor: pointer;
	padding: 8px 12px;
	line-height: 1;
}

.actor-lightbox__close {
	position: absolute;
	top: -40px;
	right: 0;
	font-size: 28px;
}

html.actor-lightbox-open {
	overflow: hidden;
}

@media (max-width: 900px) {
	.public-actor__single .container {
		flex-direction: column;
	}

	.actor-sidebar,
	.actor-content {
		width: 100%;
		max-width: none;
	}

	.pa-credits-scroll {
        padding-bottom: 8px;
		scrollbar-width: thin;
		scrollbar-color: #d0d0d0 transparent;
	}

	.pa-credits-scroll::-webkit-scrollbar {
		height: 4px;
	}

	.pa-credits-scroll::-webkit-scrollbar-track {
		background: transparent;
	}

	.pa-credits-scroll::-webkit-scrollbar-thumb {
		background: #d0d0d0;
		border-radius: 4px;
	}

	.actor-photos {
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
	}

	.actor-photos__item {
		width: 100%;
		height: auto;
		aspect-ratio: 220 / 170;
	}

	.actor-photos__item img {
		width: 100%;
		height: 100%;
	}
}
