/* Icon box styling adapted from old_style.css */
.main-icons-grid .main-logo {
	/*filter: invert(1);*/
	max-width: 80%;
	max-height: 80%;
	height: auto;
	margin: auto;
	display: block;
}
.main-icon-box {
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--color-dark-bg, #f7faff);
	border-radius: 16px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.07);
	padding: 0;
	width: 150px;
	height: 150px;
	margin: 0 0.5rem;
	min-height: 0;
	min-width: 0;
	box-sizing: border-box;
}
.main-icon-box:hover {
	box-shadow: 0 4px 16px rgba(0,119,255,0.13);
	transform: translateY(-4px) scale(1.04);
}
/* Grid for main icons on homepage */
.main-icons-grid {
	display: grid;
	grid-template-rows: repeat(2, 1fr);
	grid-auto-flow: column;
	grid-auto-columns: 1fr;
	gap: 2rem;
	justify-items: center;
	align-items: stretch;
	width: 100%;
}
