/* =========================================================
   YO, TURO — Bloque editorial de diseños
   ========================================================= */

.turo-designs {
	position: relative;
	isolation: isolate;

	display: flex;
	align-items: center;

	width: calc(100% - 80px);
	max-width: 1480px;
	min-height: clamp(580px, 66vh, 720px);

	margin: clamp(70px, 8vw, 120px) auto;

	overflow: hidden;
	border-radius: clamp(32px, 4vw, 64px);

	background: #77716d;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.1);
}

.turo-designs__image {
	position: absolute;
	inset: 0;
	z-index: -3;

	background-size: cover;
	background-position: 68% center;
	background-repeat: no-repeat;

	transform: scale(1.025);
	transition: transform 1.1s cubic-bezier(.19, 1, .22, 1);
}

.turo-designs:hover .turo-designs__image {
	transform: scale(1);
}

.turo-designs__overlay {
	position: absolute;
	inset: 0;
	z-index: -2;

	background:
		linear-gradient(
			90deg,
			rgba(20, 18, 17, 0.7) 0%,
			rgba(20, 18, 17, 0.56) 35%,
			rgba(20, 18, 17, 0.22) 65%,
			rgba(20, 18, 17, 0.05) 100%
		);
}

.turo-designs__content {
	width: min(760px, 52%);

	padding:
		clamp(70px, 7vw, 105px)
		clamp(60px, 7vw, 105px);

	color: #ffffff;
}

.turo-designs__eyebrow {
	display: block;
	margin-bottom: 24px;

	font-family: "Poppins", sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.28em;
	line-height: 1.4;
	text-transform: uppercase;
}

.turo-designs__title {
    max-width: 720px;
    margin: 0 0 24px;

    color: #ffffff;

    font-family: "Poppins", sans-serif;
    font-size: clamp(38px, 3.8vw, 68px);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.95;

    text-wrap: pretty;
}

.turo-designs__text {
	max-width: 540px;
	margin: 0 0 34px;

	color: rgba(255, 255, 255, 0.9);

	font-family: "Poppins", sans-serif;
	font-size: clamp(17px, 1.15vw, 20px);
	font-weight: 400;
	line-height: 1.55;
}

.turo-designs__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-height: 56px;
	padding: 0 30px;

	border: 0;
	border-radius: 999px;

	background: #111111;
	color: #ffffff;

	font-family: "Poppins", sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.02em;

	text-decoration: none;
	text-transform: uppercase;

	transition:
		transform 0.28s cubic-bezier(.19, 1, .22, 1),
		background-color 0.28s ease,
		color 0.28s ease,
		box-shadow 0.28s ease;
}

.turo-designs__button:hover {
	background: #ffffff;
	color: #111111;

	transform: translateY(-3px);

	box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
}

/* Tablet */

@media (max-width: 1100px) {
	.turo-designs {
		width: calc(100% - 44px);
	}

	.turo-designs__content {
		width: 58%;
		padding: 72px 52px;
	}

	.turo-designs__image {
		background-position: 72% center;
	}
}

/* Mobile */

@media (max-width: 767px) {
	.turo-designs {
		align-items: flex-end;

		width: calc(100% - 28px);
		min-height: 720px;

		margin: 60px auto;

		border-radius: 34px;
	}

	.turo-designs__image {
		background-position: 72% center;
	}

	.turo-designs__overlay {
		background:
			linear-gradient(
				180deg,
				rgba(10, 10, 10, 0.02) 0%,
				rgba(10, 10, 10, 0.2) 28%,
				rgba(10, 10, 10, 0.82) 68%,
				rgba(10, 10, 10, 0.96) 100%
			);
	}

	.turo-designs__content {
		width: 100%;
		padding: 330px 28px 42px;
	}

	.turo-designs__eyebrow {
		font-size: 10px;
		margin-bottom: 18px;
	}

	.turo-designs__title {
		font-size: clamp(48px, 11vw, 64px);
		line-height: 0.93;
		margin-bottom: 20px;
	}

	.turo-designs__text {
		font-size: 16px;
	}

	.turo-designs__button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.turo-designs__image,
	.turo-designs__button {
		transition: none;
	}
}