.crezko-ps-wrapper {
	--crezko-height: 560px;
	--crezko-fade: 700ms;
	--crezko-panel-bg: linear-gradient(160deg, #7b2ff7, #6a1fd0);
	--crezko-accent: #e4173e;
	display: flex;
	width: 100%;
	height: var(--crezko-height);
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 4px 24px rgba(0,0,0,.12);
	font-family: inherit;
}

.crezko-ps-wrapper.crezko-ps-column-right {
	flex-direction: row-reverse;
}

.crezko-ps-panel {
	width: 34%;
	min-width: 280px;
	max-width: 420px;
	height: 100%;
	display: flex;
	flex-direction: column;
	background: var(--crezko-panel-bg);
	color: #fff;
}

.crezko-ps-panel-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px 26px;
	background: rgba(0,0,0,.08);
}

.crezko-ps-bg-solid .crezko-ps-panel-header {
	background: transparent;
}

.crezko-ps-title {
	margin: 0;
	font-size: 26px;
	font-weight: 800;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: #fff;
}

.crezko-ps-shape {
	width: 42px;
	height: 42px;
	flex-shrink: 0;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.crezko-ps-shape-default { width: 100%; height: 100%; }

.crezko-ps-shape-media {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.crezko-ps-mini-list {
	flex: 1;
	overflow-y: auto;
	padding: 14px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.crezko-ps-mini-list::-webkit-scrollbar { width: 6px; }
.crezko-ps-mini-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,.35); border-radius: 3px; }

.crezko-ps-mini-item {
	display: flex;
	align-items: center;
	gap: 12px;
	text-align: left;
	background: rgba(0,0,0,.35);
	border: 1px solid transparent;
	border-radius: 6px;
	padding: 8px;
	cursor: pointer;
	color: #fff;
	transition: background .25s ease, border-color .25s ease, transform .2s ease;
}

.crezko-ps-mini-item:hover { background: rgba(0,0,0,.5); }

.crezko-ps-mini-item.is-active {
	background: #000;
	border-color: rgba(255,255,255,.5);
	transform: translateX(4px);
}

.crezko-ps-mini-thumb {
	width: 56px;
	height: 56px;
	flex-shrink: 0;
	border-radius: 4px;
	overflow: hidden;
	background: #000;
}

.crezko-ps-mini-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.crezko-ps-mini-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.crezko-ps-mini-title {
	font-size: 13px;
	font-weight: 700;
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.crezko-ps-mini-excerpt {
	font-size: 11px;
	line-height: 1.3;
	color: rgba(255,255,255,.75);
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.crezko-ps-cta {
	padding: 16px 26px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .3px;
	text-transform: uppercase;
}

.crezko-ps-cta-arrow {
	width: 26px;
	height: 26px;
	background: #29c5f6;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	font-size: 11px;
}

.crezko-ps-hero {
	flex: 1;
	position: relative;
	height: 100%;
	overflow: hidden;
	background: #111;
}

.crezko-ps-hero-track {
	position: relative;
	width: 100%;
	height: 100%;
}

.crezko-ps-hero-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity var(--crezko-fade) ease;
	display: block;
}

.crezko-ps-hero-slide.is-active {
	opacity: 1;
	z-index: 2;
}

@media (max-width: 782px) {
	.crezko-ps-wrapper,
	.crezko-ps-wrapper.crezko-ps-column-right {
		flex-direction: column;
		height: auto;
	}
	.crezko-ps-panel {
		width: 100%;
		max-width: none;
	}
	.crezko-ps-mini-list {
		flex-direction: row;
		overflow-x: auto;
		overflow-y: hidden;
	}
	.crezko-ps-mini-item { min-width: 220px; }
	.crezko-ps-hero { height: 320px; }
}
