/* #region markup content */

.markup-content {
	font-size: 1rem;
	clear: right;
	line-height: 1.7;
}

.markup-content p {
	margin-bottom: 1em;
}

.markup-content a {
	color: var(--theme-primary);
	text-decoration: underline;
}

.markup-content h1 {
	font-size: 2em;
	margin-bottom: 0.4em;
}

.markup-content h2 {
	font-size: 1.5em;
	margin-bottom: 0.5em;
}

.markup-content h3 {
	font-size: 1.17em;
	margin-bottom: 0.7em;
}

.markup-content h4 {
	font-size: 1.1em;
	margin-bottom: 0.8em;
}

.markup-content strong {
	font-weight: 600;
}

.markup-content em {
	font-style: italic;
}

.markup-content h1,
.markup-content h2,
.markup-content h3,
.markup-content h4 {
	font-weight: 600;
}

.markup-content h1 + ul,
.markup-content h2 + ul,
.markup-content h3 + ul,
.markup-content h4 + ul,
.markup-content h1 + ol,
.markup-content h2 + ol,
.markup-content h3 + ol,
.markup-content h4 + ol,
.markup-content h1 + p,
.markup-content h2 + p,
.markup-content h3 + p,
.markup-content h4 + p {
	margin-top: -0.7em;
}

.markup-content hr {
	margin-top: 1.2rem;
	margin-bottom: 1.2rem;
	border-bottom: 0;
}

.markup-content .marker {
	background-color: Yellow;
}

.markup-content ul,
.markup-content ul {
	padding-left: 1.5em;
	margin-bottom: 1em;
	/* list-style-position: inside; */
}

.markup-content li {
	margin-bottom: 0.5em;
}

.markup-content ul {
	list-style-type: disc;
}

.markup-content ol {
	list-style: decimal;
	padding-left: 1.3em;
}

@media (max-width: 768px) {
}

/* #endregion markup content */

/* #region program */

.program-banner {
    padding-top: calc(var(--header-height) + 7rem);
    padding-bottom: 5rem;
    position: relative;
}

.program-banner::before {
	content: "";
	display: block;
	position: absolute;
	inset: 0;
	background-image: var(--bg-img);
	background-size: cover;
	/* opacity: 0.8; */
}

.program-banner .container {
    position: relative;
    z-index: 1;
}

.program-banner-row {
	display: flex;
	gap: 1rem 3rem;
	/* align-items: flex-start; */
}

.program-banner-content {
	flex: 1 1 0;
}

.program-banner-header {
	color: var(--theme-primary);
	text-align: right;
	margin-bottom: 2rem;
	font-size: 1.5rem;
}

.program-banner-subtitle {
}

.program-banner-title {}

.program-banner-text {
	font-size: 1.3rem;
	line-height: 1.7;
}

.program-banner-img {
	flex: 1 1 0;
	border-radius: 1rem;
	overflow: hidden;
	height: 100%;
}

.program-banner-img::before {
	padding-top: 60%;
}

.program-banner-img::after {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    z-index: -1;
}

.webinar-player-body.active {
	margin-top: var(--section-gap);
	position: relative;
}

.webinar-player-body.active::before {
	content: "";
	display: block;
	padding-top: 56.25%;
}

.webinar-player-body.active iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

@media (max-width: 768px) {
	.program-banner {
		padding-top: calc(var(--header-height) + 2rem);
	}

	.program-banner-row {
		flex-direction: column-reverse;
	}

	.program-banner-img {
		width: 100%;
		flex: auto;
	}
}

/* #endregion program */

/* #region program features */

.program-features {}

.program-features-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.program-features-card {
    flex: 1 1 0;
    min-width: 15rem;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
    background-color: #fff;
    text-align: center;
}

.program-features-icon {
    margin-bottom: 0.6rem;
    font-size: 2.5rem;
    color: var(--theme-primary);
    line-height: 1;
}

.program-features-icon i {}

.program-features-content {}

.program-features-title {
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
}

.program-features-text {
	line-height: 1.6;
}

@media (max-width: 768px) {
}

/* #endregion program features */

/* #region program-curriculum */

.program-curriculum {}

.program-curriculum-row {
	display: flex;
	gap: 1rem 2rem;
}

.program-curriculum-row .section-header {
	flex: 1 1 30%;
}

.program-curriculum-row .program-curriculum {}

.program-curriculum-grid {
	flex: 1 1 70%;
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
}

