/* --- Align logo and menu horizontally --- */
.pkp_head_wrapper {
	display: flex;
	align-items: center; /* vertically centers logo and menu */
	justify-content: space-between; /* puts logo on left, menu on right */
	padding: 5px 7px;
}

/* Optional: limit logo size for better fit */
.pkp_site_name_wrapper img {
	max-height: 40px;
	width: auto;
}

/* Keep menu aligned and prevent wrapping */
.pkp_site_nav_menu {
	display: flex;
	align-items: center;
	gap: 20px;
}

/* Adjust user menu and search alignment */
.pkp_navigation_primary_wrapper {
	display: flex;
	align-items: center;
	gap: 15px;
}


@media (max-width: 768px) {
	.pkp_head_wrapper {
		flex-direction: column;
		align-items: flex-start;
	}
	.pkp_site_nav_menu {
		width: 80%;
		justify-content: flex-start;
	}
}