/*
 * Speaking Engagements Page Styles
 */

/* === PAGE STRUCTURE === */
.poc-speaking-page {
	padding: var(--poc-space-2xl, 6rem) 0;
	background: var(--poc-bg, #fafaf8);
}

.poc-container--narrow {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 var(--poc-gutter, 2rem);
}

/* === TYPOGRAPHY === */
.poc-page-title {
	font-family: 'Lora', Georgia, serif;
	font-size: clamp(2.5rem, 6vw, 4rem);
	font-weight: 400;
	color: var(--poc-primary, #5a7d7c);
	margin: 0 0 2rem;
	line-height: 1.2;
}

.poc-page-intro {
	font-family: 'Crimson Text', Georgia, serif;
	font-size: clamp(1.125rem, 2vw, 1.25rem);
	line-height: 1.9;
	color: var(--poc-text, #3a4543);
	margin: 0 0 1.5rem;
}

.poc-page-text {
	font-family: 'Crimson Text', Georgia, serif;
	font-size: clamp(1.0625rem, 2vw, 1.1875rem);
	line-height: 1.9;
	color: var(--poc-text, #3a4543);
	margin: 0 0 3rem;
}

.poc-section-title {
	font-family: 'Lora', Georgia, serif;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 400;
	color: var(--poc-primary, #5a7d7c);
	margin: 3rem 0 2rem;
	line-height: 1.3;
}

/* === EVENTS LIST === */
.poc-speaking-events {
	margin: 0 0 3rem;
}

.poc-speaking-events p {
	font-family: 'Crimson Text', Georgia, serif;
	font-size: clamp(1.0625rem, 2vw, 1.1875rem);
	line-height: 1.9;
	color: var(--poc-text, #3a4543);
	margin-bottom: 1rem;
}

.poc-speaking-events em,
.poc-speaking-events i {
	font-style: italic;
}

.poc-speaking-events strong,
.poc-speaking-events b {
	font-weight: 600;
}

/* === VIDEO SECTION === */
.poc-speaking-media {
	margin: 3rem 0;
}

.poc-speaking-video {
	margin-bottom: 1.5rem;
	position: relative;
	padding-bottom: 56.25%; /* 16:9 aspect ratio */
	height: 0;
	overflow: hidden;
	border-radius: 4px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.poc-speaking-video iframe,
.poc-speaking-video embed,
.poc-speaking-video object,
.poc-speaking-video video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.poc-speaking-caption {
	font-family: 'Crimson Text', Georgia, serif;
	font-size: clamp(1rem, 2vw, 1.125rem);
	line-height: 1.8;
	color: var(--poc-text-light, #6b7c7a);
	font-style: italic;
}

/* === CTA BUTTON === */
.poc-page-cta {
	margin-top: 3rem;
	text-align: center;
}

.poc-btn--primary {
	display: inline-block;
	padding: 1rem 2.5rem;
	font-size: 1rem;
	font-weight: 600;
	font-family: 'Inter', sans-serif;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #ffffff;
	background: var(--poc-primary, #5a7d7c);
	border: 2px solid var(--poc-primary, #5a7d7c);
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(58, 69, 67, 0.15);
}

.poc-btn--primary:hover {
	background: var(--poc-accent, #d4a373);
	border-color: var(--poc-accent, #d4a373);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(212, 163, 115, 0.3);
}

.poc-btn--primary:active {
	transform: translateY(0);
	box-shadow: 0 2px 8px rgba(58, 69, 67, 0.2);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
	.poc-speaking-page {
		padding: var(--poc-space-xl, 4rem) 0;
	}

	.poc-container--narrow {
		padding: 0 var(--poc-space-md, 1.5rem);
	}

	.poc-section-title {
		margin: 2.5rem 0 1.5rem;
	}

	.poc-page-cta {
		margin-top: 2.5rem;
	}

	.poc-btn--primary {
		width: 100%;
		padding: 1rem 2rem;
	}
}

@media (max-width: 480px) {
	.poc-speaking-page {
		padding: var(--poc-space-lg, 2.5rem) 0;
	}

	.poc-speaking-events p {
		margin-bottom: 0.75rem;
	}
}
