.entry-content + .post-share-wrap {
  margin-top: 2rem;
}

.post-share-wrap {
  position: relative;
  display: inline-flex;
  margin-left: auto;
}

.post-share__menu {
  position: absolute;
  left: 0;
  z-index: 100;
  display: flex;
  gap: 0.15rem;
  touch-action: manipulation;
  margin: 0;
  padding: 0.35rem;
  min-width: unset;
  font-size: 0.9em;
  line-height: 1;
  color: #fff;
  background: #000;
  border: 1px solid #000;
  border-radius: 999em;
}

.post-share__menu[hidden] {
  display: none;
  animation: none;
}

.post-share__menu--below {
  top: calc(100% + 0.6rem);
  bottom: auto;
}

.post-share__menu--above {
  top: auto;
  bottom: calc(100% + 0.6rem);
}

.post-share__menu--below.post-share__menu--enter:not([hidden]):not(.post-share__menu--closing) {
  animation: post-share-menu-in-below 0.2s ease-out both;
}

.post-share__menu--above.post-share__menu--enter:not([hidden]):not(.post-share__menu--closing) {
  animation: post-share-menu-in-above 0.2s ease-out both;
}

.post-share__menu--below.post-share__menu--closing {
  animation: post-share-menu-out-below 0.2s ease-in both;
}

.post-share__menu--above.post-share__menu--closing {
  animation: post-share-menu-out-above 0.2s ease-in both;
}

@keyframes post-share-menu-in-below {
  from {
    opacity: 0;
    transform: translateY(-7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes post-share-menu-in-above {
  from {
    opacity: 0;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes post-share-menu-out-below {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-7px);
  }
}

@keyframes post-share-menu-out-above {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(7px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .post-share__menu--below.post-share__menu--enter:not([hidden]):not(.post-share__menu--closing),
.post-share__menu--above.post-share__menu--enter:not([hidden]):not(.post-share__menu--closing),
.post-share__menu--closing {
    animation: none;
  }
}

html.high-contrast .post-share__menu {
  border-color: #fff;
}

.post-share-wrap:not(:has(.post-share--with-text)) .post-share__menu {
  left: -10px;
  flex-direction: column;
}

@media (max-width: 768px) {
  .post-share-wrap:not(:has(.post-share--with-text)) .post-share__menu {
    left: -14px;
  }
  /*     
    &.post-share__menu--below {
      border-top-right-radius: 0;
    }

    &.post-share__menu--above {
      border-bottom-right-radius: 0;
    } */
}

.post-share-wrap:not(:has(.post-share--with-text)) .post-share__menu--below {
  top: calc(100% + 0.7rem);
}

.post-share-wrap:not(:has(.post-share--with-text)) .post-share__menu--above {
  bottom: calc(100% + 0.7rem);
}

.post-share-wrap:has(.post-share--with-text) .post-share__menu {
  flex-direction: row;
  padding-left: 0.75em;
  padding-right: 0.75em;
}

.post-share__menu-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-sizing: border-box;
  width: 2.35em;
  height: 2.35em;
  min-width: 2.35em;
  min-height: 2.35em;
  padding: 0;
  margin: 0;
  line-height: 0;
  font: inherit;
  font-size: inherit;
  color: #fff;
  text-decoration: none;
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.post-share__menu-item:hover, .post-share__menu-item:focus-visible {
  background: transparent;
  color: var(--link-hover);
  outline: none;
}

@media (pointer: coarse) {
  .post-share__menu {
    gap: 0.1rem;
  }

  .post-share__menu-item {
    width: 2.75em;
    height: 2.75em;
    min-width: 44px;
    min-height: 44px;
  }
}

.post-share__menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.post-share__menu-icon .post-share__svg {
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.post-share__menu-item--brand .post-share__svg--brand {
  fill: currentColor;
  stroke: none;
}

.post-share__svg--stroke {
  fill: none;
  stroke: currentColor;
}

.post-share {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  gap: 0;
  width: 2em;
  height: 2em;
  padding: 0;
  font: inherit;
  font-size: 0.85em;
  line-height: 1;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.post-share:hover, .post-share:focus-visible {
  background: currentColor;
}

.post-share:hover .post-share__icon, .post-share:focus-visible .post-share__icon {
  color: var(--bg, #fff);
}

.post-share:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.post-share:active {
  transform: translateY(1px);
}

.post-share[aria-expanded=true] {
  background: currentColor;
}

.post-share[aria-expanded=true] .post-share__icon {
  color: var(--bg, #fff);
}

.post-share--with-text[aria-expanded=true] .post-share__label {
  color: var(--bg, #fff);
}

.post-share__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.post-share__icon svg {
  margin-left: -1.5px;
  width: 0.9em;
  height: 0.9em;
  display: block;
}

.post-share__icon, .post-share__label, .post-share__feedback {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.post-share:not(.post-share--with-text) .post-share__feedback {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.6rem);
  transform: translate(-50%, 0.25em);
  white-space: nowrap;
  padding: 0.35em 0.6em;
  border-radius: 999em;
  border: 1px solid currentColor;
  background: var(--bg, #fff);
  color: var(--fg, #000);
  font-family: "Roboto", sans-serif;
  font-size: 0.85em;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  z-index: 5;
}

.post-share:not(.post-share--with-text).is-copied .post-share__feedback {
  opacity: 1;
  transform: translate(-50%, 0);
}

.post-share--with-text {
  justify-content: flex-start;
  gap: 0.7em;
  width: auto;
  height: 44.8px;
  padding: 0 1.55em !important;
  border-radius: 999em;
}

.post-share--with-text .post-share__icon svg {
  width: 0.9em;
  height: 0.9em;
}

.post-share--with-text .post-share__label {
  display: inline;
  font: var(--button-font) !important;
  font-weight: 400;
  font-style: normal;
}

.post-share--with-text:hover .post-share__label, .post-share--with-text:focus-visible .post-share__label {
  color: var(--bg, #fff);
}
