.hero_tertiair-layout {
	position: relative;
	background: #1a1a1a;
	color: var(--dc-white);
	overflow: hidden;
}

.hero_tertiair-layout::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: max(20rem, calc(20 * var(--su)));
	height: 100%;
	background-image: url("data:image/svg+xml,%3Csvg%20width%3D%22600%22%20height%3D%22800%22%20viewBox%3D%220%200%20600%20800%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Ccircle%20cx%3D%22688%22%20cy%3D%22960%22%20r%3D%22582%22%20stroke%3D%22white%22%20stroke-width%3D%228%22%20stroke-linejoin%3D%22round%22%20stroke-dasharray%3D%226%2020%22%2F%3E%3C%2Fsvg%3E");
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: 100% 100%;
	pointer-events: none;
	z-index: 2;
}

.hero_tertiair-layout .pk-row {
	padding-block: max(6rem, calc(7.5 * var(--su)));
}

.hero_tertiair__grid {
	align-items: stretch;
}

.hero_tertiair__content,
.hero_tertiair__media {
	grid-row: 1;
}

.hero_tertiair__content {
	display: flex;
	flex-direction: column;
	gap: max(3rem, calc(3 * var(--su)));
	padding-right: max(2rem, calc(4 * var(--su)));
	z-index: 3;
}

.hero_tertiair__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: max(1.5rem, calc(1.5 * var(--su)));
	margin-top: auto;
}

.hero_tertiair__copy {
	display: flex;
	flex-direction: column;
	gap: max(1rem, calc(1 * var(--su)));
}

.hero_tertiair__title {
	margin: 0;
	color: var(--dc-white);
	font-size: max(2.5rem, calc(3 * var(--su)));
	letter-spacing: -.04em;
}

.hero_tertiair__excerpt,
.hero_tertiair__excerpt p {
	margin: 0;
	color: var(--dc-white);
}

body .hero_tertiair__meta {
	display: flex;
	flex-wrap: wrap;
	gap: max(.75rem, calc(.75 * var(--su)));
	margin: 0;
	padding: 0;
	list-style: none;
}

body .hero_tertiair__meta li {
	display: inline-flex;
	align-items: center;
	gap: max(.5rem, calc(.5 * var(--su)));
	min-height: max(2rem, calc(2 * var(--su)));
	padding: max(.3125rem, calc(.3125 * var(--su))) max(1rem, calc(1 * var(--su))) max(.3125rem, calc(.3125 * var(--su))) max(.75rem, calc(.75 * var(--su)));
	border-radius: 50rem;
	background: #333;
	font-size: max(.875rem, calc(.875 * var(--su)));
	line-height: 1.5;
	margin-bottom: 0px;
}

.hero_tertiair__media {
	position: relative;
	display: flex;
	align-items: flex-end;
	width: 100%;
	height: max(28rem, calc(32.875 * var(--su)));
	z-index: 1;
}

.hero_tertiair__frame {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: max(.5rem, calc(.5 * var(--su)));
}

body .hero_tertiair__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	border-radius: inherit;
}

@media (max-width: 991px) {
	.hero_tertiair-layout .pk-row {
		padding-block: max(5rem, calc(6 * var(--su)));
	}

	.hero_tertiair__grid {
		align-items: start;
		row-gap: max(3rem, calc(3 * var(--su)));
	}

	.hero_tertiair__content,
	.hero_tertiair__media {
		grid-row: auto;
	}

	.hero_tertiair__content {
		gap: max(3rem, calc(3 * var(--su)));
		padding-right: 0;
	}

	.hero_tertiair__media {
		height: auto;
		aspect-ratio: 652 / 526;
	}
}

@media (max-width: 767px) {
	.hero_tertiair-layout .pk-row {
		padding-block: max(4rem, calc(4 * var(--su)));
	}

	.hero_tertiair-layout::before {
		top: unset;
		bottom: 0;
		width: max(24rem, calc(24 * var(--su)));
		height: max(24rem, calc(24 * var(--su)));
		background-size: auto 100%;
	}

	.hero_tertiair__grid {
		row-gap: max(2.5rem, calc(2.5 * var(--su)));
	}

	.hero_tertiair__media {
		margin-bottom: 0;
		order: 2;
	}
}