.w-video.w-embed {
	aspect-ratio: 16 / 9;
}

.live-training-hero {
	background: linear-gradient(135deg, #27336f 0%, #16213e 100%);
	padding: 8rem 2rem 4rem;
	color: #fff;
	text-align: center;
}

.live-training-hero h1 {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.live-training-hero .subtext {
	font-size: 1.25rem;
	max-width: 800px;
	margin: 0 auto 3rem;
	opacity: 0.9;
	line-height: 1.6;
}

.hero-cta-wrapper {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
}

.hero-cta-button {
	padding: 1rem 2.5rem;
	border-radius: 100px;
	font-weight: 600;
	text-decoration: none;
	display: inline-block;
	transition:
		transform 0.2s,
		box-shadow 0.2s;
}

.hero-cta-button.primary {
	background-color: #b72344;
	color: #fff;
}

.hero-cta-button.secondary {
	background-color: transparent;
	color: #fff;
	border: 2px solid #b72344;
}

.hero-cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(39, 51, 111, 0.35);
}

.training-section {
	padding: 4rem 2rem;
	max-width: 1400px;
	margin: 0 auto;
}

.section-header {
	margin-bottom: 3rem;
}

.section-header h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #27336f;
}

.section-header p {
	font-size: 1.125rem;
	color: #666;
	max-width: 760px;
}

.training-table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	overflow: hidden;
}

.training-table thead {
	background-color: #27336f;
	color: #fff;
}

.training-table th {
	padding: 1.25rem 1.5rem;
	text-align: left;
	font-weight: 600;
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.training-table td {
	padding: 1.25rem 1.5rem;
	border-bottom: 1px solid #e5e5e5;
	vertical-align: middle;
}

.training-table tbody tr:hover {
	background-color: #f8f9fa;
}

.training-table tbody tr:last-child td {
	border-bottom: none;
}

.session-name {
	font-weight: 600;
	font-size: 1.05rem;
	color: #27336f;
	margin-bottom: 0.5rem;
}

.session-description {
	font-size: 0.9375rem;
	color: #666;
	line-height: 1.5;
}

.session-date {
	font-weight: 600;
	color: #27336f;
	white-space: nowrap;
}

.session-time {
	color: #666;
	font-size: 0.9375rem;
	white-space: nowrap;
}

.product-badge {
	display: inline-block;
	padding: 0.375rem 0.875rem;
	background-color: #e2ebf0;
	border-radius: 20px;
	font-size: 0.875rem;
	font-weight: 600;
	color: #27336f;
}

.register-button {
	padding: 0.75rem 1.5rem;
	background-color: #b72344;
	color: #fff;
	border-radius: 100px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9375rem;
	display: inline-block;
	transition: background-color 0.2s;
	white-space: nowrap;
}

.register-button:hover {
	background-color: #27336f;
}

.recorded-sessions-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.recorded-training-section {
	background-color: #f8f9fa;
	margin-top: 2rem;
}

.recorded-cards-wrap {
	margin-bottom: 3rem;
}

.recorded-all-wrapper {
	margin-top: 3rem;
}

.recorded-all-heading {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: #27336f;
}

.recorded-session-card {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition:
		transform 0.2s,
		box-shadow 0.2s;
}

.recorded-session-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
	width: 100%;
	aspect-ratio: 16 / 9;
	background: linear-gradient(135deg, #27336f 0%, #b72344 100%);
	position: relative;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
}

.video-thumbnail-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-thumbnail.has-thumbnail::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(39, 51, 111, 0.2) 0%,
		rgba(183, 35, 68, 0.2) 100%
	);
	z-index: 1;
}

.play-icon {
	width: 60px;
	height: 60px;
	background: rgba(255, 255, 255, 0.92);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 2;
}

.play-icon::after {
	content: '';
	width: 0;
	height: 0;
	border-left: 20px solid #27336f;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	margin-left: 4px;
}

.video-info {
	padding: 1.5rem;
}

.video-title {
	font-weight: 600;
	font-size: 1.125rem;
	color: #27336f;
	margin-bottom: 0.5rem;
}

.video-meta {
	display: flex;
	gap: 0.75rem;
	font-size: 0.875rem;
	color: #666;
	margin-bottom: 1rem;
	align-items: center;
}

.view-button {
	color: #27336f;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9375rem;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.view-button:hover {
	text-decoration: underline;
}

