.nestor-terminarz-wrapper {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
	font-family: "Montserrat", "Open Sans", sans-serif;
}

.nestor-terminarz-item {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	justify-content: space-between;
	gap: 15px;
	padding-bottom: 20px;
	border-bottom: 3px solid #F38E10;
}

.nestor-terminarz-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

/* LEFT BOX: Course Name */
.nt-box-left {
	flex: 0 0 30%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px 20px;
	border-radius: 12px;
	color: #ffffff;
	font-weight: 700;
	font-size: 1.1rem;
	text-align: center;
	line-height: 1.4;
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* CENTER BOX: Dates */
.nt-box-center {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	padding: 15px 20px;
	text-align: center;
	box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.nt-date-place {
	color: #000000;
	font-weight: 600;
	font-size: 1.1rem;
	margin-bottom: 5px;
}

.nt-exam-date {
	color: #ff0000;
	font-weight: 700;
	font-size: 1rem;
}

/* RIGHT BOX: Button */
.nt-box-right {
	flex: 0 0 25%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nt-btn {
	display: inline-block;
	width: 100%;
	text-align: center;
	padding: 15px 20px;
	border-radius: 50px; /* Pill shape */
	color: #ffffff;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 6px rgba(0,0,0,0.15);
	border: none;
	cursor: pointer;
}

.nt-btn:hover {
	color: #ffffff;
	transform: scale(1.05); /* grow animation */
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
	.nestor-terminarz-item {
		flex-direction: column;
		gap: 10px;
		border-bottom: 3px solid #F38E10;
		padding-bottom: 15px;
	}
	.nt-box-left {
		flex: unset;
		padding: 12px;
	}
	.nt-box-right {
		flex: unset;
	}
}
