:root {
	--psc-primary: #fe5f15;
	--psc-secondary: #f38a00;
}

.psc-f113ce8d-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	align-items: center;
}

.psc-media-column {
	flex: 1 1 45%;
	min-width: 300px;
}

.psc-content-column {
	flex: 1 1 45%;
	min-width: 300px;
	padding: 20px 0;
}

.psc-media-container {
	position: relative;
	overflow: hidden;
	border-radius: 24px;
	aspect-ratio: 4/3;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.psc-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.psc-media-container:hover .psc-image {
	transform: scale(1.05);
}

.psc-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.5));
	pointer-events: none;
}

.psc-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	background: rgba(0,0,0,0.6);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 24px;
	cursor: pointer;
	transition: all 0.3s ease;
	backdrop-filter: blur(4px);
}

.psc-play-button:hover {
	transform: translate(-50%, -50%) scale(1.1);
	background: rgba(0,0,0,0.8);
	box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.psc-heading {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	color: #1f1f1f;
	margin-bottom: 15px;
	line-height: 1.2;
}

.psc-description {
	color: #6c757d;
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 30px;
}

.psc-features {
	list-style: none;
	padding: 0;
	margin: 0;
}

.psc-feature-item {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	gap: 15px;
}

.psc-feature-icon {
	width: 32px;
	height: 32px;
	background: linear-gradient(135deg, var(--psc-primary), var(--psc-secondary));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 12px;
	flex-shrink: 0;
	box-shadow: 0 4px 10px rgba(254, 95, 21, 0.3);
}

.psc-feature-icon svg {
	width: 14px;
	height: 14px;
	fill: #fff;
}

.psc-feature-text {
	font-weight: 500;
	color: #333;
}

@media (max-width: 768px) {
	.psc-f113ce8d-wrapper {
		flex-direction: column;
	}
	.psc-media-column, .psc-content-column {
		width: 100%;
	}
}
