/**
 * Home: receitas-em-destaque-slider (isolated styles).
 *
 * @package Skeleton
 */

.receitas-destaque__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;
}

.receitas-destaque {
	--receitas-destaque-nav-w: 100.71px;
	--receitas-destaque-media-gap: 25px;
	--receitas-destaque-image-w: 600px;
	/* 642px at 600px image; scales with --receitas-destaque-image-w (e.g. 1280px) so right-edge alignment stays correct */
	--receitas-destaque-content-max-w: calc(642px / 600px * var(--receitas-destaque-image-w));
	/* Horizontal inset for .receitas-destaque__slide-wrap (slides + media row + actions). */
	--receitas-destaque-slide-container-padding-x: 16px;
	/* Image + prev/next + gaps — width of .receitas-destaque__media-row inner strip. */
	--receitas-destaque-slide-max-w: calc(
		var(--receitas-destaque-image-w) + 2 * var(--receitas-destaque-nav-w) + 2 * var(--receitas-destaque-media-gap)
	);
	/* Column width: media strip + slide-wrap horizontal padding (both sides). */
	--receitas-destaque-slider-col-min-w: calc(
		var(--receitas-destaque-slide-max-w) + 2 * var(--receitas-destaque-slide-container-padding-x)
	);
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	min-height: 358px;
	max-height: 1267px;
	overflow-x: clip;
	background: #ffffff;
}

.receitas-destaque *,
.receitas-destaque *::before,
.receitas-destaque *::after {
	box-sizing: border-box;
}

.receitas-destaque__wrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0;
	width: 100%;
	max-width: min(1920px, 100%);
	min-width: 0;
	min-height: 358px;
	max-height: 1267px;
	height: auto;
	margin: 0 auto;
	background: none;
}

/* --- First column: scales with flex; box keeps slide aspect (1265.26 × 1267) --- */
.receitas-destaque__image-col {
	position: relative;
	/* Takes remaining space; slider column keeps fixed strip width (flex: 0 0 auto). */
	flex: 1 1 0;
	min-width: 0;
	width: auto;
	max-width: none;
	aspect-ratio: 1265.26 / 1267;
	height: auto;
	min-height: 358px;
	overflow: visible;
	align-self: center;
}

.receitas-destaque__bg {
	position: absolute;
	/* Scales with column width C: offset = -319px * (C / 1265.26) */
	left: calc(100% * -319 / 1265.26);
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 100%;
	max-width: 1265.26px;
	height: auto;
	aspect-ratio: 1265.26 / 1267;
	max-height: 1267px;
	object-fit: contain;
	object-position: left center;
	pointer-events: none;
}

/* --- Slider column --- */
.receitas-destaque__slider-col {
	display: flex;
	flex-direction: column;
	/* Strip width = --receitas-destaque-slider-col-min-w; no fractional flex shrink. */
	flex: 0 0 auto;
	width: min(100%, var(--receitas-destaque-slider-col-min-w));
	max-width: 100%;
	min-height: 358px;
	align-self: center;
	margin-top: 130px;
	padding-left: 0;
	padding-right: 0;
	justify-content: center;
}

/* Desktop: only the decorative column shrinks; slider keeps full nav + media strip. */
@media screen and (min-width: 1281px) {
	.receitas-destaque__image-col {
		flex-shrink: 1;
	}

	.receitas-destaque__slider-col {
		flex-shrink: 0;
	}
}

/* Slide container: one horizontal inset; included in --receitas-destaque-slider-col-min-w. */
@media screen and (min-width: 1025px) {
	.receitas-destaque__slide-wrap {
		padding-left: var(--receitas-destaque-slide-container-padding-x);
		padding-right: var(--receitas-destaque-slide-container-padding-x);
	}
}

/* Prev/next align to slide image; image fixed 600px wide; nav buttons share extra space (flex-grow). */
.receitas-destaque__media-row {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 100%;
	margin-top: 28px;
	gap: var(--receitas-destaque-media-gap);
}

