.top-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 8px;
}

.top-nav a {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 8px 11px;
	border: 1px solid #d6d3d1;
	border-radius: 8px;
	color: #334155;
	font-size: 14px;
	font-weight: 700;
}

.top-nav a:hover, .entry-card:hover, .footer-links a:hover {
	color: #0f766e;
}

.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 4px;
	width: 40px;
	height: 36px;
	justify-content: center;
	align-items: center;
	border: 1px solid #d6d3d1;
	border-radius: 8px;
	background: white;
}

.menu-toggle span {
	width: 22px;
	height: 2px;
	background: #0f172a;
}

.menu-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	width: 100%;
	height: 100%;
	padding-top: 82px;
	background-color: rgba(0, 0, 0, 0.25);
}

.menu-overlay.active {
	display: block;
}

.menu {
	width: min(320px, 90vw);
	background: #3498db;
}

.menu-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.menu-list a {
	display: block;
	padding: 1rem;
	color: white;
	text-align: center;
	border-bottom: 1px solid #2980b9;
}