.mca-tips-product .tips-product__wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	@media screen and (max-width: 1000px) {
		flex-direction: column;
	}
}

.mca-tips-product .tips-product__wrapper > * {
	flex: 1;
	position: relative;
	width: 100%;
	border-radius: 1rem;
	background-color: rgb(var(--color-background));
	color: rgb(var(--color-foreground));
	overflow: clip;
	padding: 5rem;
	display: flex;
	justify-content: center;
	flex-direction: column;
	min-height: 600px;
	@media screen and (max-width: 1000px) {
		padding: 2.5rem;
		min-height: 0;
	}
}

.mca-tips-product .tips-product__wrapper :is(.tips-product__title, .tips-product__text) {
	color: rgb(var(--color-foreground));
	line-height: 1.2;
	margin: 0;
}

.mca-tips-product .tips-product__wrapper :is(.tips-product__title) {
	font-size: var(--text-4xl);
}

.mca-tips-product .tips-product__wrapper :is(.tips-product__text) {
	font-size: var(--text-lg);
	@media screen and (max-width: 1000px) {
		font-size: var(--text-md);
	}
}

.mca-tips-product .tips-product__wrapper .image-container {
	@media screen and (max-width: 1000px) {
		aspect-ratio: 16/9;
	}
}

.mca-tips-product .tips-product__wrapper img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