.receitas-destaque__slides-media {
	position: relative;
	flex: 0 0 var(--receitas-destaque-image-w);
	width: var(--receitas-destaque-image-w);
	max-width: var(--receitas-destaque-image-w);
	min-width: 0;
	aspect-ratio: 600 / 363;
}

.receitas-destaque__slide-media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.receitas-destaque__slide-media[hidden] {
	display: none !important;
}

.receitas-destaque__slide-media .receitas-destaque__figure {
	width: 100%;
	height: 100%;
	max-width: none;
	min-height: 0;
	aspect-ratio: unset;
}

.receitas-destaque__slide-media .receitas-destaque__figure-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.receitas-destaque__nav {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	/* Always 1:1; size comes from --receitas-destaque-nav-w (layout math stays in sync). */
	flex: 0 0 var(--receitas-destaque-nav-w);
	width: var(--receitas-destaque-nav-w);
	min-width: var(--receitas-destaque-nav-w);
	max-width: var(--receitas-destaque-nav-w);
	aspect-ratio: 1 / 1;
	height: auto;
	padding: 0;
	border: none;
	border-radius: 24px;
	background: rgba(52, 162, 252, 1);
	cursor: pointer;
	transition: opacity 0.2s ease;
}

/* Wide desktop (e.g. 1920): token matches layout math */
@media screen and (min-width: 1751px) {
	.receitas-destaque {
		--receitas-destaque-nav-w: 103px;
	}
}

.receitas-destaque__nav:hover {
	opacity: 0.88;
}

.receitas-destaque__nav:focus {
	outline: none;
}

.receitas-destaque__nav:focus-visible {
	outline: 2px solid rgba(10, 60, 112, 1);
	outline-offset: 3px;
}

.receitas-destaque__nav-img {
	display: block;
	width: 21.36px;
	height: 21.36px;
	object-fit: contain;
}

.receitas-destaque__slide-wrap {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	min-height: 0;
	align-items: flex-end;
	justify-content: flex-start;
}

.receitas-destaque__slides {
	position: relative;
	width: 100%;
	flex: 0 1 auto;
	min-height: 0;
}

.receitas-destaque__slide {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

.receitas-destaque__slide[hidden] {
	display: none !important;
}

.receitas-destaque__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

.receitas-destaque__content-inner {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	width: 100%;
	max-width: var(--receitas-destaque-content-max-w);
	/* Right-align with slide image: both were centered; shift by half the width delta so right edges match */
	margin-inline-start: calc(
		(var(--receitas-destaque-image-w) - var(--receitas-destaque-content-max-w)) / 2
	);
	text-align: right;
}

.receitas-destaque__highlight {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	max-width: 296px;
	margin: 0 0 0 auto;
	padding: 0;
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	font-style: italic;
	font-size: clamp(18px, 2vw, 24px);
	line-height: 1;
	letter-spacing: 0;
	color: rgba(85, 85, 85, 1);
}

.receitas-destaque__line {
	width: 100%;
	height: 4px;
	margin-top: 24px;
	background: rgba(72, 138, 206, 1);
	border: none;
	border-radius: 0;
}

.receitas-destaque__title {
	width: 100%;
	margin: 14px 0 0;
	padding: 0;
	font-family: 'Inter', sans-serif;
	font-weight: 800;
	font-size: clamp(28px, 4.2vw, 64px);
	line-height: 1;
	letter-spacing: 0;
	text-align: right;
	color: rgba(85, 85, 85, 1);
	overflow-wrap: break-word;
}

.receitas-destaque__detail {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
	height: 52px;
	min-height: 52px;
	margin-top: 33px;
	gap: 28px;
}

.receitas-destaque__detail-primary {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
	gap: 28px;
	flex: 0 1 auto;
	min-width: 0;
}

.receitas-destaque__stars {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	width: max-content;
	height: 30.37px;
	gap: 8.52px;
	flex: 0 0 auto;
}

.receitas-destaque__star {
	display: block;
	width: 31.48px;
	height: 30.37px;
	flex-shrink: 0;
	background-color: rgba(216, 216, 216, 1);
	mask-image: url('../../../img/star.svg');
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-image: url('../../../img/star.svg');
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
}

.receitas-destaque__star.is-active {
	background-color: rgba(255, 204, 0, 1);
}

.receitas-destaque__time {
	box-sizing: border-box;
	display: inline-flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	width: max-content;
	max-width: 100%;
	height: 52px;
	flex: 0 1 auto;
	min-width: 0;
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 32px;
	line-height: 1;
	letter-spacing: 0;
	color: rgba(85, 85, 85, 1);
}

.receitas-destaque__time-icon {
	display: block;
	width: auto;
	height: 1em;
	max-height: 32px;
	object-fit: contain;
	flex-shrink: 0;
}

.receitas-destaque__difficulty {
	box-sizing: border-box;
	flex: 0 1 auto;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: max-content;
	max-width: 100%;
	height: 52px;
	min-width: 0;
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 32px;
	line-height: 1;
	letter-spacing: 0;
	text-align: left;
	color: rgba(85, 85, 85, 1);
}

.receitas-destaque__figure {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 25px;
	overflow: hidden;
	background: rgba(240, 244, 248, 1);
}

.receitas-destaque__figure-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.receitas-destaque__actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	margin-top: 25px;
}

