		/* Basic breadcrumb styling */
		.breadcrumb {
		   font-family: Arial, sans-serif;
		   font-size: 14px;
		   background-color: #FCB42D;
		   padding: 16px 0;
		}

		.breadcrumb ol {
		   list-style: none;
		   display: flex;
		   flex-wrap: wrap;
		   padding: 0;
		   margin: 0;
		}

		.breadcrumb li {
		   display: flex;
		   align-items: center;
		}

		/* Separator using pseudo-element */
		.breadcrumb li+li::before {
		   content: "›";
		   color: #fff;
		   margin: 0 8px;
		}

		/* Links styling */
		.breadcrumb a {
		   text-decoration: none;
		   color: #0073e6;
		}

		.breadcrumb a:hover {
		   text-decoration: underline;
		}

		/* Current page styling */
		.breadcrumb li[aria-current="page"] {
		   color: #fff;

		}

		/* Responsive: truncate long text */
		.breadcrumb li {
		   max-width: 150px;
		   white-space: nowrap;
		   overflow: hidden;
		   text-overflow: ellipsis;
		}