.coderra-video-area--list {
	margin: 0;
}

.coderra-video-area--list .wrapper {
	padding-top: 60px;
	padding-bottom: 60px;
}

.coderra-video-area__intro h1 {
	margin: 0 0 10px;
	text-transform: uppercase;
}

.coderra-video-area__intro p {
	margin: 0;
}

.coderra-video-card-link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.coderra-video-card-link:hover,
.coderra-video-card-link:focus {
	color: inherit;
	text-decoration: none;
}

.coderra-video-card {
	position: relative;
	overflow: hidden;
	min-height: 320px;
	border: 1px solid rgba(0, 71, 18, 0.12);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.coderra-video-list {
	align-items: flex-start;
}

.coderra-video-card-link:hover .coderra-video-card,
.coderra-video-card-link:focus .coderra-video-card {
	transform: translateY(-3px);
	box-shadow: 0 10px 24px rgba(0, 71, 18, 0.12);
}

.coderra-video-card__status {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
	margin: 0;
	padding: 5px 9px;
	border-radius: 3px;
	background: #f28e0f;
	color: #fff !important;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	pointer-events: none;
}

.coderra-video-card__status--not_started,
.coderra-video-card__status--in_progress {
	background: #f28e0f;
}

.coderra-video-card__status--completed {
	background: #78a22f;
}

.coderra-video-card__icon {
	margin-bottom: 14px;
	color: #78a22f;
	line-height: 1;
}

.coderra-video-card__icon .dashicons {
	width: auto;
	height: auto;
	font-size: 50px;
	line-height: 1;
}

.coderra-video-card__title {
	margin: 0 0 12px;
	font-size: 28px;
	line-height: 1.1;
	text-transform: uppercase;
}

.coderra-video-card__description {
	margin-bottom: 14px;
}

.coderra-video-card__description p {
	margin-bottom: 0;
}

.coderra-video-card__footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	padding: 12px 14px;
	border-top: 1px solid rgba(0, 71, 18, 0.08);
	background: #f7f7f7;
	color: rgba(0, 71, 18, 1);
	font-size: 13px;
	line-height: 1.3;
}

.coderra-video-card__footer-badge,
.coderra-video-card__footer-meta {
	display: inline-flex;
	align-items: center;
	padding: 4px 8px;
	border-radius: 3px;
	background: #fff;
	color: rgba(0, 71, 18, 1);
	font-weight: 700;
}

.coderra-video-card__footer-badge {
	background: rgba(0, 71, 18, 1);
	color: #fff;
}

@media (max-width: 575px) {
	.coderra-video-area--list .wrapper {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.coderra-video-card {
		min-height: 260px;
	}

	.coderra-video-card__title {
		font-size: 24px;
	}
}

.coderra-video-player__embed {
	position: relative;
	padding-top: 56.25%;
	overflow: hidden;
	background: #111;
}

.coderra-video-player__embed iframe {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.coderra-video-checklist {
	border-left: 5px solid rgba(120, 162, 47, 1) !important;
}

.coderra-video-checklist h2 {
	margin: 0 0 16px;
	color: rgba(0, 71, 18, 1);
	text-transform: uppercase;
}

.coderra-video-checklist__items {
	display: grid;
	grid-template-columns: repeat(2, minmax(220px, 1fr));
	gap: 14px;
}

.coderra-video-checklist__item {
	padding: 14px;
	background: #f7f7f7;
}

.coderra-video-checklist__item strong,
.coderra-video-checklist__item small {
	display: block;
}

.coderra-video-checklist__status {
	display: inline-block;
	margin-top: 8px;
	padding: 5px 9px;
	border-radius: 999px;
	background: #f0f0f1;
	color: #50575e;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
}

.coderra-video-checklist__status--in_progress,
.coderra-video-checklist__status--pending {
	background: rgba(242, 142, 15, 0.16);
	color: #8a4f00;
}

.coderra-video-checklist__status--completed {
	background: rgba(120, 162, 47, 0.18);
	color: rgba(0, 71, 18, 1);
}

.coderra-video-checklist__complete {
	padding: 12px 14px;
	background: rgba(120, 162, 47, 0.14);
	color: rgba(0, 71, 18, 1);
}

.coderra-video-checklist__admin-note {
	margin-top: 8px;
	color: #8a4f00;
}

@media (max-width: 767px) {
	.coderra-video-checklist__items {
		grid-template-columns: 1fr;
	}
}