/**
 * Page cover — title, breadcrumbs, background image.
 * Values ported from live postmba.org Dynamic CSS + Codevz core.css.
 */

:root {
	--postmba-page-cover-blue: #285bbb;
	--postmba-page-cover-title: #444444;
}

.postmba-page-cover {
	position: relative;
	z-index: 0;
	direction: rtl;
	font-family: var(--postmba-font-sans);
}

.postmba-page-cover__title-area {
	position: relative;
	padding: 80px 0 0;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 0 0 0 100px;
}

.postmba-page-cover__title-area--has-image {
	background-image:
		linear-gradient(90deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.01)),
		var(--postmba-page-cover-image);
}

/* Width comes from shared .postmba-container (same column as course content). */
.postmba-page-cover__inner {
	position: relative;
}

.postmba-page-cover__title {
	border: 0;
	margin: 25px 0 30px;
	padding: 0;
	display: inline-block;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.4;
	color: var(--postmba-page-cover-title);
}

.postmba-page-cover__breadcrumbs-wrap {
	position: relative;
}

.postmba-page-cover__breadcrumbs {
	display: table;
	/* Flush with .postmba-container start edge so content column lines up (RTL right). */
	margin: 20px 0 0;
	padding: 12px 20px 7px;
	font-size: 16px;
	font-weight: 400;
	background-color: #fff;
	border-radius: 5px 5px 0 0;
	box-shadow: none;
}

.postmba-page-cover__breadcrumbs a {
	color: var(--postmba-page-cover-blue);
	text-decoration: none;
	border: 0;
}

.postmba-page-cover__breadcrumbs a:hover {
	color: var(--postmba-page-cover-blue);
	opacity: 0.85;
}

.postmba-page-cover__crumb {
	font-weight: 700;
}

.postmba-page-cover__crumb--current {
	opacity: 0.5;
}

.postmba-page-cover__crumb--current a {
	pointer-events: none;
	word-break: break-all;
	cursor: default;
}

.postmba-page-cover__sep {
	opacity: 0.6;
	margin: 0 12px;
	color: var(--postmba-page-cover-blue);
	font-size: inherit;
}

.postmba-page-cover__crumb:first-child .postmba-page-cover__home-icon {
	margin: 0;
}

.postmba-page-cover__home-icon {
	color: var(--postmba-page-cover-blue);
}

.postmba-page-cover__sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media screen and (max-width: 768px) {
	.postmba-page-cover__title-area {
		padding-top: 120px;
	}

	.postmba-page-cover__title {
		font-size: 32px;
	}
}

@media screen and (max-width: 480px) {
	.postmba-page-cover__title-area {
		padding-top: 60px;
	}

	.postmba-page-cover__title {
		font-size: 26px;
	}

	.postmba-page-cover__breadcrumbs {
		display: none !important;
	}
}
