.staplande-section {
	padding: 0 20px;
	max-width: 1400px;
	margin: 0 auto;
}

.staplande-grid {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 40px;
	width: 100%;
}

.staplande-card {
	position: relative;
	display: block;
	border-radius: 20px;
	overflow: hidden;
	height: 400px;
	cursor: pointer;
	flex-basis: auto;
	flex-shrink: 0;
	transition: all .6s cubic-bezier(.4, 0, .2, 1);
	box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
	z-index: 0;
	color: inherit;
	text-decoration: none !important;
}

.staplande-card:hover {
	height: 500px;
	transform: translateY(-5px);
	box-shadow: 0 25px 60px rgba(0, 0, 0, .4);
	z-index: 1;
}

.staplande-grid:hover .staplande-card:not(:hover) {
	height: 350px;
	transform: scale(.98);
	opacity: .7;
}

.staplande-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.3) 40%, rgba(0,0,0,.7) 80%, rgba(0,0,0,.9) 100%);
	z-index: 2;
	transition: opacity .4s ease;
}

.staplande-card:hover::before {
	background: linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,.4) 40%, rgba(0,0,0,.8) 80%, rgba(0,0,0,.95) 100%);
}

.staplande-background {
	position: absolute;
	inset: 0;
	display: block;
	background-size: cover;
	background-position: center;
	transition: transform .6s ease;
	background-color: #2a2a3e;
}

.staplande-card:hover .staplande-background {
	transform: scale(1.1);
}

.staplande-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	display: block;
	padding: 40px;
	z-index: 3;
	color: #E6F1FF;
	transition: all .4s ease;
}

.staplande-grid:hover .staplande-card:not(:hover) .staplande-content {
	opacity: .3;
	transform: scale(.8);
}

.staplande-type {
	display: inline-block;
	background: #0086cb;
	color: #1a1a2e;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: .9rem;
	font-weight: 600;
	margin-bottom: 20px;
	transition: all .3s ease;
}

.staplande-card:hover .staplande-type {
	background: #45b4e7;
	transform: translateY(-3px);
}

.staplande-title {
	display: block;
	font-size: 1.8rem;
	font-weight: 600;
	margin-bottom: 15px;
	color: #E6F1FF;
	line-height: 1.2;
	transition: all .3s ease;
}

.staplande-card:hover .staplande-title {
	transform: translateY(-5px);
}

.staplande-intro {
	display: block;
	font-size: 1.05rem;
	color: #e8e8f0;
	line-height: 1.6;
	opacity: .9;
	transition: all .3s ease;
	max-height: 0;
	overflow: hidden;
	margin-bottom: 0;
}

.staplande-card:hover .staplande-intro {
	opacity: 1;
	max-height: 150px;
	margin-bottom: 20px;
}

.staplande-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #0086cb;
	font-weight: 500;
	font-size: 1rem;
	opacity: 0;
	transform: translateY(20px);
	transition: all .4s ease;
}

.staplande-card:hover .staplande-cta {
	opacity: 1;
	transform: translateY(0);
}

.staplande-arrow {
	width: 16px;
	height: 16px;
	transition: transform .3s ease;
}

.staplande-card:hover .staplande-arrow {
	transform: translateX(5px);
}

@media (max-width: 1024px) {
	.staplande-grid { flex-direction: column; gap: 25px; }
	.staplande-card { width: 100%; height: 400px; }
	.staplande-card:hover { height: 450px; transform: translateY(-5px) scale(1.02); }
	.staplande-grid:hover .staplande-card:not(:hover) { height: 350px; transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
	.staplande-section { padding: 60px 15px; }
	.staplande-card { height: 350px; }
	.staplande-card:hover { height: 400px; transform: translateY(-3px); }
	.staplande-grid:hover .staplande-card:not(:hover) { height: 320px; transform: scale(1); opacity: 1; }
	.staplande-content { padding: 30px; }
	.staplande-title { font-size: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
	.staplande-card,
	.staplande-background,
	.staplande-content,
	.staplande-type,
	.staplande-title,
	.staplande-intro,
	.staplande-cta,
	.staplande-arrow {
		transition: none !important;
	}
}

.staplande-card:focus,
.staplande-card:focus-visible {
	outline: 2px solid #d4b896;
	outline-offset: 2px;
}
