/* Carrusel exterior dinámico y correcciones responsivas, v1.5.2. */
.pde-profiles-carousel {
	--pde-column-gap: 44px;
	--pde-row-gap: 55px;
	position: relative;
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr) 42px;
	grid-template-areas:
		"previous viewport next"
		". dots .";
	align-items: center;
	gap: 12px;
	width: 100%;
	min-width: 0;
	font-family: "Century Gothic", Montserrat, Arial, sans-serif;
}

.pde-profiles-viewport {
	grid-area: viewport;
	width: 100%;
	max-width: 798px;
	min-width: 0;
	margin-inline: auto;
	overflow: visible;
}

.pde-profiles-carousel .pde-profiles {
	column-gap: var(--pde-column-gap);
	row-gap: var(--pde-row-gap);
	width: 100%;
	max-width: none;
	min-width: 0;
	margin-inline: 0;
}

.pde-profiles-carousel.is-ready .pde-profiles-viewport {
	overflow: hidden;
	transition: height 320ms ease;
}

.pde-profiles-carousel.is-ready .pde-profiles {
	display: flex;
	column-gap: 0;
	row-gap: 0;
	transition: transform 440ms cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.pde-profiles-page {
	display: flex;
	flex: 0 0 100%;
	flex-wrap: wrap;
	align-items: stretch;
	align-content: center;
	justify-content: center;
	column-gap: var(--pde-column-gap);
	row-gap: var(--pde-row-gap);
	min-width: 0;
	padding: 8px;
}

.pde-profiles-page > .pde-profile {
	flex: 0 1 var(--pde-card-basis, 100%);
	width: var(--pde-card-basis, 100%);
	max-width: var(--pde-card-basis, 100%);
}

.pde-profiles-arrow {
	display: none;
	place-items: center;
	width: 42px;
	height: 42px;
	margin: 0;
	padding: 0 0 3px;
	border: 2px solid var(--pde-interaction);
	border-radius: 50%;
	appearance: none;
	background-color: transparent !important;
	background-image: none !important;
	color: var(--pde-interaction);
	box-shadow: none !important;
	font-family: Arial, sans-serif;
	font-size: 32px;
	font-weight: 400;
	line-height: 1;
	cursor: pointer;
	transition: transform 180ms ease;
}

.pde-profiles-carousel.is-ready .pde-profiles-arrow {
	display: grid;
}

.pde-profiles-arrow--previous {
	grid-area: previous;
}

.pde-profiles-arrow--next {
	grid-area: next;
}

.pde-profiles-arrow:hover,
.pde-profiles-arrow:focus,
.pde-profiles-arrow:focus-visible,
.pde-profiles-arrow:active {
	border-color: var(--pde-interaction) !important;
	background-color: transparent !important;
	background-image: none !important;
	color: var(--pde-interaction) !important;
	box-shadow: none !important;
	transform: scale(1.06);
}

.pde-profiles-arrow:focus-visible {
	outline: 3px solid rgba(248, 105, 14, 0.34);
	outline-offset: 3px;
}

.pde-profiles-arrow:disabled {
	cursor: default;
	opacity: 0.38;
	transform: none;
}

.pde-profiles-dots {
	grid-area: dots;
	display: none;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 18px;
}

.pde-profiles-carousel.is-ready .pde-profiles-dots {
	display: flex;
}

.pde-profiles-dot {
	width: 11px;
	height: 11px;
	margin: 0;
	padding: 0;
	border: 2px solid var(--pde-interaction);
	border-radius: 50%;
	appearance: none;
	background-color: transparent !important;
	background-image: none !important;
	box-shadow: none !important;
	cursor: pointer;
}

.pde-profiles-dot.is-active,
.pde-profiles-dot:hover,
.pde-profiles-dot:focus-visible {
	background-color: var(--pde-interaction) !important;
}

.pde-profiles-carousel.is-static {
	grid-template-columns: 0 minmax(0, 1fr) 0;
	column-gap: 0;
}

.pde-profiles-carousel.is-static .pde-profiles-arrow,
.pde-profiles-carousel.is-static .pde-profiles-dots {
	display: none;
}

@media (max-width: 1024px) {
	.pde-profiles-carousel {
		--pde-column-gap: 32px;
		--pde-row-gap: 38px;
	}
}

@media (max-width: 767px) {
	.pde-profiles-carousel {
		--pde-column-gap: 12px;
		--pde-row-gap: 24px;
		grid-template-columns: 32px minmax(0, 1fr) 32px;
		gap: 6px;
	}

	.pde-profiles-viewport {
		max-width: 390px;
	}

	.pde-profiles-page {
		align-content: flex-start;
		padding: 5px;
	}

	.pde-profiles-arrow {
		width: 32px;
		height: 32px;
		font-size: 25px;
	}

	.pde-detail-modal__dialog {
		max-height: calc(100dvh - 16px);
		overscroll-behavior: contain;
	}

	.pde-detail-modal__content {
		padding: 18px 14px 30px;
	}

	.pde-profile__top {
		min-height: 166px;
		padding: 22px 18px 16px;
	}

	.pde-profile__accent {
		width: 68px;
		height: 7px;
		flex-basis: 7px;
	}

	.pde-profile__identity {
		display: flex;
		flex-direction: row;
		align-items: center;
		margin-top: 18px;
		gap: 9px;
		text-align: left;
	}

	.pde-profile__photo {
		width: 80px;
		height: 80px;
		flex-basis: 80px;
	}

	.pde-profile__name {
		align-items: flex-start;
		font-size: clamp(23px, 8vw, 30px);
		line-height: 0.94;
	}

	.pde-profile__content {
		min-height: 148px;
		padding: 12px 14px 14px;
	}

	.pde-profile__skills-row {
		grid-template-columns: 82px minmax(0, 1fr);
		gap: 8px;
	}

	.pde-profile__profession {
		align-items: flex-start;
		font-size: 15px;
		text-align: left;
	}

	.pde-profile__badges {
		justify-content: flex-start;
		gap: 5px;
	}

	.pde-profile__badge,
	.pde-profile__badge--one {
		height: 28px;
		padding-inline: 5px;
		font-size: 16px;
	}

	.pde-profile__description {
		margin-top: 12px;
		font-size: 11px;
		line-height: 1.35;
	}

	.pde-profile__button {
		min-height: 38px;
		padding-inline: 12px;
		font-size: 14px;
	}
}

@media (max-width: 380px) {
	.pde-profile__photo {
		width: 72px;
		height: 72px;
		flex-basis: 72px;
	}

	.pde-profile__badges {
		justify-content: center;
	}
}
