.hero-peek,
.hero-peek * {
	box-sizing: border-box;
}

.hero-peek {
	width: 100%;
	padding: 64px 80px 120px;
	background: #f7f4f0;
}

.hero-peek__inner {
	display: flex;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	align-items: center;
	gap: 48px;
}

.hero-peek--image-right .hero-peek__inner {
	flex-direction: row-reverse;
}

.hero-peek__media {
	position: relative;
	flex: 0 0 680px;
	width: 680px;
	height: 400px;
	overflow: hidden;
	border-radius: 8px;
}

.hero-peek__media img {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: cover;
	object-position: center center;
}

.hero-peek__content {
	display: flex;
	flex: 1 1 0;
	flex-direction: column;
	align-items: flex-start;
	min-width: 0;
	max-width: 552px;
	gap: 24px;
	text-align: left;
}

.hero-peek__tag {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 4px 10px;
	border-radius: 3px;
	background: rgba(224, 63, 84, 0.08);
	color: #e03f54;
	font-family: "Outfit", sans-serif;
	font-size: 10px;
	font-weight: 700;
	line-height: 1.3;
	text-transform: uppercase;
}

.hero-peek__title {
	width: 100%;
	margin: 0;
	color: #111;
	font-family: "Outfit", sans-serif;
	font-size: 36px;
	font-weight: 800;
	line-height: 1.15;
}

.hero-peek__title a {
	color: inherit;
	text-decoration: none;
	transition: color 180ms ease;
}

.hero-peek__title a:hover,
.hero-peek__title a:focus-visible {
	color: #e03f54;
}

.hero-peek__description {
	width: 100%;
	margin: 0;
	color: #4a4a4a;
	font-family: "Lora", serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
}

.hero-peek__description > :first-child {
	margin-top: 0;
}

.hero-peek__description > :last-child {
	margin-bottom: 0;
}

@media (max-width: 1024px) {
	.hero-peek--stack-tablet .hero-peek__inner {
		flex-direction: column;
	}

	.hero-peek--stack-tablet .hero-peek__media,
	.hero-peek--stack-tablet .hero-peek__content {
		width: 100% !important;
		max-width: none !important;
		flex-basis: auto !important;
	}

	.hero-peek--stack-tablet.hero-peek--image-first .hero-peek__media {
		order: 1;
	}

	.hero-peek--stack-tablet.hero-peek--image-first .hero-peek__content {
		order: 2;
	}

	.hero-peek--stack-tablet.hero-peek--content-first .hero-peek__content {
		order: 1;
	}

	.hero-peek--stack-tablet.hero-peek--content-first .hero-peek__media {
		order: 2;
	}
}

@media (max-width: 767px) {
	.hero-peek--stack-mobile .hero-peek__inner {
		flex-direction: column;
	}

	.hero-peek--stack-mobile .hero-peek__media,
	.hero-peek--stack-mobile .hero-peek__content {
		width: 100% !important;
		max-width: none !important;
		flex-basis: auto !important;
	}

	.hero-peek--stack-mobile.hero-peek--image-first .hero-peek__media {
		order: 1;
	}

	.hero-peek--stack-mobile.hero-peek--image-first .hero-peek__content {
		order: 2;
	}

	.hero-peek--stack-mobile.hero-peek--content-first .hero-peek__content {
		order: 1;
	}

	.hero-peek--stack-mobile.hero-peek--content-first .hero-peek__media {
		order: 2;
	}

	.hero-peek__title {
		font-size: 28px;
	}
}
