/* ===== Section Layout ===== */
.series-section {
	padding: 40px 0;
}

/* ===== Top Navigation ===== */
.series-nav {
	text-align: center;
	margin-bottom: 25px;
}

.series-nav p {
	margin: 6px 0;
}

.series-nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

/* Nav pills */
.series-link {
	padding: 6px 12px;
	background: #f1f5f9;
	color: #1e73be;
	text-decoration: none;
	border-radius: 20px;
	font-weight: 500;
	font-size: 14px;
	transition: all 0.2s ease;
}

.series-link:hover {
	background: #1e73be;
	color: #fff;
}

/* ===== Grid ===== */
.model-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}

/* ===== Cards ===== */
.model-card {
	width: 180px;
	border: 1px solid #1e73be;
	border-radius: 10px;
	padding: 10px;
	text-align: center;
	background: #fff;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.model-card img {
	width: 150px;
	height: auto;
	border-radius: 10px;
	display: block;
	margin: 0 auto 8px;
}

.model-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* ===== Text ===== */
.model-card p {
	margin-bottom: 8px;
}

/* ===== Button ===== */
.btn {
	display: inline-block;
	margin-top: 8px;
	padding: 6px 10px;
	font-size: 14px;
	background: #1e73be;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
}

.btn:hover {
	background: #155a96;
}

/* ===== Scroll Offset ===== */
.series-section {
	scroll-margin-top: 80px;
}