/**
 * Reusable Simply Croatia Moments.
 * Compact editorial treatment for the homepage and long-form content.
 */

.sc-moment {
	background: #f3eee4;
	border: 1px solid rgba(78, 72, 58, 0.10);
	border-radius: 18px;
	box-shadow: 0 20px 55px rgba(53, 49, 39, 0.09);
	color: #2f3732;
	margin-block: clamp(3.5rem, 7vw, 6.5rem);
	max-width: 1080px !important;
	overflow: hidden;
	padding: clamp(2.4rem, 5vw, 4.5rem);
	position: relative;
}

.sc-moment::after {
	display: none;
}

.sc-moment .sc-moment__label {
	color: #5e695a;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	margin: 0 0 clamp(1.25rem, 2.5vw, 2rem);
	text-transform: uppercase;
}

.sc-moment .sc-moment__label::before {
	background: #a45f43;
	content: "";
	display: inline-block;
	height: 2px;
	margin: 0 0.7rem 0.2em 0;
	vertical-align: middle;
	width: 28px;
}

.sc-moment .sc-moment__text {
	color: #26352f;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
	font-size: clamp(2.05rem, 3.4vw, 3.35rem);
	font-weight: 400;
	letter-spacing: -0.028em;
	line-height: 1.08;
	margin: 0;
	max-width: 16ch;
}

/* Homepage version with the selected Croatia coffee image. */
.sc-moment.sc-moment--with-photo {
	display: grid;
	gap: 0;
	grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
	grid-template-rows: auto 1fr;
	padding: 0;
}

.sc-moment--with-photo .sc-moment__photo {
	grid-column: 1;
	grid-row: 1 / 3;
	margin: 0;
	min-height: 100%;
	overflow: hidden;
}

.sc-moment--with-photo .sc-moment__photo-image {
	display: block;
	height: 100%;
	min-height: 430px;
	object-fit: cover;
	object-position: center center;
	transition: transform 900ms cubic-bezier(.2,.7,.2,1);
	width: 100%;
}

.sc-moment--with-photo .sc-moment__label {
	align-self: end;
	grid-column: 2;
	grid-row: 1;
	margin: 0;
	padding: clamp(2.4rem, 4.5vw, 4rem) clamp(2.3rem, 4vw, 3.7rem) 1.25rem;
}

.sc-moment--with-photo .sc-moment__text {
	align-self: start;
	grid-column: 2;
	grid-row: 2;
	padding: 0 clamp(2.3rem, 4vw, 3.7rem) clamp(2.6rem, 4.5vw, 4rem);
}

.sc-moment--with-photo:hover .sc-moment__photo-image {
	transform: scale(1.018);
}

@media (max-width: 820px) {
	.sc-moment {
		border-radius: 14px;
		margin-block: clamp(3rem, 12vw, 5rem);
		padding: clamp(2rem, 8vw, 3rem);
	}

	.sc-moment.sc-moment--with-photo {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto auto;
		padding: 0;
	}

	.sc-moment--with-photo .sc-moment__photo {
		grid-column: 1;
		grid-row: 1;
		min-height: 0;
	}

	.sc-moment--with-photo .sc-moment__photo-image {
		aspect-ratio: 3 / 2;
		height: auto;
		min-height: 0;
	}

	.sc-moment--with-photo .sc-moment__label {
		grid-column: 1;
		grid-row: 2;
		padding: 2rem 1.6rem 1rem;
	}

	.sc-moment--with-photo .sc-moment__text {
		font-size: clamp(2rem, 9vw, 3rem);
		grid-column: 1;
		grid-row: 3;
		max-width: 15ch;
		padding: 0 1.6rem 2.4rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sc-moment--with-photo .sc-moment__photo-image {
		transition: none;
	}
}
