/* Pixel-perfect styles from even/index.html — Interview archive & cards */

.mk-interview-archive {
	--primary-blue: #1d72f2;
	--bg-color: #ffffff;
	--text-dark: #1f1f1f;
	--text-light: #ffffff;
	--btn-dark: #211f1f;
	--btn-dark-hover: #2e2a2a;
	--card-radius: 16px;
	--transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	font-family: inherit;
	background-color: var(--bg-color);
	color: var(--text-dark);
	line-height: 1.6;
}

.mk-interview-archive .container {
	width: 100%;
	max-width: 1360px;
	margin: 0 auto;
	padding: 0 20px;
}

.mk-interview-archive .hero-banner {
	background: linear-gradient(to left, #2173f4 0%, #7681b9 50%, #e6a290 100%);
	width: 100%;
	position: relative;
	overflow: hidden;
	padding: 55px 0;
	margin-bottom: 45px;
	color: var(--text-light);
}

.mk-interview-archive .hero-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 60px;
	position: relative;
	z-index: 2;
}

.mk-interview-archive .hero-title {
	font-size: 34px;
	font-weight: 800;
	letter-spacing: -0.5px;
	white-space: nowrap;
	margin: 0;
}

.mk-interview-archive .hero-desc {
	font-size: 15px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.95);
	line-height: 1.85;
	margin: 0;
}

.mk-interview-archive .hero-desc strong {
	font-weight: 700;
	color: #ffffff;
}

.mk-interview-archive .hero-bg-icon {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 160px;
	height: auto;
	opacity: 0.35;
	pointer-events: none;
}

.mk-interview-archive .hero-bg-icon.right { right: 10%; }
.mk-interview-archive .hero-bg-icon.left { left: 10%; }

.mk-interview-archive .filter-nav {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-bottom: 45px;
	flex-wrap: wrap;
}

.mk-interview-archive .filter-btn {
	background-color: var(--btn-dark);
	color: var(--text-light);
	border: none;
	padding: 12px 32px;
	border-radius: 8px;
	font-family: inherit;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: var(--transition-smooth);
	outline: none;
}

.mk-interview-archive .filter-btn:hover,
.mk-interview-archive .filter-btn.active {
	background-color: var(--btn-dark-hover);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.mk-interview-archive .video-grid,
.mk-interview-topic-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 22px;
	margin-bottom: 60px;
}

.mk-interview-archive .video-card,
.mk-interview-topic-carousel .video-card,
.mk-interviews-widget .video-card,
.mk-interview-archive .mk-interview-card,
.mk-interview-topic-carousel .mk-interview-card,
.mk-interviews-widget .mk-interview-card {
	opacity: 0;
	animation: mkInterviewFadeInUp 0.6s ease forwards;
	transform-origin: center bottom;
}

.mk-interview-archive .video-card:nth-child(1),
.mk-interview-topic-carousel .video-card:nth-child(1) { animation-delay: 0.05s; }
.mk-interview-archive .video-card:nth-child(2),
.mk-interview-topic-carousel .video-card:nth-child(2) { animation-delay: 0.10s; }
.mk-interview-archive .video-card:nth-child(3),
.mk-interview-topic-carousel .video-card:nth-child(3) { animation-delay: 0.15s; }
.mk-interview-archive .video-card:nth-child(4),
.mk-interview-topic-carousel .video-card:nth-child(4) { animation-delay: 0.20s; }
.mk-interview-archive .video-card:nth-child(5),
.mk-interview-topic-carousel .video-card:nth-child(5) { animation-delay: 0.25s; }
.mk-interview-archive .video-card:nth-child(6) { animation-delay: 0.30s; }
.mk-interview-archive .video-card:nth-child(7) { animation-delay: 0.35s; }
.mk-interview-archive .video-card:nth-child(8) { animation-delay: 0.40s; }
.mk-interview-archive .video-card:nth-child(9) { animation-delay: 0.45s; }
.mk-interview-archive .video-card:nth-child(10) { animation-delay: 0.50s; }

@keyframes mkInterviewFadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px) scale(0.98);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.mk-interview-archive .load-more-container {
	display: flex;
	justify-content: center;
	margin-bottom: 80px;
}

