/* ==========================================================================
   BREADCRUMB - Navegación de migas de pan en páginas interiores
   ========================================================================== */

/* ----------------------------------------------------------------------------
   Estilos base (móvil primero)
   ---------------------------------------------------------------------------- */

#breadCrumb {
	padding: 30px 15px 0;
}
#breadCrumb ol {
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	margin: 0;
	list-style-type: none;
}
#breadCrumb ol > li {
	display: flex;
	align-items: center;
	font-size: 1rem;
	color: #00181a;
	font-weight: 600;
	line-height: 1.5rem;
}
#breadCrumb ol > li::after {
	content: "/";
	display: inline-block;
	margin: 0 16px;
	font-size: 1.1875rem;
	color: #7E7E7E;
	font-weight: 400;
}
#breadCrumb ol > li:last-child::after {
	display: none;
}
#breadCrumb ol > li a {
	color: #7E7E7E;
	font-weight: 400;
	text-decoration: none;
	transition: color 0.3s ease-in-out;
}
#breadCrumb ol > li a:hover {
	color: #00181a;
	text-decoration: none;
}

/* ----------------------------------------------------------------------------
   Desktop (992px - 1920px)
   ---------------------------------------------------------------------------- */

@media (min-width: 992px) {
	#breadCrumb {
		padding: 48px 64px 0;
	}
}

/* ----------------------------------------------------------------------------
   Desktop compacto (992px - 1365px)
   Ajuste fiel a la maqueta del maquetador
   ---------------------------------------------------------------------------- */

@media (min-width: 992px) and (max-width: 1365px) {
	#breadCrumb {
		padding: 40px 24px 0;
	}
}

/* ----------------------------------------------------------------------------
   Desktop Grande (>1920px)
   ---------------------------------------------------------------------------- */

@media (min-width: 1921px) {
	#breadCrumb {
		padding: 48px 64px 0;
	}
}
