/* Bloque de asistencia técnica de la portada. */
.technical-support {
	position: relative;
	isolation: isolate;
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
	align-items: center;
	gap: clamp(2rem, 5vw, 5rem);
	padding: clamp(1.5rem, 4.5vw, 4rem);
	overflow: hidden;
	border-radius: 12px;
	background: #123522;
	color: #fff;
}
.technical-support::before {
	content: '';
	position: absolute;
	z-index: -1;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(ellipse at 0 100%, rgba(155, 182, 89, .19), transparent 65%), repeating-linear-gradient(125deg, transparent 0 90px, rgba(255, 255, 255, .025) 91px 92px);
}
.technical-support__eyebrow {
	display: flex;
	align-items: center;
	gap: .75rem;
	margin: 0 0 1.25rem;
	color: #dce99c;
	font-size: .75rem;
	font-weight: 750;
	letter-spacing: .14em;
	text-transform: uppercase;
}
.technical-support__eyebrow::before {
	content: '';
	width: 1.75rem;
	height: 2px;
	background: currentColor;
}
.technical-support h2 {
	max-width: 18ch;
	margin: 0;
	font: 700 clamp(2.15rem, 3.7vw, 3.75rem)/1.08 var(--font-display);
	letter-spacing: -.035em;
}
.technical-support h2 span {
	display: block;
	color: #dce99c;
}
.technical-support__intro {
	max-width: 53ch;
	margin: 1.5rem 0;
	color: #d6e2d7;
	line-height: 1.75;
}
.technical-support__topics {
	display: grid;
	gap: .8rem;
	list-style: none;
	padding: 1.5rem 0 0;
	margin: 1.5rem 0 0;
	border-top: 1px solid rgba(255, 255, 255, .18);
}
.technical-support__topics li {
	display: flex;
	align-items: center;
	gap: .75rem;
	font-size: .9rem;
}
.technical-support__topics svg {
	flex: 0 0 1.5rem;
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 50%;
	background: rgba(220, 233, 156, .12);
	fill: none;
	stroke: #dce99c;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.technical-support__contact {
	min-width: 0;
	padding: clamp(1.5rem, 2.7vw, 2.5rem);
	border: 1px solid #dce3d3;
	border-radius: 8px;
	background: #f6f8ee;
	color: #163725;
}
.technical-support__icon {
	display: grid;
	place-items: center;
	width: 3.5rem;
	height: 3.5rem;
	margin-bottom: 1.5rem;
	border-radius: 50%;
	background: #e3ebcd;
}
.technical-support__icon svg {
	width: 2rem;
	height: 2rem;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.technical-support__contact-label {
	margin: 0 0 .75rem;
	font-size: .7rem;
	font-weight: 750;
	letter-spacing: .08em;
	text-transform: uppercase;
}
.technical-support h3 {
	margin: 0 0 1rem;
	font: 700 clamp(1.6rem, 2.3vw, 2.1rem)/1.15 var(--font-display);
	letter-spacing: -.02em;
}
.technical-support__contact > p:not(.technical-support__contact-label) {
	margin: 0 0 1.5rem;
	font-size: .95rem;
	line-height: 1.65;
	color: #50604f;
}
.technical-support__button {
	width: 100%;
	gap: .75rem;
	justify-content: space-between;
	font-size: .85rem;
	text-align: left;
}
.technical-support__button span {
	font-size: 1.25rem;
}
.technical-support__channel {
	display: block;
	margin-top: .75rem;
	font-size: .75rem;
	text-align: center;
	color: #50604f;
}
@media (max-width: 800px) {
	.technical-support {
		grid-template-columns: 1fr;
	}
	.technical-support h2,
	.technical-support__intro {
		max-width: none;
	}
}
