@media screen and (max-width: 1024px) {
  .breadcrumb-wrapper > div {
    flex-direction: column;
    justify-content: center;
	text-align: center;
  }
}

.breadcrumb-wrapper .breadcrumb-item a {
  font-size: var(--wp--preset--font-size--12);
  font-weight: 400;
  transition: 0.2s ease-in;
}

.breadcrumb-wrapper .breadcrumb-item a:hover {
  text-decoration: none;
}

.lc-access-toolbar {
  display: inline-flex;
  gap: 0.75rem;
  align-items: center;
}

.lc-access-group {
  display: inline-flex;
  border: 1px solid #d7d7d7;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #fff;
}

.lc-btn {
  appearance: none;
  border: 0;
  background: #fff;
  color: var(--wp--preset--color--dark-blue);
  padding: 0 6px;
  line-height: 1;
  font-size: 14px;
  cursor: pointer;
  border-right: 1px solid #e6e6e6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 1.6rem;
}

.lc-btn:last-child {
  border-right: 0;
}

.lc-btn:hover {
  background: #f6f6f6;
}

.lc-btn:focus-visible {
  outline: 2px solid #0a66c2;
  outline-offset: 2px;
}

/* Icônes */
.lc-icon {
  width: 18px;
  height: 18px;
  display: block;
  opacity: 0.65;
  transition: opacity 0.2s ease-in-out;
}

/* Effet hover global sur les icônes */
.lc-btn:hover .lc-icon,
.lc-btn:focus-visible .lc-icon {
  opacity: 0.95;
}

/* ======================================================
       Exception : premier bouton (ex : partage / share)
       ====================================================== */
.lc-access-toolbar .lc-access-group:nth-child(2) .lc-btn:first-child {
  cursor: default;
  transition: none;
}

.lc-access-toolbar .lc-access-group:nth-child(2) .lc-btn:first-child:hover,
.lc-access-toolbar
  .lc-access-group:nth-child(2)
  .lc-btn:first-child:focus-visible {
  background: #fff;
}

.lc-access-toolbar .lc-access-group:nth-child(2) .lc-btn:first-child .lc-icon {
  opacity: 0.65 !important;
  transition: none !important;
}
