/* ==========================================================================
   V20 — section-intro.css
   "The New Standard / Verleg je Grenzen" band below the hero.
   Mobile-first: stacked; split 5/7 at >=992px. Feature list 2-col at >=576px.
   ========================================================================== */

.home-intro {
	background-color: #000;
	border-top: 1px solid rgba(0, 255, 136, .2);
	padding-block: 2rem;
}

.intro-box {
	display: grid;
	grid-template-columns: 1fr;
	background: #050505;
	border: 1px solid #222;
}

/* ---- Left (headline + image) ---- */
.intro-left {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 3rem;
	background: linear-gradient(45deg, #000 0%, #0a0a0a 100%);
}

.intro-left__text {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.intro-left__img-link {
	flex-shrink: 0;
	display: block;
	width: 150px;   /* ~37.5% of the 400px source */
	line-height: 0;
}

/* Neon treatment — desktop & tablet only (not mobile).
   The previous hover look is now the resting state; hover lifts & intensifies. */
@media (min-width: 768px) {
	.intro-left__img-link {
		transform: scale(1.06);
		filter: drop-shadow(0 0 12px rgba(0, 255, 136, .45));
		transition: transform .3s ease, filter .3s ease;
	}

	.intro-left__img-link:hover {
		transform: scale(1.09) translateY(-2px);
		filter: drop-shadow(0 0 18px rgba(0, 255, 136, .65));
	}
}

.intro-left__img {
	width: 100%;
	height: auto;
}

.intro-eyebrow {
	margin: 0 0 1rem;
	color: var(--v20-neon);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: .9rem;
}

.intro-title {
	margin: 0;
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	line-height: .9;
	letter-spacing: -1px;
	font-size: clamp(2.25rem, 4.5vw, 3.5rem);
}

.intro-title__accent {
	color: var(--v20-neon);
}

/* ---- Right (copy) ---- */
.intro-right {
	padding: 3rem;
	border-left: 1px solid rgba(108, 117, 125, .25);
}

.intro-lead {
	margin: 0 0 1.5rem;
	color: #fff;
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 1.4;
}

.intro-underline {
	border-bottom: 2px solid rgba(255, 255, 255, .85);
	font-size: 1.75rem;
}

.intro-desc {
	margin: 0 0 1.5rem;
	color: #9ca3af;
	font-size: 1.1rem;
	line-height: 1.8;
}

.intro-features {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .75rem 2rem;   /* both features side by side on one row */
}

.intro-feature {
	display: flex;
	align-items: center;
	gap: .5rem;
}

.intro-dot {
	flex-shrink: 0;
	width: 10px;
	height: 10px;
	background: var(--v20-neon);
	border-radius: 50%;
}

.intro-feature span {
	color: #fff;
	font-size: .875rem;
	font-weight: 700;
	text-transform: uppercase;
}

/* ---- Breakpoints ---- */
/* Below the desktop split, stack the image under the "Grenzen" title. */
@media (max-width: 991px) {
	.intro-left {
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		padding-bottom: 0;
	}

	.intro-right {
		padding-top: 0;
	}
}

@media (min-width: 992px) {
	.intro-box {
		grid-template-columns: 6fr 7fr;
	}
}
