/*
 * Metro Metrobús (mmbus) — styles on top of GeneratePress.
 * Enqueued by mmbus_enqueue_assets() (inc/assets.php).
 *
 * Ports the look the site had on the previous theme (Innovatory + Customizer
 * CSS): no visible site header, no post meta, and the right sidebar turned
 * into a fixed 50px bar at the bottom that holds the Advanced Ads footer
 * sticky widget.
 */

:root {
	--mmbus-bottom-bar: 50px;
}

/* Header hidden, as before. */
.site-header,
.main-navigation.mobile-header-navigation {
	display: none !important;
}

.menu-toggle {
	margin: 0 !important;
}

/* Post meta (date / author) hidden in lists and single posts. */
.entry-meta {
	display: none;
}

/* Room for the bottom bar. */
.site-content {
	margin-bottom: calc( var(--mmbus-bottom-bar) - 10px );
}

/* Right sidebar → fixed bottom bar (holds the sticky ad widget). */
#right-sidebar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: var(--mmbus-bottom-bar);
	background: #fff;
	z-index: 100;
}

#right-sidebar .inside-right-sidebar {
	margin: 0;
}

#right-sidebar .widget {
	padding: 0 !important;
	margin-bottom: 0 !important;
	max-height: 60px !important;
}

/* Footer hidden, as before. */
.site-footer {
	display: none;
}

/* Footer menu (rendered by mmbus_footer_menu, only visible if the footer is shown). */
.mmbus-footer-menu ul {
	list-style: none;
	margin: 0 0 0.5em;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 1em;
	justify-content: center;
}
