.modal-open {
	overflow: hidden;
}

/* WRAPPER */
.learning-videos-wrapper {
	padding: 40px 0;
	background: #000;
}

/* TABS */
.learning-tabs {
	display: flex;
	gap: 4rem;
	margin-bottom: 4rem;
	border-bottom: 1px solid;
}

.learning-tab {
	background: none !important;
	border: none !important;
	padding-bottom: 1.2rem !important;
	color: #DBDBDB !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	border-radius:0 !important;
}

.learning-tab.active {
	color: #fff;
	border-bottom: 2px solid #1EAE9E !important;
}

/* GRID */
#learning-video-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.learning-video-card {
	cursor: pointer;
}

.video-wrap video {
	width: 100%;
	height: 22rem;
	object-fit: cover;
	background: #000;
	pointer-events: none;
}

.video-title {
	color: #FFF;
  font-family: Orbitron;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
}

/* LOAD MORE */
#learning-load-more {
	margin: 4rem auto 0;
	display: block;
	padding: 1.6rem;
	background: #1F1F1F;
	cursor: pointer;
	color: #FFF;
	text-align: center;
	font-family: Orbitron;
	font-size: 1.8rem;
	font-style: normal;
	font-weight: 500;
	line-height: 100%;
	width: 100%;
	border: 0;
	border-radius: 0;
}

/* =====================
   MODAL
===================== */

#learning-video-modal {
	position: fixed;
	inset: 0;
	display: none;
	z-index: 9999;
}

#learning-video-modal.active {
	display: block;
}

.modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.85);
}

.modal-content {
	position: absolute;
	min-width: 11rem;
	width: 90%;
	margin: auto;
	background: #0b0b0b;
	display: flex;
	gap: 30px;
	padding: 4rem;
	z-index: 2;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	height: 70%;
}

.modal-left {
	width: 55%;
}

.modal-left iframe {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.modal-right {
	width: 45%;
	color: #fff;
	overflow-y: auto;
	max-height: 70vh;
}

.modal-title {
	color: #FFF;
    font-family: Orbitron;
    font-size: 4rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 3rem;
}

.modal-body {
	font-size: 1.8rem;
	line-height: 1.5;
	color: #DBDBDB;
}

.modal-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	padding: 0 !important;
      background: transparent !important;
      border: 0 !important;
      color: #fff !important;
      font-size: 5rem !important;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
	#learning-video-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.modal-content {
		flex-direction: column;
	}
	.modal-left,
	.modal-right {
		width: 100%;
	}
}

@media (max-width: 600px) {
	#learning-video-grid {
		grid-template-columns: 1fr;
	}
}