/**
 * Udemy-Style Courses - Professional Design
 *
 * @package Coursee
 * @since 1.0.0
 */

/* ============================================
   COURSES PAGE LAYOUT
   ============================================ */

.coursee-courses-page {
	padding: 2rem 0;
	background: #ffffff;
	min-height: 60vh;
}

.site-main .container.coursee-courses-page {
	max-width: 1340px;
	padding: 0 1rem;
}

.courses-page-header {
	background: #ffffff;
	color: #000000;
	padding: 2rem 0;
	margin-bottom: 2rem;
	text-align: left;
	border-bottom: 1px solid #d1d5db;
}

.courses-page-header h1 {
	margin: 0 0 0.5rem 0;
	font-size: 2rem;
	font-weight: 700;
	color: #000000;
}

.courses-page-header p {
	margin: 0;
	font-size: 1rem;
	color: #6b7280;
}

/* ============================================
   COURSES GRID - UDEMY STYLE WITH HORIZONTAL SCROLL
   ============================================ */

.coursee-courses-grid-wrapper {
	position: relative;
	margin-bottom: 3rem;
	width: 100%;
}

.coursee-courses-grid-wrapper .coursee-courses-grid {
	width: 100%;
}

.coursee-courses-grid {
	display: grid !important;
	grid-template-columns: repeat(2, 1fr) !important;
	gap: 0.75rem !important;
	padding: 0.5rem 0 !important;
	margin: 0 !important;
}

@media (min-width: 768px) {
	.coursee-courses-grid {
		grid-template-columns: repeat(3, 1fr) !important;
		gap: 0.875rem !important;
	}
}

@media (min-width: 1024px) {
	.coursee-courses-grid {
		grid-template-columns: repeat(4, 1fr) !important;
		gap: 1rem !important;
	}
}

@media (min-width: 1400px) {
	.coursee-courses-grid {
		grid-template-columns: repeat(6, 1fr) !important;
		gap: 1rem !important;
	}
}

/* Keep horizontal scroll for wrapper with specific class */
.coursee-courses-grid-wrapper.horizontal-scroll .coursee-courses-grid {
	display: flex !important;
	flex-direction: row !important;
	gap: 1rem !important;
	overflow-x: auto !important;
	overflow-y: hidden !important;
	scroll-behavior: smooth !important;
	-webkit-overflow-scrolling: touch !important;
	padding: 0.5rem 0 !important;
	margin: 0 -1rem !important;
	padding-left: 1rem !important;
	padding-right: 1rem !important;
	scrollbar-width: thin !important;
	scrollbar-color: #000000 #f3f4f6 !important;
}

.coursee-courses-grid-wrapper.horizontal-scroll .coursee-courses-grid::-webkit-scrollbar {
	height: 8px;
}

.coursee-courses-grid-wrapper.horizontal-scroll .coursee-courses-grid::-webkit-scrollbar-track {
	background: #f3f4f6;
	border-radius: 4px;
}

.coursee-courses-grid-wrapper.horizontal-scroll .coursee-courses-grid::-webkit-scrollbar-thumb {
	background: #000000;
	border-radius: 4px;
}

.coursee-courses-grid-wrapper.horizontal-scroll .coursee-courses-grid::-webkit-scrollbar-thumb:hover {
	background: #333333;
}

.coursee-courses-grid.columns-2,
.coursee-courses-grid.columns-3,
.coursee-courses-grid.columns-4 {
	display: grid !important;
}

.coursee-courses-grid.columns-2 {
	grid-template-columns: repeat(2, 1fr) !important;
}

.coursee-courses-grid.columns-3 {
	grid-template-columns: repeat(3, 1fr) !important;
}

.coursee-courses-grid.columns-4 {
	grid-template-columns: repeat(4, 1fr) !important;
}

/* ============================================
   COURSE CARD - UDEMY STYLE
   ============================================ */

.course-item.udemy-style {
	background: #ffffff !important;
	border: 1px solid #e5e7eb !important;
	border-radius: 8px !important;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex !important;
	flex-direction: column;
	position: relative;
	height: auto !important;
	flex: 0 0 240px;
	min-width: 240px;
	max-width: 240px;
	margin: 0;
	padding: 0;
	cursor: pointer;
	visibility: visible !important;
	opacity: 1 !important;
	z-index: 1 !important;
}

