.hero-section {
	border-bottom: 1px solid var(--border);
}

.hero-section__inner {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 1.5rem;
	padding-block: 2.5rem;
}

@media (min-width: 768px) {
	.hero-section__inner {
		padding-block: 3.5rem;
	}
}

.hero-content {
	grid-column: span 12;
}

.hero-title {
	margin-top: 1.25rem;
	font-size: clamp(2.2rem, 5.2vw, 4.4rem);
	line-height: 1.05;
	letter-spacing: -0.02em;
}

.hero-description {
	margin-top: 2rem;
	max-width: 42rem;
	font-size: 1rem;
	line-height: 1.75;
	color: color-mix(in oklch, var(--foreground) 80%, transparent);
}

.hero-escribanas {
	margin-top: 2rem;
	max-width: 42rem;
	padding-left: 1rem;
	border-left: 1px solid var(--border);
}

.hero-escribanas__label {
	margin-bottom: 0.5rem;
}

.hero-escribanas__list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	font-size: 0.95rem;
	line-height: 1.3;
}

.hero-escribanas__name {
	font-weight: 600;
}

.hero-escribanas__registro {
	color: var(--ink-soft);
}

.hero-actions {
	margin-top: 2rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.hero-visual {
	grid-column: span 12;
}

.hero-visual__frame {
	aspect-ratio: 4 / 5;
	overflow: hidden;
	border-radius: 0.75rem;
	border: 1px solid var(--border);
	background: var(--panel);
	box-shadow: 0 20px 50px -20px oklch(0.18 0.01 285 / 0.12);
}

.hero-visual__image {
	height: 100%;
	width: 100%;
	object-fit: cover;
	filter: grayscale(1);
}

.hero-visual__caption {
	margin-top: 1rem;
	font-size: 0.85rem;
	line-height: 1.3;
	color: var(--ink-soft);
}

@media (min-width: 1024px) {
	.hero-content {
		grid-column: span 8;
	}
	.hero-visual {
		grid-column: span 4;
	}
}
