/* ================================
   Voice Acting Page Styles
   ================================ */

.voice-acting-page .content-section {
	background: var(--bg-card);
	border-radius: var(--border-radius);
	padding: var(--spacing-2xl);
	margin-bottom: var(--spacing-2xl);
	box-shadow: var(--shadow);
	border: 1px solid var(--border-color);
}

.voice-acting-page .section-heading svg {
	width: 28px;
	height: 28px;
	fill: var(--primary-color);
}

.video-container {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	/* 16:9 aspect ratio */
	height: 0;
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	margin-bottom: var(--gap-lg);
}

.video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
	border-radius: 12px;
}

.demo-description {
	font-size: var(--font-md);
	color: var(--text-secondary);
	margin-top: 15px;
}

.voice-acting-page .info-box {
	background: rgba(124, 56, 251, 0.05);
	border-left: 4px solid var(--primary-color);
	border-radius: 8px;
	padding: var(--gap-lg);
	margin-top: var(--gap-lg);
	font-size: var(--font-md);
	line-height: 1.7;
	color: var(--text-secondary);
}

.voice-acting-page .info-box p {
	margin: 0;
}

.voice-acting-page .info-box a {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 600;
}


/* ================================
   Responsive Design
   ================================ */

@media (max-width: 768px) {
	.voice-acting-page .content-section {
		padding: var(--gap-lg);
	}
}