.course-item.udemy-style:hover {
	transform: translateY(-4px) !important;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
	border-color: #d1d5db !important;
}

.course-item.udemy-style::before {
	display: none !important;
}

.course-item.udemy-style .course-link {
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
	outline: none;
}

.course-item.udemy-style .course-link:focus {
	outline: 2px solid #5624d0;
	outline-offset: 2px;
}

.course-item.udemy-style:hover {
	transform: none !important;
	box-shadow: none !important;
}

/* Course Thumbnail - Udemy Style */
.course-item.udemy-style .course-thumbnail {
	position: relative;
	width: 100% !important;
	height: 135px !important;
	overflow: hidden;
	background: #f3f4f6;
	margin-bottom: 0.75rem;
	border-radius: 0 !important;
	box-shadow: none !important;
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
	min-height: 135px !important;
}

.course-item.udemy-style .course-thumbnail::after {
	display: none !important;
}

.course-item.udemy-style .course-thumbnail img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
	position: relative !important;
	z-index: 1 !important;
}

.course-item.udemy-style:hover .course-thumbnail img {
	transform: scale(1.05);
}

.course-item.udemy-style .course-thumbnail-placeholder {
	display: flex !important;
	align-items: center;
	justify-content: center;
	background: #f3f4f6;
	height: 135px !important;
	width: 100% !important;
	visibility: visible !important;
	opacity: 1 !important;
}

.course-item.udemy-style .placeholder-icon {
	font-size: 3rem;
	opacity: 0.5;
	color: #9ca3af;
	display: block !important;
	visibility: visible !important;
}

.course-item.udemy-style .course-thumbnail-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f3f4f6;
	height: 135px;
}

.course-item.udemy-style .placeholder-icon {
	font-size: 3rem;
	opacity: 0.5;
	color: #9ca3af;
}

/* Course Badges - Udemy Style */
.course-item.udemy-style .course-badge {
	position: absolute;
	top: 0.5rem;
	left: 0.5rem;
	background: #000000;
	color: #ffffff;
	padding: 0.25rem 0.5rem;
	border-radius: 0;
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	z-index: 2;
	line-height: 1.2;
}

.course-item.udemy-style .course-badge.premium {
	background: #000000;
	color: #ffffff;
}

.course-item.udemy-style .course-badge.bestseller {
	background: #000000;
	color: #ffffff;
}

/* Course Content - Udemy Style */
.course-item.udemy-style .course-content {
	padding: 0.75rem !important;
	flex: 1;
	display: flex !important;
	flex-direction: column;
	gap: 0.5rem;
	position: relative;
	z-index: 1;
	visibility: visible !important;
	opacity: 1 !important;
	width: 100% !important;
	background: #ffffff !important;
	height: auto !important;
	min-height: auto !important;
}

.course-item.udemy-style .course-content h3 {
	margin: 0 !important;
	padding: 0 !important;
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
	height: auto !important;
}

.course-item.udemy-style .course-title {
	margin: 0 !important;
	font-size: 0.9375rem !important;
	font-weight: 700 !important;
	line-height: 1.4 !important;
	color: #1f2937 !important;
	display: -webkit-box !important;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	min-height: 2.625rem;
	max-height: 3.675rem;
	background: none !important;
	-webkit-background-clip: unset !important;
	-webkit-text-fill-color: #1f2937 !important;
	background-clip: unset !important;
	visibility: visible !important;
	opacity: 1 !important;
	height: auto !important;
	width: 100% !important;
	position: relative !important;
	z-index: 1 !important;
	letter-spacing: -0.01em !important;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
}

.course-item.udemy-style .course-title a {
	color: #000000 !important;
	text-decoration: none !important;
	background: none !important;
	-webkit-background-clip: unset !important;
	-webkit-text-fill-color: #000000 !important;
	background-clip: unset !important;
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
	width: 100% !important;
	height: auto !important;
	position: relative !important;
	z-index: 10 !important;
	font-size: 0.875rem !important;
	font-weight: 700 !important;
	line-height: 1.4 !important;
}

.course-item.udemy-style .course-title:hover,
.course-item.udemy-style .course-title a:hover {
	color: #5624d0 !important;
	text-decoration: underline !important;
	background: none !important;
	-webkit-background-clip: unset !important;
	-webkit-text-fill-color: #5624d0 !important;
	background-clip: unset !important;
}