.mk-interview-archive .btn-load-more {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	background: none;
	border: none;
	color: #9ca3af;
	font-family: inherit;
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	transition: var(--transition-smooth);
	outline: none;
}

.mk-interview-archive .btn-load-more:hover {
	color: var(--text-dark);
}

.mk-interview-archive .btn-load-more svg {
	width: 20px;
	height: 20px;
	transition: transform 0.3s ease;
}

.mk-interview-archive .btn-load-more:hover svg {
	transform: translateY(4px);
}

.mk-interview-empty {
	grid-column: 1 / -1;
	text-align: center;
	padding: 40px 0;
	color: #6b7280;
}

/* Topic carousel */
.mk-interview-topic-carousel {
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	padding-bottom: 8px;
}

.mk-interview-topic-carousel::-webkit-scrollbar { display: none; }

.mk-interview-topic-carousel__track {
	display: flex;
	gap: 22px;
}

.mk-interview-topic-carousel .video-card {
	flex: 0 0 calc((100% - 88px) / 5);
	min-width: 200px;
	scroll-snap-align: start;
}

.mk-interviews-widget__carousel {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.mk-interviews-widget__carousel::-webkit-scrollbar { display: none; }

.mk-interviews-widget__track {
	display: flex;
	gap: 22px;
}

.mk-interviews-widget__carousel .video-card {
	flex: 0 0 calc((100% - 88px) / 5);
	min-width: 200px;
	scroll-snap-align: start;
}

@media (max-width: 1200px) {
	.mk-interview-archive .video-grid,
	.mk-interview-topic-grid { grid-template-columns: repeat(4, 1fr); }
	.mk-interview-topic-carousel .video-card,
	.mk-interviews-widget__carousel .video-card { flex-basis: calc((100% - 66px) / 4); }
}

@media (max-width: 992px) {
	.mk-interview-archive .video-grid,
	.mk-interview-topic-grid { grid-template-columns: repeat(3, 1fr); }
	.mk-interview-archive .hero-content {
		flex-direction: column;
		text-align: center;
		gap: 15px;
	}
	.mk-interview-archive .hero-bg-icon { width: 120px; }
	.mk-interview-topic-carousel .video-card,
	.mk-interviews-widget__carousel .video-card { flex-basis: calc((100% - 44px) / 3); }
}

@media (max-width: 768px) {
	.mk-interview-archive .video-grid,
	.mk-interview-topic-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
	.mk-interview-archive .hero-banner { padding: 40px 0; }
	.mk-interview-archive .hero-title { font-size: 28px; }
	.mk-interview-archive .hero-bg-icon { display: none; }
	.mk-interview-archive .filter-nav {
		flex-wrap: nowrap;
		justify-content: flex-start;
		gap: 8px;
		margin-bottom: 28px;
		padding-inline: 4px;
		overflow-x: auto;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
	}
	.mk-interview-archive .filter-nav::-webkit-scrollbar {
		display: none;
	}
	.mk-interview-archive .filter-btn {
		flex: 0 0 auto;
		padding: 9px 18px;
		font-size: 13px;
		white-space: nowrap;
	}
	.mk-interview-topic-carousel .video-card,
	.mk-interviews-widget__carousel .video-card { flex-basis: calc((100% - 16px) / 2); }
}

@media (max-width: 480px) {
	.mk-interview-archive .video-grid,
	.mk-interview-topic-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
	.mk-interview-archive .hero-title { font-size: 24px; }
	.mk-interview-archive .filter-nav {
		flex-direction: row;
		flex-wrap: nowrap;
		padding: 0 4px;
		margin-bottom: 22px;
	}
	.mk-interview-archive .filter-btn {
		width: auto;
		padding: 8px 14px;
		font-size: 12px;
		text-align: center;
	}
	.mk-interview-topic-carousel .video-card,
	.mk-interviews-widget__carousel .video-card { flex-basis: 85%; }
}

@media (prefers-reduced-motion: reduce) {
	.mk-interview-archive .video-card,
	.mk-interview-topic-carousel .video-card,
	.mk-interviews-widget .video-card {
		animation: none;
		opacity: 1;
	}
}
