.tool-cards-section {
	margin-top: 2rem;
	padding: 1rem;
}

.tool-section-title {
	text-align: center;
	margin-bottom: 1.5rem;
	font-size: 1.6rem;
	color: var(--accent);
}

.tool-card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.5rem;
	justify-items: stretch;
}

.tool-card {
	background: var(--card-bg);
	border-radius: 8px;
	padding: 1rem;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tool-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 6px 16px rgba(0, 174, 239, 0.25);
}

.tool-card h3 {
	margin-top: 0;
	color: var(--text);
	font-size: 1.1rem;
}

.tool-card p {
	color: var(--text-muted);
	margin: 0.5rem 0 1rem;
	font-size: 0.95rem;
}

.tool-link {
	color: var(--accent);
	font-weight: bold;
	text-decoration: none;
}

.tool-link:hover {
	text-decoration: underline;
}