.board-footer-info {
	margin: 15px 0;
}

.board-footer-head {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 2px;
	font-size: 1.5em;
	font-weight: 700;
	color: #2f4f7f;
	background: #ececec;
	border: 1px solid #d8d8d8;
	border-bottom: 0;
	border-radius: 7px 7px 0 0;
}

.board-footer-head i {
	font-size: 15px;
	margin-left: 15px;
}

.board-footer-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	padding: 10px;
	background: #f5f5f5;
	border: 1px solid #d8d8d8;
	border-top: 0;
	border-radius: 0 0 7px 7px;
}

.board-footer-item {
	text-align: center;
	padding: 16px;
	border-radius: 6px;
	background: #ffffff;
	border: 1px solid #e2e2e2;
}

.board-footer-item:hover {
	background: #fafafa;
}

.board-footer-icon {
	margin-bottom: 10px;
	font-size: 20px;
	color: #4c6a92;
}

.board-footer-content span {
	display: block;
	margin-bottom: 6px;
	font-size: 1.2em;
	letter-spacing: .04em;
	color: #777;
	font-weight: bolder;
}

.board-footer-content strong {
	display: block;
	font-size: 1.08em;
	font-weight: 700;
	line-height: 1.4;
	color: #2f4f7f;
}

.board-footer-system {
	grid-column: 1 / -1;
	margin-top: 2px;
	padding: 10px 15px;
	text-align: center;
	font-size: 1.2em;
	font-weight: 600;
	color: #777;
	background: #ffffff;
	border: 1px solid #e2e2e2;
	border-radius: 6px;
}

.board-footer-system strong {
	font-size: 1.08em;
	font-weight: 700;
	line-height: 1.4;
	color: #2f4f7f;
}

.board-footer-php {
	margin-left: 50px;
}

@media screen and (max-width: 900px) {

	.board-footer-grid {
		grid-template-columns: 1fr;
	}

	.board-footer-head {
		justify-content: center;
		text-align: center;
	}

	.board-footer-phpbb,
	.board-footer-php {
		display: block;
	}

	.board-footer-php {
		margin-top: 6px;
		margin-left: 0;
	}
}