.course-item.udemy-style .course-instructor {
	font-size: 0.75rem !important;
	color: #6b7280 !important;
	font-weight: 400 !important;
	margin-top: 0.25rem !important;
	margin-bottom: 0 !important;
	display: block !important;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	line-height: 1.4 !important;
	visibility: visible !important;
	opacity: 1 !important;
	height: auto !important;
	min-height: 1.05em !important;
	width: 100% !important;
	position: relative !important;
	z-index: 10 !important;
	text-overflow: ellipsis;
	white-space: nowrap;
	text-align: left !important;
}

/* Course Rating - Udemy Style */
.course-item.udemy-style .course-rating {
	display: flex !important;
	align-items: center;
	gap: 0.25rem;
	flex-wrap: wrap;
	margin-top: 0.25rem !important;
	margin-bottom: 0 !important;
	visibility: visible !important;
	opacity: 1 !important;
	height: auto !important;
	width: 100% !important;
	position: relative !important;
	z-index: 1 !important;
	min-height: 20px !important;
}

.course-item.udemy-style .rating-stars {
	display: flex !important;
	align-items: center;
	gap: 0.125rem;
	flex-shrink: 0;
	visibility: visible !important;
	opacity: 1 !important;
	height: auto !important;
}

.course-item.udemy-style .rating-stars .star {
	color: #fbbf24 !important;
	font-size: 0.875rem;
	line-height: 1;
	display: inline-block !important;
	visibility: visible !important;
	opacity: 1 !important;
	width: auto !important;
	height: auto !important;
}

.course-item.udemy-style .rating-stars .star.filled {
	color: #fbbf24 !important;
}

.course-item.udemy-style .rating-stars .star.half {
	color: #fbbf24 !important;
	opacity: 0.5;
}

.course-item.udemy-style .rating-value {
	font-weight: 700;
	color: #1f2937 !important;
	font-size: 0.875rem !important;
	margin-left: 0.25rem;
	white-space: nowrap;
	display: inline-block !important;
	visibility: visible !important;
	opacity: 1 !important;
	height: auto !important;
	line-height: 1.2 !important;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
}

.course-item.udemy-style .rating-count {
	font-size: 0.8125rem !important;
	color: #6b7280 !important;
	font-weight: 400;
	white-space: nowrap;
	display: inline-block !important;
	visibility: visible !important;
	opacity: 1 !important;
	height: auto !important;
	line-height: 1.2 !important;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
}

/* Course Price - Udemy Style */
.course-item.udemy-style .course-price-section {
	display: flex !important;
	align-items: baseline;
	gap: 0.5rem;
	margin-top: 0.5rem;
	flex-wrap: wrap;
	visibility: visible !important;
	opacity: 1 !important;
	width: 100% !important;
	position: relative !important;
	z-index: 10 !important;
	height: auto !important;
	min-height: 1.5em !important;
}

.course-item.udemy-style .course-meta {
	border-top: none !important;
	padding-top: 0 !important;
	margin-top: 0.5rem;
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
}

.course-item.udemy-style .price-original {
	font-size: 0.875rem !important;
	color: #9ca3af !important;
	text-decoration: line-through;
	font-weight: 400;
	white-space: nowrap;
	display: inline-block !important;
	visibility: visible !important;
	opacity: 1 !important;
	height: auto !important;
	line-height: 1.2 !important;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
}

.course-item.udemy-style .price-current {
	font-size: 1.125rem !important;
	font-weight: 700 !important;
	color: #1f2937 !important;
	white-space: nowrap;
	background: none !important;
	-webkit-background-clip: unset !important;
	-webkit-text-fill-color: #1f2937 !important;
	background-clip: unset !important;
	display: inline-block !important;
	visibility: visible !important;
	opacity: 1 !important;
	height: auto !important;
	line-height: 1.2 !important;
	letter-spacing: -0.02em !important;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
}

.course-item.udemy-style .price-free {
	font-size: 1.125rem !important;
	font-weight: 700 !important;
	color: #10b981 !important;
	white-space: nowrap;
	background: none !important;
	-webkit-background-clip: unset !important;
	-webkit-text-fill-color: #10b981 !important;
	background-clip: unset !important;
	display: inline-block !important;
	visibility: visible !important;
	opacity: 1 !important;
	height: auto !important;
	line-height: 1.2 !important;
	letter-spacing: -0.02em !important;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
}

