/* Hide the PSF logo image and the "Python" home link in the breadcrumb */
img[alt="Python logo"],
a[href*="python.org"] { display: none !important; }

/* Optional: also hide the leftover separator right after that link */
a[href*="python.org"] + * { display: none !important; }

/* hide theme's logo img and show our favicon instead */
.nav-logo img {
  display: none !important;
}

/* replace the hidden img with a background image using your favicon (png recommended) */
.nav-logo {
  display: inline-block !important;
  width: 36px;       /* adjust size as needed */
  height: 36px;
  background: url("_static/favicon.png") center/contain no-repeat !important;
  background-size: contain !important;
}