/* =========================================================
   ARCHIVE / SEARCH PAGE TITLEBAR
   File: assets/css/page-titlebar.css
   -----------------------------------------------------------
   Restored GeneratePress page title, styled: bold navy title
   on the left, a solid-navy breadcrumb pill on the right,
   thin navy rule underneath spanning the full width.
   Used only on archive/search pages — see PART D3 in
   functions.php (endo_render_archive_titlebar).
   ========================================================= */

.endo-page-titlebar{
	width: 100%;
	box-sizing: border-box;
}

.endo-page-titlebar-inner{
	max-width: 1400px;
	margin: 0 auto;
	padding: 26px 20px;
	background: #FFFFFF;
	border-bottom: 3px solid var(--endo-navy);
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.endo-page-titlebar-title{
	font-size: 30px;
	font-weight: 800;
	color: var(--endo-navy);
	margin: 0;
	line-height: 1.3;
}

.endo-page-titlebar-breadcrumb{
	flex: 0 0 auto;
}

.endo-page-titlebar-breadcrumb-inner{
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--endo-navy);
	color: #FFFFFF;
	font-size: 14px;
	font-weight: 500;
	padding: 13px 26px;
	border-radius: 4px;
	white-space: nowrap;
}

.endo-page-titlebar-breadcrumb-inner i{
	font-size: 13px;
	color: #FFFFFF;
}

.endo-page-titlebar-breadcrumb-inner a{
	color: #FFFFFF;
	text-decoration: none;
}

.endo-page-titlebar-breadcrumb-inner a:hover{
	text-decoration: underline;
}

/* -------------------- Responsive -------------------- */
@media (max-width: 767px){
	.endo-page-titlebar-inner{
		flex-direction: column;
		align-items: flex-start;
		padding: 22px 20px;
		gap: 14px;
	}

	.endo-page-titlebar-title{
		font-size: 24px;
	}

	.endo-page-titlebar-breadcrumb{
		width: 100%;
	}

	.endo-page-titlebar-breadcrumb-inner{
		width: 100%;
		box-sizing: border-box;
		white-space: normal;
	}
}