/* Empty State */
.no-courses-found {
	text-align: center;
	padding: 4rem 2rem;
	background: #ffffff;
	border-radius: 0;
	border: 1px solid #e5e7eb;
	grid-column: 1 / -1;
}

.no-courses-found p {
	margin: 0;
	font-size: 1rem;
	color: #6b7280;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
	.courses-page-header {
		padding: 1.5rem 0;
	}
	
	.courses-page-header h1 {
		font-size: 1.5rem;
	}
	
	.courses-page-header p {
		font-size: 0.875rem;
	}
	
	.course-item.udemy-style {
		flex: 0 0 200px;
		min-width: 200px;
		max-width: 200px;
	}
	
	.course-item.udemy-style .course-thumbnail {
		height: 120px;
	}
	
	.course-item.udemy-style .course-title {
		font-size: 0.8125rem !important;
		min-height: 2.6em;
	}
	
	.course-item.udemy-style .course-instructor {
		font-size: 0.6875rem !important;
	}
	
	.course-item.udemy-style .rating-value,
	.course-item.udemy-style .rating-count {
		font-size: 0.6875rem !important;
	}
	
	.course-item.udemy-style .price-current,
	.course-item.udemy-style .price-free {
		font-size: 0.875rem !important;
	}
}

@media (max-width: 480px) {
	.course-item.udemy-style {
		flex: 0 0 180px;
		min-width: 180px;
		max-width: 180px;
	}
	
	.course-item.udemy-style .course-thumbnail {
		height: 100px;
	}
	
	.course-item.udemy-style .course-title {
		font-size: 0.75rem !important;
		min-height: 2.4em;
	}
}

/* ============================================
   SINGLE COURSE PAGE - UDEMY STYLE PROFESSIONAL
   ============================================ */

.course-single-page {
	background: #ffffff;
}

.course-single.udemy-style {
	max-width: 1340px;
	margin: 0 auto;
	padding: 0;
	background: #ffffff;
}

/* Course Hero Section */
.course-hero {
	background: #ffffff;
	border-bottom: 1px solid #d1d5db;
	padding: 2rem 0;
}

.course-hero-container {
	max-width: 1340px;
	margin: 0 auto;
	padding: 0 1rem;
	display: grid;
	grid-template-columns: 1fr 400px;
	gap: 3rem;
	align-items: start;
}

.course-hero-content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.course-breadcrumb {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	margin-bottom: 0.5rem;
}

.breadcrumb-item {
	font-size: 0.875rem;
	color: #6b7280;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.course-hero-title {
	font-size: 2.25rem;
	font-weight: 700;
	color: #000000;
	line-height: 1.3;
	margin: 0;
}

.course-hero-subtitle {
	font-size: 1.25rem;
	color: #374151;
	line-height: 1.6;
	margin: 0;
	font-weight: 400;
}

.course-hero-meta {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
	margin-top: 0.5rem;
}

