pn-button-dropdown .pn-button-dropdown > pn-button > .pn-button {
  min-height: initial;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
@media screen and (max-width: 767px) {
  .sr-only-mobile {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }
}

pn-share-item .pn-share-item__container {
  padding: 0.3rem 0.6rem;
  border: 1px solid #d3cecb;
  border-radius: 0.8rem;
  background-color: #ffffff;
  transition: background-color ease-in-out 0.3s;
  width: fit-content;
}
pn-share-item a {
  text-decoration: none;
  color: #005d92;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  font-weight: 400;
}
pn-share-item [slot=icon] svg {
  height: 1.6rem;
  width: 1.6rem;
}
pn-share-item [slot=icon] svg path {
  fill: #005d92;
  transition: fill 0.3s;
}
pn-share-item:hover {
  cursor: pointer;
}
pn-share-item:hover .pn-share-item__container {
  background-color: #0d234b;
}
pn-share-item:hover a {
  color: #ffffff;
  text-decoration: none;
}
pn-share-item:hover [slot=icon] svg {
  fill: #0d234b;
}
pn-share-item:hover [slot=icon] svg path {
  fill: #ffffff;
}