:root {
	--oto-charcoal: #1f2933;
	--oto-red: #a9251c;
	--oto-red-dark: #861d17;
	--oto-ink: #25313b;
	--oto-muted: #5e6973;
	--oto-line: #d9dee3;
	--oto-light: #f5f6f7;
	--oto-white: #ffffff;
	--oto-radius: 14px;
	--oto-shadow: 0 12px 32px rgba(31, 41, 51, 0.09);
}

.oto-city-market {
	color: var(--oto-ink);
	background: var(--oto-white);
	overflow: clip;
}

.oto-city-market__inner {
	width: min(1120px, calc(100% - 40px));
	margin-inline: auto;
}

.oto-city-market__hero {
	padding: clamp(64px, 9vw, 116px) 0;
	color: var(--oto-white);
	background:
		linear-gradient(120deg, rgba(31, 41, 51, 0.98), rgba(31, 41, 51, 0.88)),
		var(--oto-charcoal);
}

.oto-city-market__eyebrow {
	margin: 0 0 14px;
	color: #f0b9b5;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.oto-city-market__hero h1 {
	max-width: 900px;
	margin: 0;
	color: var(--oto-white);
	font-size: clamp(2.35rem, 5.4vw, 4.6rem);
	line-height: 1.05;
	letter-spacing: -0.035em;
}

.oto-city-market__lede {
	max-width: 720px;
	margin: 24px 0 0;
	color: #e8ecef;
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	line-height: 1.65;
}

.oto-city-market__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 32px;
}

.oto-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 12px 22px;
	border: 2px solid transparent;
	border-radius: 8px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.oto-button--primary {
	color: var(--oto-white);
	background: var(--oto-red);
}

.oto-button--primary:hover,
.oto-button--primary:focus-visible {
	color: var(--oto-white);
	background: var(--oto-red-dark);
}

.oto-button--secondary {
	color: var(--oto-white);
	border-color: rgba(255, 255, 255, 0.75);
}

.oto-button--secondary:hover,
.oto-button--secondary:focus-visible {
	color: var(--oto-charcoal);
	background: var(--oto-white);
}

.oto-city-market__content {
	padding-block: clamp(56px, 8vw, 96px);
	font-size: 1.05rem;
	line-height: 1.75;
}

.oto-city-market__content > p:first-child {
	max-width: 860px;
	margin-top: 0;
	font-size: clamp(1.15rem, 2vw, 1.35rem);
	line-height: 1.65;
}

.oto-city-market__content h2 {
	margin: clamp(52px, 7vw, 76px) 0 18px;
	padding-top: 6px;
	color: var(--oto-charcoal);
	font-size: clamp(1.75rem, 3.2vw, 2.65rem);
	line-height: 1.18;
	letter-spacing: -0.02em;
}

.oto-city-market__content h2::after {
	display: block;
	width: 64px;
	height: 4px;
	margin-top: 16px;
	border-radius: 99px;
	background: var(--oto-red);
	content: "";
}

.oto-city-market__content h3 {
	margin: 32px 0 10px;
	color: var(--oto-charcoal);
	font-size: clamp(1.2rem, 2vw, 1.5rem);
	line-height: 1.3;
}

.oto-city-market__content p,
.oto-city-market__content li {
	max-width: 900px;
}

.oto-city-market__content a {
	color: var(--oto-red);
	font-weight: 650;
	text-underline-offset: 0.15em;
}

.oto-city-market__content a:hover,
.oto-city-market__content a:focus-visible {
	color: var(--oto-red-dark);
}

.oto-city-market__content ol,
.oto-city-market__content ul {
	max-width: 900px;
	margin: 22px 0;
	padding-left: 1.5em;
}

.oto-city-market__content ol {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	padding: 0;
	list-style: none;
	counter-reset: oto-step;
}

.oto-city-market__content ol > li {
	position: relative;
	min-width: 0;
	padding: 24px 24px 24px 68px;
	border: 1px solid var(--oto-line);
	border-radius: var(--oto-radius);
	background: var(--oto-light);
	counter-increment: oto-step;
}

.oto-city-market__content ol > li::before {
	position: absolute;
	top: 22px;
	left: 20px;
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border-radius: 50%;
	color: var(--oto-white);
	background: var(--oto-red);
	font-weight: 800;
	content: counter(oto-step);
}

.oto-city-market__content blockquote {
	margin: 32px 0;
	padding: 24px 28px;
	border-left: 5px solid var(--oto-red);
	border-radius: 0 var(--oto-radius) var(--oto-radius) 0;
	background: var(--oto-light);
}

.oto-city-market__content > *:last-child {
	margin-bottom: 0;
}

@media (max-width: 767px) {
	.oto-city-market__inner {
		width: min(100% - 28px, 1120px);
	}

	.oto-city-market__hero {
		padding-block: 54px;
	}

	.oto-city-market__actions {
		display: grid;
	}

	.oto-button {
		width: 100%;
	}

	.oto-city-market__content {
		font-size: 1rem;
	}

	.oto-city-market__content ol {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.oto-button {
		transition: none;
	}
}