.receitas-destaque__actions-inner {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: var(--receitas-destaque-image-w);
	min-height: 42px;
	gap: 16px;
}

.receitas-destaque__see {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	min-height: 42px;
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-size: clamp(18px, 2.2vw, 32px);
	line-height: 1;
	letter-spacing: 0;
	color: rgba(10, 60, 112, 1);
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.receitas-destaque__see:hover {
	opacity: 0.88;
	color: rgba(10, 60, 112, 1);
}

.receitas-destaque__see:focus-visible {
	outline: 2px solid rgba(10, 60, 112, 1);
	outline-offset: 4px;
	border-radius: 4px;
}

.receitas-destaque__see-icon {
	display: block;
	width: 42px;
	height: 42px;
	object-fit: contain;
	flex-shrink: 0;
}

.receitas-destaque__bullets {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	gap: 26px;
	width: 124px;
	height: 24px;
	flex-shrink: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.receitas-destaque__bullet {
	width: 24px;
	height: 24px;
	padding: 0;
	border: none;
	border-radius: 25px;
	background: rgba(200, 210, 220, 1);
	cursor: pointer;
	flex-shrink: 0;
	transition: background 0.2s ease, transform 0.15s ease;
}

.receitas-destaque__bullet.is-active {
	background: rgba(10, 60, 112, 1);
}

.receitas-destaque__bullet:focus {
	outline: none;
}

.receitas-destaque__bullet:focus-visible {
	outline: 2px solid rgba(10, 60, 112, 1);
	outline-offset: 3px;
}

/* 1281–1750: smoothly reduce both the recipe media and the two columns. */
@media screen and (max-width: 1750px) and (min-width: 1281px) {
	.receitas-destaque {
		--receitas-destaque-image-w: clamp(460px, 34vw, 600px);
		--receitas-destaque-nav-w: clamp(72px, 5.8vw, 100.71px);
		--receitas-destaque-media-gap: clamp(16px, 1.4vw, 25px);
		--receitas-destaque-slide-container-padding-x: clamp(12px, 1.4vw, 16px);
	}

	.receitas-destaque__image-col {
		flex: 1 1 0;
		min-width: 0;
		max-width: none;
		overflow-x: clip;
	}
}

/* 1281–1440: tighten both sides proportionally to avoid abrupt image collapse. */
@media screen and (max-width: 1440px) and (min-width: 1281px) {
	.receitas-destaque {
		--receitas-destaque-image-w: clamp(430px, 33vw, 500px);
		--receitas-destaque-nav-w: clamp(60px, 5vw, 72px);
		--receitas-destaque-media-gap: clamp(14px, 1.2vw, 20px);
		--receitas-destaque-slide-container-padding-x: clamp(10px, 1.2vw, 16px);
	}

	.receitas-destaque__image-col {
		flex: 1 1 0;
		min-width: 0;
		max-width: none;
	}

	/* Fill the column (no letterboxing on the right); may crop edges of the asset. */
	.receitas-destaque__bg {
		object-fit: cover;
		object-position: left center;
	}
}

@media screen and (max-width: 1280px) {
	.receitas-destaque {
		--receitas-destaque-image-w: 403px;
		--receitas-destaque-nav-w: 55px;
	}

	.receitas-destaque__slides-media {
		aspect-ratio: 403 / 235;
	}

	.receitas-destaque__nav {
		/* 1:1 inherited from base; size from --receitas-destaque-nav-w (55px) */
		border-radius: 16px;
	}

	.receitas-destaque__nav-img {
		width: 11.667px;
		height: 11.615px;
	}

	.receitas-destaque__time {
		font-size: 20px;
		height: auto;
		min-height: 0;
		white-space: nowrap;
	}

	.receitas-destaque__time-icon {
		max-height: 22px;
	}
}

/*
 * Doc: 1280×720 artboard — first-column bg (Figma): 902×903, top -135px, left -311px.
 * Keep only fixed geometry on bg (no max constraints/clipping here).
 */
@media screen and (max-width: 1280px) and (min-width: 1025px) {
	.receitas-destaque__wrapper {
		box-sizing: border-box;
		max-width: 1280px;
		width: 100%;
		height: 720px;
		min-height: 720px;
		max-height: 720px;
		margin-left: auto;
		margin-right: auto;
		overflow: visible;
	}

	.receitas-destaque__image-col {
		overflow: visible;
		max-width: none;
		z-index: 0;
	}

	.receitas-destaque__bg {
		left: -311px;
		top: -135px;
		transform: none;
		width: 902px;
		height: 903px;
		max-width: none;
		max-height: none;
		aspect-ratio: unset;
		z-index: 0;
	}

	.receitas-destaque__slider-col {
		position: relative;
		z-index: 1;
	}

	.receitas-destaque__highlight {
		font-family: 'Inter', sans-serif;
		font-weight: 700;
		font-style: italic;
		font-size: 18px;
		line-height: 1;
		letter-spacing: 0;
		justify-content: flex-end;
		height: auto;
		min-height: 0;
	}

	.receitas-destaque__line {
		width: 342px;
		max-width: 100%;
	}

	.receitas-destaque__title {
		font-family: 'Inter', sans-serif;
		font-weight: 800;
		font-style: normal;
		font-size: 48px;
		line-height: 1;
		letter-spacing: 0;
		text-align: right;
	}

	.receitas-destaque__see {
		font-family: 'Inter', sans-serif;
		font-weight: 400;
		font-style: normal;
		font-size: 18px;
		line-height: 1;
		letter-spacing: 0;
	}

	.receitas-destaque__see-icon {
		width: 36px;
		height: 36px;
	}

	.receitas-destaque__bullet {
		width: 15px;
		height: 15px;
		border-radius: 25px;
	}

	.receitas-destaque__detail {
		margin-top: 19px;
	}

	.receitas-destaque__media-row {
		margin-top: 31px;
	}
}

@media screen and (max-width: 1024px) {
	/* Doc: column stack, no padding; height = sum of children (no flex shrink, no overlap). */
	.receitas-destaque {
		padding: 0;
		min-height: auto;
		max-height: none;
		height: auto;
		max-width: 100%;
		min-width: 0;
		overflow-x: clip;
		float: none;
	}

	.receitas-destaque__wrapper {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		align-content: flex-start;
		flex-wrap: nowrap;
		justify-content: flex-start;
		min-height: auto;
		max-height: none;
		height: auto;
		max-width: 100%;
		min-width: 0;
		float: none;
	}

	/* Doc: first column — decorative image in normal flow so column height follows the asset */
	.receitas-destaque__image-col {
		position: relative;
		flex: 0 0 auto;
		align-self: stretch;
		width: 100%;
		max-width: none;
		min-height: auto;
		height: auto;
		display: flex;
		flex-direction: column;
		align-items: center;
		float: none;
		aspect-ratio: auto;
		overflow: visible;
		margin-bottom: 24px;
	}

	/* In-flow only — no translate/margin pull (avoids overlap with slider column). */
	.receitas-destaque__bg {
		position: static;
		display: block;
		flex-shrink: 0;
		width: min(100%, 373px);
		height: auto;
		aspect-ratio: 373 / 374;
		max-width: 373px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 0;
		transform: none;
		object-fit: contain;
		object-position: center top;
	}

	/* Doc: second column — no padding; override desktop flex: 1 1 0 so height tracks content */
	.receitas-destaque__slider-col {
		display: flex;
		flex-direction: column;
		flex: 0 0 auto;
		align-self: stretch;
		width: 100%;
		max-width: 100%;
		min-width: 0;
		margin-top: 0;
		padding: 0;
		min-height: auto;
		height: auto;
		float: none;
		justify-content: flex-start;
	}

	.receitas-destaque__slide-wrap {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		max-width: none;
		width: 100%;
		min-height: auto;
		flex: 0 0 auto;
		flex-shrink: 0;
	}

	.receitas-destaque__slides {
		position: relative;
		width: 100%;
		flex: 0 0 auto;
		min-height: auto;
	}

	.receitas-destaque__slide {
		align-items: center;
	}

	/* Doc: texts + line centered */
	.receitas-destaque__content {
		align-items: center;
	}

	.receitas-destaque__content-inner {
		align-items: center;
		text-align: center;
		max-width: 100%;
		width: 100%;
		min-width: 0;
		margin-inline-start: 0;
		overflow-wrap: break-word;
	}

	.receitas-destaque__highlight {
		justify-content: center;
		margin-left: auto;
		margin-right: auto;
		text-align: center;
		font-family: 'Inter', sans-serif;
		font-weight: 700;
		font-style: italic;
		font-size: 20px;
		line-height: 1;
		letter-spacing: 0;
	}

	.receitas-destaque__line {
		box-sizing: border-box;
		margin-left: auto;
		margin-right: auto;
		padding-left: 30px;
		padding-right: 30px;
		background-clip: content-box;
	}

	.receitas-destaque__title {
		display: block;
		font-family: 'Inter', sans-serif;
		font-weight: 800;
		font-style: normal;
		font-size: 42px;
		line-height: 1.2;
		letter-spacing: 0;
		text-align: center;
		/* Space from line above + clear gap before stars row (tight line-height: 1 + no bottom margin caused overlap) */
		margin: 14px 0 24px;
	}

	/* Doc: detail — max 360px, padding 16px. When .time exists, stars+time compete for width and wrap — :has() enables centered primary + time (see below). */
	.receitas-destaque__detail {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		align-content: center;
		box-sizing: border-box;
		width: 100%;
		max-width: 360px;
		margin-top: 0;
		margin-left: auto;
		margin-right: auto;
		padding-left: 16px;
		padding-right: 16px;
		height: auto;
		min-height: 0;
		flex-wrap: wrap;
		gap: unset;
		column-gap: 16px;
		row-gap: 8px;
		font-family: 'Inter', sans-serif;
		font-weight: 400;
		font-style: normal;
		font-size: 20px;
		line-height: 1.2;
		letter-spacing: 0;
	}

	.receitas-destaque__detail-primary {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: flex-start;
		align-items: center;
		align-content: center;
		flex: 0 0 auto;
		min-width: auto;
		width: fit-content;
		max-width: 100%;
		gap: unset;
		row-gap: 8px;
		column-gap: 12px;
	}

	/* Only when duration is shown: row wraps — center stars+diff lines and the time row. */
	.receitas-destaque__detail:has(.receitas-destaque__time) .receitas-destaque__detail-primary {
		justify-content: center;
	}

	.receitas-destaque__detail:has(.receitas-destaque__time) .receitas-destaque__time {
		justify-content: center;
	}

	.receitas-destaque__difficulty {
		height: auto;
		min-height: 0;
		font-family: 'Inter', sans-serif;
		font-weight: 400;
		font-style: normal;
		font-size: 20px;
		line-height: 1.2;
		letter-spacing: 0;
	}

	/* Recipe strip: in-flow height = .slides-media; prev/next absolute only inside this row. */
	.receitas-destaque__media-row {
		--receitas-destaque-m-slide-w: min(100%, 294px);
		display: block;
		position: relative;
		width: 100%;
		max-width: 100%;
		min-width: 0;
		margin-top: 28px;
		flex: 0 0 auto;
		min-height: auto;
		overflow-x: clip;
	}

	/* Doc: slide image container — 294×172, 25px radius, angle 0, opacity 1 */
	.receitas-destaque__slides-media {
		position: relative;
		box-sizing: border-box;
		width: var(--receitas-destaque-m-slide-w);
		max-width: 294px;
		aspect-ratio: 294 / 172;
		height: auto;
		flex: none;
		margin-left: auto;
		margin-right: auto;
		border-radius: 25px;
		overflow: hidden;
		transform: rotate(0deg);
		opacity: 1;
	}

	.receitas-destaque__slide-media .receitas-destaque__figure {
		border-radius: 0;
	}

	.receitas-destaque__nav {
		position: absolute;
		top: 50%;
		z-index: 2;
		flex: 0 0 44px;
		min-width: 44px;
		max-width: 44px;
		width: 44px;
		aspect-ratio: 1 / 1;
		height: auto;
	}

	.receitas-destaque__nav-img {
		width: 13px;
		height: 13px;
	}

	/* Half button outside slide: center of each control on the slide’s left/right edge (same transform). */
	.receitas-destaque__nav--prev {
		left: calc(50% - (var(--receitas-destaque-m-slide-w) / 2));
		transform: translate(-50%, -50%);
	}

	.receitas-destaque__nav--next {
		left: calc(50% + (var(--receitas-destaque-m-slide-w) / 2));
		transform: translate(-50%, -50%);
	}

	/* Doc: actions — column, centered horizontally, flex-start vertically */
	.receitas-destaque__actions {
		flex: 0 0 auto;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		min-height: auto;
		margin-top: 22px;
	}

	.receitas-destaque__actions-inner {
		flex: 0 0 auto;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		max-width: 100%;
		width: 100%;
	}

	.receitas-destaque__see {
		min-height: unset;
	}

	.receitas-destaque__see-icon {
		width: 24px;
		height: 24px;
	}

	.receitas-destaque__bullets {
		width: auto;
		height: auto;
		min-height: 16px;
		gap: 18px;
	}

	.receitas-destaque__bullet {
		width: 16px;
		height: 16px;
		border-radius: 25px;
	}

	.receitas-destaque__time {
		font-family: 'Inter', sans-serif;
		font-weight: 400;
		font-style: normal;
		font-size: 20px;
		line-height: 1.2;
		letter-spacing: 0;
		height: auto;
		min-height: 0;
		white-space: normal;
	}

	.receitas-destaque__time-icon {
		width: 24px;
		height: 24px;
		max-height: 24px;
	}
}