.program-curriculum-card {
	padding: 1.5rem;
	background-color: #fff;
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.program-curriculum-icon {
	font-size: 2.5rem;
	line-height: 1;
	flex-shrink: 0;
	width: 1em;
	color: var(--theme-primary);
}

.program-curriculum-icon i {}

.program-curriculum-content {
	flex: auto;
	padding-top: 0.3rem;
}

.program-curriculum-title {
	font-size: 1.3rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.program-curriculum-text {
	/* font-size: 0.95rem; */
	line-height: 1.6;
}

@media (max-width: 768px) {
	.program-curriculum-row {
		flex-direction: column;
	}
}

/* #endregion program-curriculum */

/* #region program cta */

.program-cta {}

.program-cta-row {
	display: flex;
	gap: 1rem 2rem;
	align-items: center;
	padding: 3rem 4rem;
	background-color: var(--theme-primary-dark);
	color: var(--theme-primary-alt);
	border-radius: 2rem;
}

.program-cta-row .section-header {}

.program-cta-row .section-title {
	margin-bottom: 2rem;
	line-height: 1.3;
}

.program-cta-row .section-desc {
	font-size: 1.3rem;
}

.program-cta-btn {}

.program-cta-btn .cta-btn {
	white-space: nowrap;
	font-size: 1.5rem;
	background-color: var(--theme-secondary);
	border-color: var(--theme-secondary);
}

.program-cta-btn .cta-btn:hover {
	background-color: var(--theme-secondary-alt);
	color: var(--theme-secondary);
}

@media (max-width: 768px) {
	.program-cta-row {
		flex-direction: column;
	}
}

/* #endregion program cta */

/* #region blogs list page */

.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 2rem;
	margin-block: 2rem;
}

.blog-grid-item {
	box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.2);
	border-radius: 0.5rem;
	overflow: hidden;
	background-color: #fff;
}

.blog-grid-img {
	position: relative;
	display: block;
}

.blog-grid-img::before {
	content: "";
	padding-top: 62.5%;
	display: block;
}

.blog-grid-img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blog-grid-content {
	padding: 1rem;
}

.blog-grid-title {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 0.3em;
	line-height: 1.3;
}

.blog-grid-title a:hover {
	color: var(--theme-primary);
}

.blog-grid-meta {
	margin-bottom: 0.5rem;
	font-size: 0.85rem;
	color: #555;
	font-weight: 500;
}

.blog-grid-desc {
	line-height: 1.3;
	font-size: 0.95rem;
}

/* #endregion blogs list page */

/* #region blog view page */

.blog-page {
	display: flex;
	gap: 2rem;
	line-height: 1.3;
	margin-block: 2rem;
}

.blog-main {
	position: relative;
	width: 70%;
}

.blog-main .blog-content::before {
	content: none;
}

.blog-extra {
	width: 30%;
	position: sticky;
	top: calc(var(--header-height) + 1rem);
	height: 100%;
}

.blog-tags {
	font-size: 0.9rem;
	color: var(--theme-secondary);
	margin-bottom: 0.5rem;
}

.blog-title {
	font-size: 2rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.blog-meta {
	color: var(--theme-primary);
	font-weight: 500;
}

.blog-content {
	margin-top: 1.3rem;
	position: relative;
	padding: 1.2rem;
	box-shadow: 0 0 1rem rgb(0 0 0 / 15%);
	border-radius: 0.5rem;
	background-color: #fff;
}

.blog-content::after {
	content: "";
	display: block;
	clear: both;
}

.blog-main-img {
	/* width: 40%; */
	/* width: 500px; */
	/* float: left; */
	/* margin-right: 1.7rem; */
	margin-bottom: 1.5rem;
	min-width: 50%;
	max-width: 100%;
}

.blog-main-img img {
	width: 100%;
}

.blog-share-title {
	font-weight: 500;
	font-size: 1.4rem;
}

.blog-share-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
	margin-top: 0.5rem;
}

.blog-share-link {
	width: 2.2rem;
	height: 2.2rem;
	display: grid;
	place-items: center;
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
	border-radius: 5rem;
	border: 2px solid var(--theme-alt);
	font-size: 1.3rem;
	transition: ease 0.25s;
}

.blog-share-link i {
	display: block;
	line-height: 1.5;
}

.blog-share-link:hover {
	background-color: var(--theme-primary-bg-light);
	color: var(--theme-primary);
}

.blog-list-banner-title {
	/* text-align: center; */
	font-weight: 500;
	font-size: 1.6rem;
	margin-bottom: 0.7rem;
}

.blog-list {
	display: grid;
	/* grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)); */
	gap: 1.2rem;
	/* margin-bottom: 2rem; */
	padding: 1.2rem;
	box-shadow: 0 0 1rem rgb(0 0 0 / 15%);
	border-radius: 0.5rem;
}

.blog-list .blog-grid-item {
	display: flex;
}

.blog-list .blog-grid-img {
	flex: 0 0 30%;
}

.blog-list .blog-grid-content {
	flex: 1;
	padding: 0.5rem 0.75rem;
}

.blog-list .blog-grid-title {
	font-size: 1rem;
	/* line-clamp: 2; */
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	line-clamp: 2;
	box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.blog-list .blog-grid-meta {
	margin-bottom: 0;
}

@media (max-width: 760px) {
	.blog-page {
		flex-direction: column;
	}

	.blog-main,
	.blog-extra {
		width: 100%;
	}
}

@media print {
	.blog-content {
		padding: 0;
		box-shadow: none;
	}

	.page-disclaimer-content,
	.grecaptcha-badge,
	.blog-extra,
	.header-banner,
	.brand-header,
	.main-header {
		display: none !important;
	}

	.blog-main {
		width: 100%;
	}

	.blog-page {
		margin: 0;
	}
}

/* #endregion blog view page */