.course-rating-hero {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.course-rating-hero .rating-stars {
	display: flex;
	gap: 0.125rem;
}

.course-rating-hero .star {
	color: #fbbf24;
	font-size: 1rem;
}

.course-rating-hero .star.filled {
	color: #fbbf24;
}

.course-rating-hero .rating-value {
	font-weight: 700;
	color: #000000;
	font-size: 0.875rem;
}

.course-rating-hero .rating-count {
	font-size: 0.875rem;
	color: #6b7280;
	font-weight: 400;
}

.course-students-hero,
.course-level-hero,
.course-duration-hero {
	font-size: 0.875rem;
	color: #6b7280;
	font-weight: 400;
}

.course-instructor-hero {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 0.5rem;
}

.instructor-label {
	font-size: 0.875rem;
	color: #6b7280;
}

.instructor-name {
	font-size: 0.875rem;
	color: #000000;
	font-weight: 600;
	text-decoration: underline;
}

.course-badge-hero {
	display: inline-block;
	background: #000000;
	color: #ffffff;
	padding: 0.375rem 0.75rem;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-top: 0.5rem;
	width: fit-content;
}

.course-hero-image {
	position: sticky;
	top: 2rem;
}

.course-hero-image img {
	width: 100%;
	height: auto;
	border: 1px solid #d1d5db;
}

/* Course Main Wrapper */
.course-main-wrapper {
	max-width: 1340px;
	margin: 0 auto;
	padding: 2rem 1rem;
	display: grid;
	grid-template-columns: 1fr 400px;
	gap: 3rem;
	align-items: start;
}

.course-main-content {
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

.course-section {
	padding-bottom: 2rem;
	border-bottom: 1px solid #e5e7eb;
}

.course-section:last-child {
	border-bottom: none;
}

.course-section-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #000000;
	margin: 0 0 1.5rem 0;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.course-description-content {
	font-size: 1rem;
	line-height: 1.8;
	color: #374151;
}

.course-description-content p {
	margin: 0 0 1rem 0;
}

/* Course Sidebar Sticky */
.course-sidebar-sticky {
	position: sticky;
	top: 2rem;
	height: fit-content;
}

.course-sidebar-card {
	background: #ffffff;
	border: 2px solid #000000;
	padding: 1.5rem;
	position: relative;
}

.course-sidebar-image {
	margin-bottom: 1rem;
}

.course-sidebar-image img {
	width: 100%;
	height: auto;
	border: 1px solid #d1d5db;
}

.course-sidebar-price {
	margin-bottom: 1.5rem;
	display: flex;
	align-items: baseline;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.course-sidebar-price .price-original {
	font-size: 1rem;
	color: #6b7280;
	text-decoration: line-through;
	font-weight: 400;
}

.course-sidebar-price .price-current {
	font-size: 2rem;
	font-weight: 700;
	color: #000000;
}

.course-sidebar-price .price-free {
	font-size: 2rem;
	font-weight: 700;
	color: #000000;
}

.course-progress-sidebar {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid #e5e7eb;
}

.course-progress-sidebar .progress-bar {
	height: 8px;
	background: #e5e7eb;
	border-radius: 0;
	margin-bottom: 0.5rem;
	overflow: hidden;
}

.course-progress-sidebar .progress-fill {
	height: 100%;
	background: #000000;
	transition: width 0.6s ease;
}

.course-progress-sidebar .progress-text {
	font-size: 0.875rem;
	color: #6b7280;
	font-weight: 600;
}

.course-features-sidebar {
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid #e5e7eb;
}

.course-features-sidebar h3 {
	font-size: 1rem;
	font-weight: 700;
	color: #000000;
	margin: 0 0 1rem 0;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.course-features-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.course-features-list li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.875rem;
	color: #374151;
	font-weight: 400;
}

.course-features-list .feature-icon {
	color: #000000;
	font-weight: 700;
	font-size: 1rem;
}

.course-share {
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid #e5e7eb;
}

/* Instructor Section */
.instructor-section .instructor-card {
	display: flex;
	gap: 2rem;
	align-items: flex-start;
}

.instructor-avatar-large img {
	border-radius: 50%;
	width: 112px;
	height: 112px;
	border: 2px solid #000000;
}

.instructor-details {
	flex: 1;
}

.instructor-name-large {
	font-size: 1.5rem;
	font-weight: 700;
	color: #000000;
	margin: 0 0 0.5rem 0;
}

.instructor-bio {
	font-size: 0.9375rem;
	color: #6b7280;
	line-height: 1.6;
	margin: 0 0 1rem 0;
}

.instructor-rating {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.instructor-rating .rating-stars {
	display: flex;
	gap: 0.125rem;
}

.instructor-rating .star {
	color: #fbbf24;
	font-size: 1rem;
}

.instructor-rating .rating-value {
	font-weight: 700;
	color: #000000;
	font-size: 0.875rem;
}

.instructor-profile-link {
	color: #000000;
	text-decoration: underline;
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.instructor-profile-link:hover {
	text-decoration: none;
}

/* Responsive */
@media (max-width: 1024px) {
	.course-hero-container {
		grid-template-columns: 1fr;
	}
	
	.course-hero-image {
		position: static;
		max-width: 600px;
		margin: 0 auto;
	}
	
	.course-main-wrapper {
		grid-template-columns: 1fr;
	}
	
	.course-sidebar-sticky {
		position: static;
		order: -1;
	}
}

@media (max-width: 768px) {
	.course-hero-title {
		font-size: 1.75rem;
	}
	
	.course-hero-subtitle {
		font-size: 1rem;
	}
	
	.course-section-title {
		font-size: 1.25rem;
	}
	
	.instructor-section .instructor-card {
		flex-direction: column;
		text-align: center;
	}
}
