body {
  background-color: #FEFEFE;
  font-family: Inter, "Helvetica Neue", BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif; /* Set the font family */;
	font-size:1rem;
	font-weight:400;
}

h1 {
  color: #444;
  font-size:1.5rem;
}
a { color:blue; }
p { font-family: 'Inter', sans-serif; font-size:1rem; color:#000;}

/* BREADCRUMBS */
/* Container for the breadcrumbs */
#block-immature-breadcrumbs {
  max-width: 800px;
  margin: 20px auto 0; /* Align with the article container */
  padding: 0 20px;
  font-family: 'Segoe UI', 'Roboto', sans-serif;
  font-size: 0.9em;
}

/* Hide the visually-hidden heading */
#block-immature-breadcrumbs .visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* Style the ordered list to be horizontal */
#block-immature-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Style the list items */
#block-immature-breadcrumbs li {
  display: flex;
  align-items: center;
  color: #666;
}

/* Add a separator between list items */
#block-immature-breadcrumbs li:not(:last-child)::after {
  content: '/';
  margin: 0 8px;
  color: #ccc;
}

/* Style the breadcrumb links */
#block-immature-breadcrumbs a {
  text-decoration: none;
  color: #007bff;
  transition: color 0.3s ease;
}

/* Hover effect for links */
#block-immature-breadcrumbs a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Style for the current page (last item) */
#block-immature-breadcrumbs li:last-child {
  color: #333;
  font-weight: 500;
}

#block-immature-breadcrumbs li:last-child a {
  pointer-events: none; /* Disable clicking on the current page link */
  text-decoration: none;
  color: #333;
}