.certifications {
	background: #f5f7f9;
	padding: 80px 0;
}

.certifications__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.certifications__eyebrow {
	display: block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #4caf50;
	margin-bottom: 10px;
	text-align: center;
}

.certifications__title {
	font-size: 34px;
	line-height: 1.25;
	color: #1a2530;
	margin: 0 0 12px;
	text-align: center;
}

.certifications__subtitle {
	font-size: 16px;
	line-height: 1.7;
	color: #5b6b78;
	max-width: 760px;
	margin: 0 auto 48px;
	text-align: center;
}

.certifications__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.certifications__card {
	background: #fff;
	border: 1px solid #e6eaef;
	border-radius: 14px;
	padding: 16px 16px 24px;
	text-align: center;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.certifications__card:hover {
	transform: translateY(-6px);
	box-shadow: 0 14px 30px rgba(26, 37, 48, .08);
	border-color: #4caf50;
}

.certifications__media {
	position: relative;
	aspect-ratio: 4 / 5;
	background: #f0f3f6;
	border: 1px solid #e6eaef;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	overflow: hidden;
}

.certifications__media i {
	font-size: 52px;
	color: #c3cdd6;
}

.certifications__media img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 14px;
}

.certifications__name {
	font-size: 18px;
	font-weight: 700;
	color: #1a2530;
	margin: 0 0 6px;
}

.certifications__desc {
	font-size: 14px;
	line-height: 1.6;
	color: #5b6b78;
	margin: 0;
}

@media (max-width: 1024px) {
	.certifications {
		padding: 64px 0;
	}

	.certifications__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.certifications {
		padding: 48px 0;
	}

	.certifications__title {
		font-size: 26px;
	}

	.certifications__subtitle {
		font-size: 14px;
		margin-bottom: 32px;
	}

	.certifications__grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.certifications__card {
		padding: 12px 12px 20px;
	}
}
