:root {
	--card: #fafafa;
	--border: #e5e7eb;
	--radius: 18px;
	--shadow: 0 18px 40px rgba(0, 0, 0, .10);
	--accent: #0f766e;
	--muted: #000;
}
.wrap {
	max-width: 1100px;
	margin: 0 auto;
	padding: clamp(16px, 3vw, 40px);
}
.card {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: clamp(18px, 3vw, 36px);
	background: color-mix(in oklab, var(--card) 88%, white);
	background: var(--card);
	/* fallback */
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: clamp(18px, 3vw, 32px);
	position: relative;
	overflow: clip;
	overflow: hidden;
	/* fallback */
}

/* Hero */

.hero {
	border-radius: calc(var(--radius) - 4px);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	margin: 1rem;
	background-color: #fbd160;
}
.hero img {
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: calc(var(--radius) - 4px);
	width: 100%;
	height: auto;
	transform: scale(1.02);
	transition: transform .4s ease;
}
.hero:hover img {
	transform: scale(1.05)
}
.hero figcaption {
	padding: 10px 12px;
	font-size: .9rem;
	color: var(--muted);
}

/* Texto */

.content h1 {
	margin: auto;
	line-height: 1.2;
	font-size: clamp(1.4rem, 1.1rem+ 1.2vw, 2rem);
}
.lema {
	margin: 0 0 10px;
	font-weight: 600;
	color: color-mix(in oklab, var(--accent) 65%, black 15%);
}
.desc {
	color: #2a2a2a;
	margin-bottom: 12px;
}
.bullets {
	margin: 0;
	padding-left: 1.2rem;
	color: #2f2f2f;
}
.bullets li {
	margin: .2rem 0
}

/* Responsive */

@media (max-width: 860px) {
	.card {
		grid-template-columns: 1fr;
	}
}
