.skills-grid {
	margin-top: 30px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.skill-card {
	padding: 7.5px;
	background: #fff;
	border-radius: 4px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.skill-card:hover {
	transform: translateY(-2.5px);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.skill-logo-wrapper {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 5px;
}

.skill-logo-img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	border-radius: 2px;
}

.skill-logo-placeholder {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.skill-name {
	font-size: 10px;
	font-weight: 500;
	color: #333;
	word-break: break-word;
}

@media (min-width: 1200px) {
	.skills-grid .col-lg-2 {
		flex: 0 0 16.666667%;
		max-width: 16.666667%;
	}
}

@media (min-width: 768px) and (max-width: 1199px) {
	.skills-grid .col-md-2 {
		flex: 0 0 16.666667%;
		max-width: 16.666667%;
	}
}

@media (min-width: 576px) and (max-width: 767px) {
	.skills-grid .col-sm-2 {
		flex: 0 0 16.666667%;
		max-width: 16.666667%;
	}
}

