/* Course Teaser New Design */


.month_items_wr .title_w_ {
	margin-top: 40px;
	padding-bottom: 30px;
}

.schedule_items {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.schedule_items .course-teaser {
	width: calc(33% - 20px);
}

@media screen and (max-width: 1024px) {
	.schedule_items .course-teaser {
		width: calc(50% - 15px);
	}
}

@media screen and (max-width: 768px) {
	.schedule_items .course-teaser {
		width: 100%;
	}

	.jr_schedule_bot>.container {
		padding-left: 15px !important;
		padding-right: 15px !important;
	}
}


.course-teaser {
	background-color: #F4F4F4;
	border-radius: 30px;
	padding: 25px 15px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	box-sizing: border-box;
}

.teaser-date-wrap {
	display: flex;
	flex-direction: column;
	gap: 15px;
	align-items: flex-start;
}

.teaser-date {
	font-weight: 500;
	font-size: 16px;
	color: #000000;
}

.teaser-date span {
	color: #4384D2;
	display: inline;
}

.teaser-badge {
	display: inline-block;
	background-color: #d2f870;
	color: #000000;
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 400;
}

.teaser-badge::first-letter {
	text-transform: uppercase;
}

.teaser-main {
	margin-top: 10px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 15px;
}

.teaser-content {
	gap: 15px;
	flex-direction: column;
}

.teaser-title {
	font-weight: 600;
	font-size: 20px;
	line-height: 1.2;
	color: #000000;

}

.teaser-description {
	line-height: 18px;
	color: #000;
	text-transform: lowercase;
	font-size: 14px;
}

.teaser-image-wrap {
	width: 100px;
	height: 100px;
	flex-shrink: 0;
	border-radius: 16px;
	overflow: hidden;
}

.teaser-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.teaser-features {
	list-style: none;
	padding: 0;
	margin: 0 0 1.5rem 0;
}

.teaser-features li {
	margin-top: 10px;
	position: relative;
	padding-left: 1em;
	font-size: 12px;
	color: #000;
}

.teaser-features li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: #000000;
	font-weight: bold;
}

.teaser-price-card {
	background-color: #ffffff;
	border-radius: 24px;
	padding: 15px;
}

.teaser-price-card .price-row {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 5px;
}

.price-old {
	font-size: 16px;
	font-weight: 600;
	color: #000;
	text-decoration: line-through;
}

.price-discount {
	background-color: #fff34e;
	color: #000000;
	padding: 0.25rem 0.75rem;
	border-radius: 15px;
	font-size: 0.875rem;
	font-weight: 700;
}

.price-current {
	font-size: 24px;
	font-weight: 600;
	color: #000000;
	line-height: 1;
	margin-bottom: 10px;
}

.price-installment {
	font-size: 16px;
	font-weight: 600;
	color: #000000;
	margin-bottom: 5px;
}

.price-installment-text {
	font-size: 14px;
	color: #000;
}

.teaser-actions {
	display: flex;
	gap: 5px;
	margin-top: 15px;
}

.teaser-actions .btn {
	flex: 1;
	height: 36px;
	line-height: 34px;
	font-size: 12px;
	font-weight: 500;
	text-align: center;
	border-radius: 30px;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
}

.teaser-actions .btn-outline {
	border: 1px solid #000000;
	background-color: transparent;
	color: #000000;
}

.teaser-actions .btn-outline:hover {
	background-color: #000000;
	color: #ffffff;
}

.teaser-actions .btn-primary {
	background-color: #d2f870;
	color: #000000;
	border: none;
}

.teaser-actions .btn-primary:hover {
	background-color: #c2e860;
}

/* 3 columns layout for course list pages */
.courses_list_in {
	grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 1024px) {
	.courses_list_in {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 768px) {
	.courses_list_in {
		grid-template-columns: repeat(1, 1fr);
	}
}