/* Menu Doorway — front-end icon grid */
.md-doorway-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 16px;
	margin: 28px 0;
}

.md-tile {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	text-decoration: none;
	padding: 20px 12px;
	border: 1px solid #ecebe7;
	border-radius: 16px;
	background: #fff;
	transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.md-tile:hover,
.md-tile:focus {
	transform: translateY(-3px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
	border-color: #ddd9d2;
}

.md-tile__icon {
	width: 76px;
	height: 76px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
	flex: none;
}

.md-tile__icon svg {
	width: 54px;
	height: 54px;
	display: block;
}

.md-tile__label {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
	color: #1d1d1f;
}

@media (max-width: 480px) {
	.md-doorway-grid {
		grid-template-columns: repeat(auto-fill, minmax(108px, 1fr));
		gap: 12px;
	}
	.md-tile { padding: 14px 8px; }
	.md-tile__icon { width: 62px; height: 62px; border-radius: 16px; }
	.md-tile__icon svg { width: 44px; height: 44px; }
	.md-tile__label { font-size: 13px; }
}
