/**
 * Instructors Design 2 — Consolidados
 */

.hexfly-d2-instructors {
	--hexfly-d2-ink: #1f2937;
	--hexfly-d2-muted: #6b7280;
	--hexfly-d2-surface: #ffffff;
	--hexfly-d2-line: #e5e7eb;
	--hexfly-d2-primary-rgb: 0, 87, 217;
	--hexfly-d2-sans: 'DM Sans', system-ui, sans-serif;
	--hexfly-d2-display: 'Outfit', system-ui, sans-serif;
	--hexfly-d2-ease-out: cubic-bezier(0.22, 1, 0.36, 1);

	padding: 3.5rem 0;
	color: var(--hexfly-d2-ink);
	font-family: var(--hexfly-d2-sans);
	line-height: 1.6;
}

.hexfly-d2-instructors a {
	color: inherit;
	text-decoration: none;
}

.hexfly-d2-instructors .hexfly-d2-container {
	width: min(1160px, 92vw);
	margin-inline: auto;
}

.hexfly-d2-instructors__title {
	margin: 0 0 0.5rem;
	font-family: var(--hexfly-d2-display);
	font-size: clamp(1.35rem, 2.5vw, 1.75rem);
	font-weight: 700;
	letter-spacing: -0.02em;
}

.hexfly-d2-instructors__lead {
	margin: 0 0 1.75rem;
	max-width: 48ch;
	color: var(--hexfly-d2-muted);
}

.hexfly-d2-instructors__grid {
	display: grid;
	gap: 0.75rem;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.hexfly-d2-instructor-card {
	display: block;
	padding: 1.15rem;
	background: var(--hexfly-d2-surface);
	border: 1px solid var(--hexfly-d2-line);
	border-radius: 10px;
	transition: border-color 0.2s var(--hexfly-d2-ease-out);
}

.hexfly-d2-instructor-card--linked:hover {
	border-color: rgba(var(--hexfly-d2-primary-rgb), 0.3);
}

.hexfly-d2-instructor-card__title {
	margin: 0 0 0.35rem;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.35;
}

.hexfly-d2-instructor-card__focus {
	margin: 0 0 0.25rem;
	font-size: 0.85rem;
	color: var(--hexfly-d2-ink);
	line-height: 1.45;
}

.hexfly-d2-instructor-card__meta {
	margin: 0;
	font-size: 0.75rem;
	color: var(--hexfly-d2-muted);
	line-height: 1.4;
}

@media (prefers-reduced-motion: reduce) {
	.hexfly-d2-instructors *,
	.hexfly-d2-instructors *::before,
	.hexfly-d2-instructors *::after {
		transition-duration: 0.01ms !important;
	}
}
