.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 2rem 1.5rem 3rem;
}
.hero {
	text-align: center;
	margin-bottom: 3rem;
	border-Bottom: 1px solid rgba(0,0,0,0.05);
	background: url('/images/abannera01.jpg') center/cover;
	opacity: 0.8;
}
.hero h1 {
	font-size: 2.8rem;
	font-weight: 800;
	background: linear-gradient(125deg, #3b82f6, #1e293b);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-stroke: 1px white;
	color: transparent;
	letter-spacing: -0.02em;
	margin-bottom: 0.5rem;
}
.hero p {
	font-size: 1.1rem;
	font-weight: 800;
	color: #ffffff;
	background: linear-gradient(125deg, #ffffff, #3b82f6);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-stroke: 0.5px #ffffff;
	max-width: 620px;
	margin: 0 auto;
	line-height: 1.5;
}
.card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 2rem;
	margin: 2rem 0 1rem;
}
.card {
	background: white;
	border-radius: 0.5rem 0.5rem 1.8rem 1.8rem;
	overflow: hidden;
	box-shadow: 0 15px 35px -12px rgba(0, 0, 0, 0.1);
	transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
	backdrop-filter: blur(0px);
	border: 1px solid rgba(255,255,255,0.5);
}
/*
.card:hover {
	transform: translateY(-6px);
	box-shadow: 0 25px 40px -14px rgba(0, 0, 0, 0.2);
}
*/
.card-img {
	width: auto;
	max-width:100%;
	height: auto;
	object-fit: cover;
	transition: transform 0.4s ease;
}
/*
.card:hover .card-img {
	transform: scale(1.02);
}
*/
.card-heard {
	height:6rem;
	line-height:2.3rem;
	overflow:hidden;
	padding: 0 0.3rem 0;
}
.card-body {
	padding: 0 1rem 1.5rem;
}
.card-title {
	font-size: 1.35rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: #0f172a;
}
.card-desc {
	color: #475569;
	line-height: 1.5;
	font-size: 0.9rem;
}
@media (max-width: 700px) {
	.container {
		padding: 1.5rem;
	}
	.hero {
		background: url('/images/abannera03.jpg') center;
		opacity: 0.8;
	}
	.hero h1 {
		font-size: 1.6rem;
        background: linear-gradient(125deg, #1e293b, #3b82f6);
		-webkit-text-stroke: none;
	}
	.hero p {
		color: #E6F2FF;
		-webkit-text-stroke: 0.2px #1e293b;
	}
	.card-grid {
		gap: 1.2rem;
	}
	.card {
		border-radius: 0.3rem 0.5rem 2.3rem 0.8rem;
	}
	.card-heard {
		height:auto;
		max-height:6rem;
	}
}
