.dl-abp {
	box-sizing: border-box;
	direction: rtl;
	text-align: right;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 20px;
	margin: 24px 0;
	padding: 20px;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	background: #f8f9fa;
}

.dl-abp *,
.dl-abp *::before,
.dl-abp *::after {
	box-sizing: border-box;
}

.dl-abp__media {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	order: 1;
	gap: 16px;
}

.dl-abp__content {
	flex: 1 1 0;
	min-width: 250px;
	order: 2;
}

.dl-abp__photo,
.dl-abp__video {
	position: relative;
	flex-shrink: 0;
	overflow: hidden;
	border: 3px solid #598cff;
	border-radius: 50%;
}

.dl-abp__photo {
	width: 168px;
	height: 168px;
	order: -1;
}

.dl-abp__video {
	width: 100px;
	height: 100px;
	padding: 0;
	background: #e0e0e0;
	cursor: pointer;
}

.dl-abp__photo img,
.dl-abp__video img,
.dl-abp__cover-empty {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dl-abp__play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.4);
}

.dl-abp__video:hover .dl-abp__play {
	background: rgba(0, 0, 0, 0.2);
}

.dl-abp__name {
	margin: 0 0 12px;
	color: #1a1a1a;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.3;
}

.dl-abp__bio {
	margin: 0 0 16px;
	color: #4a4a4a;
	font-size: 15px;
	line-height: 1.7;
}

.dl-abp__skills {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 0 0 12px;
	padding: 0;
	list-style: none;
}

.dl-abp__labeled {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 10px;
	margin: 0 0 10px;
}

.dl-abp__labeled-title {
	flex: 0 0 auto;
	color: #1a1a1a;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.4;
	white-space: nowrap;
}

.dl-abp__labeled .dl-abp__skills {
	margin: 0;
	flex: 1 1 0;
	min-width: 0;
}

.dl-abp__skill {
	display: inline-block;
	padding: 5px 12px;
	border: 1px solid #598cff;
	border-radius: 999px;
	background: #fff;
	color: #598cff;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.4;
}

.dl-abp__links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 0 0 12px;
}

.dl-abp__chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 34px;
	padding: 7px 11px;
	border: 1px solid #e0e0e0;
	border-radius: 999px;
	background: #fff;
	color: #1a1a1a;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.2;
	text-decoration: none;
}

.dl-abp__chip img {
	width: 18px;
	height: 18px;
	object-fit: contain;
}

.dl-abp__chip:hover,
.dl-abp__chip:focus-visible {
	border-color: #598cff;
	color: #598cff;
}

.dl-abp__cta {
	display: inline-block;
	padding: 10px 20px;
	border-radius: 6px;
	background: #598cff;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
}

.dl-abp__cta:hover,
.dl-abp__cta:focus-visible {
	opacity: 0.9;
	color: #fff;
}

.dl-abp-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(0, 0, 0, 0.95);
}

.dl-abp-modal.is-open {
	display: flex;
}

.dl-abp-modal__overlay {
	position: absolute;
	inset: 0;
}

.dl-abp-modal__box {
	position: relative;
	z-index: 2;
	width: min(90%, 800px);
}

.dl-abp-modal__close {
	position: absolute;
	top: -40px;
	left: 0;
	width: 40px;
	height: 40px;
	border: 0;
	background: none;
	color: #fff;
	font-size: 32px;
	cursor: pointer;
}

.dl-abp-modal__media {
	display: block;
	width: 100%;
	max-height: 80vh;
	border: 0;
	aspect-ratio: 16 / 9;
	background: #000;
}

.dl-abp-related {
	direction: rtl;
	margin: 24px 0;
}

.dl-abp-related__title {
	margin: 0 0 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid #eee;
	color: #1a1a1a;
	font-size: 18px;
	font-weight: 700;
}

.dl-abp-related__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 20px;
}

.dl-abp-related__item {
	overflow: hidden;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dl-abp-related__item a {
	display: block;
	color: inherit;
	text-decoration: none;
}

.dl-abp-related__thumb {
	height: 150px;
	background: #f0f0f1;
}

.dl-abp-related__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dl-abp-related__body {
	padding: 15px;
}

.dl-abp-related__body h4 {
	margin: 0;
	font-size: 15px;
	line-height: 1.5;
}

.dl-abp-related__body time {
	display: block;
	margin-top: 8px;
	color: #666;
	font-size: 12px;
}

@media (min-width: 769px) {
	.dl-abp__bio--mobile,
	.dl-abp__mobile-links,
	.dl-abp__lists--mobile {
		display: none;
	}
}

@media (max-width: 768px) {
	.dl-abp {
		flex-direction: column;
		gap: 16px;
		padding: 16px;
	}

	.dl-abp__content {
		order: 1;
		width: 100%;
		min-width: 0;
		text-align: center;
	}

	.dl-abp__name {
		margin-bottom: 0;
		font-size: 20px;
	}

	.dl-abp__bio--desktop,
	.dl-abp__desktop-links,
	.dl-abp__lists--desktop {
		display: none;
	}

	.dl-abp__media {
		order: 2;
		width: 100%;
		justify-content: center;
		gap: 12px;
	}

	.dl-abp__bio--mobile {
		order: 3;
		width: 100%;
		margin: 0;
		font-size: 14px;
		text-align: center;
	}

	.dl-abp__lists--mobile {
		order: 4;
		width: 100%;
	}

	.dl-abp__lists--mobile .dl-abp__labeled {
		justify-content: center;
	}

	.dl-abp__mobile-links {
		order: 5;
		width: 100%;
	}

	.dl-abp__mobile-links .dl-abp__links {
		justify-content: center;
	}

	.dl-abp__photo {
		width: 120px;
		height: 120px;
		border-width: 2px;
	}

	.dl-abp__video {
		width: 70px;
		height: 70px;
		border-width: 2px;
	}

	.dl-abp__cta {
		width: 100%;
		margin-top: 8px;
		padding: 12px;
		text-align: center;
	}

	.dl-abp-related__grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.dl-abp-related__thumb {
		height: 200px;
	}
}

@media (min-width: 769px) and (max-width: 1024px) {
	.dl-abp-related__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