.request-training-section {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding: 4rem 2rem;
	margin-top: 4rem;
}

.request-training-section + .section-footer {
	margin-top: 0;
}

.request-training-content {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.request-info h3 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #27336f;
}

.request-info p {
	font-size: 1.125rem;
	color: #666;
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.requirement-note {
	background: #fff;
	padding: 1.25rem;
	border-radius: 8px;
	border-left: 4px solid #b72344;
	margin-top: 1.5rem;
	line-height: 1.5;
}

.requirement-note strong {
	color: #27336f;
}

.training-form {
	background: #fff;
	padding: 2rem;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-field {
	margin-bottom: 1.25rem;
}

.form-field label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: #27336f;
	font-size: 0.9375rem;
}

.form-field input,
.form-field textarea {
	width: 100%;
	padding: 0.875rem;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 1rem;
	font-family: 'Source Sans Pro', sans-serif;
}

.form-field textarea {
	min-height: 120px;
	resize: vertical;
}

.form-submit {
	width: 100%;
	padding: 1rem;
	background-color: #b72344;
	color: #fff;
	border: none;
	border-radius: 100px;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: background-color 0.2s;
}

.form-submit:hover {
	background-color: #27336f;
}

.form-status {
	margin-top: 1rem;
	padding: 0.875rem 1rem;
	border-radius: 6px;
	font-size: 0.9375rem;
	line-height: 1.4;
	display: none;
}

.form-status.is-visible {
	display: block;
}

.form-status.success {
	background: #e8f5ee;
	color: #1f6f43;
}

.form-status.error {
	background: #fdecee;
	color: #9f1f36;
}

.nav-menu.is-open {
	display: flex;
}

body.menu-open {
	overflow: hidden;
}

.bot-field-wrapper {
	display: none;
}

.empty-state {
	text-align: center;
	padding: 2.5rem 2rem;
	color: #666;
}

.empty-state h3 {
	font-size: 1.4rem;
	margin-bottom: 0.5rem;
	color: #27336f;
}

.table-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
	margin-top: 1.25rem;
}

.table-page-button {
	border: 1px solid #d4d9e2;
	background: #fff;
	color: #27336f;
	border-radius: 999px;
	padding: 0.5rem 0.9rem;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	transition:
		background-color 0.2s,
		color 0.2s,
		border-color 0.2s;
}

.table-page-button:hover:not(:disabled) {
	border-color: #27336f;
	background: #f4f7fb;
}

.table-page-button.is-active {
	background: #27336f;
	border-color: #27336f;
	color: #fff;
}

.table-page-button:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

@media (max-width: 991px) {
	.live-training-hero h1 {
		font-size: 2.5rem;
	}

	.request-training-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.training-table {
		font-size: 0.875rem;
	}

	.training-table th,
	.training-table td {
		padding: 1rem;
	}
}

@media (max-width: 767px) {
	.training-table {
		background: transparent;
		box-shadow: none;
		border-radius: 0;
	}

	.training-table thead {
		display: none;
	}

	.training-table tbody {
		display: grid;
		gap: 1rem;
	}

	.training-table tbody tr {
		display: grid;
		gap: 0.75rem;
		background: #fff;
		border: 1px solid #e5e5e5;
		border-radius: 8px;
		padding: 1rem;
	}

	.training-table td {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		gap: 0.75rem;
		padding: 0;
		border-bottom: none;
	}

	.training-table td::before {
		content: attr(data-label);
		font-size: 0.72rem;
		text-transform: uppercase;
		letter-spacing: 0.5px;
		color: #666;
		font-weight: 600;
		flex: 0 0 34%;
		max-width: 115px;
	}

	.training-table td:first-child {
		display: block;
	}

	.training-table td:first-child::before {
		display: block;
		margin-bottom: 0.45rem;
		max-width: none;
	}

	.training-table td[colspan] {
		display: block;
	}

	.training-table td[colspan]::before {
		display: none;
	}

	.training-table .session-name {
		line-height: 1.25;
	}

	.training-table .session-description {
		display: -webkit-box;
		-webkit-line-clamp: 4;
		-webkit-box-orient: vertical;
		overflow: hidden;
		margin-top: 0.45rem;
	}

	.hero-cta-wrapper {
		flex-direction: column;
	}

	.table-pagination {
		justify-content: flex-start;
	}

	.hero-cta-button {
		width: 100%;
		text-align: center;
	}
}
