.bbae-article-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 24px 0;
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

.entry-content > .bbae-article-tools:first-child {
  margin-top: -42px;
  margin-bottom: 40px;
}

@supports not selector(:has(*)) {
  .entry-content > .bbae-article-tools:first-child {
    margin-top: 0;
  }

  .et_pb_post:has(.entry-content > .bbae-article-tools:first-child)
    .entry-content {
    padding-top: 0;
  }

  .et_pb_post:has(.entry-content > .bbae-article-tools:first-child) .post-meta {
    margin-bottom: 0;
    padding-bottom: 9px !important;
  }
}

.et_post_meta_wrapper .bbae-article-tools-bottom {
  margin-top: 40px;
}

.bbae-reading-time {
  display: flex;
  align-items: center;
}

.bbae-divider {
  color: #b5b5b5;
}

.bbae-share-button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;

  cursor: pointer;
}

.bbae-share-button:hover {
  color: #000;
}

.bbae-share-button:focus {
  outline: none;
}

.bbae-share-button:focus-visible {
  outline: 2px solid #666;
  outline-offset: 3px;
}
.bbae-icon {
  width: 16px;
  height: 16px;

  margin-right: 6px;

  flex-shrink: 0;
}

.bbae-reading-time,
.bbae-share-button {
  display: inline-flex;
  align-items: center;
}

.bbae-share-button {
  transition: color 0.2s ease;
}

.bbae-share-button:hover {
  color: #1c4d8c;
}

.bbae-divider {
  margin: 0 2px;

  color: #c7c7c7;
}
/* Toast notification */

.bbae-toast {
  position: fixed;

  left: 50%;
  bottom: 28px;

  transform: translateX(-50%) translateY(20px);

  background: #222;
  color: #fff;

  padding: 12px 18px;

  border-radius: 8px;

  font-size: 14px;
  line-height: 1.4;

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);

  opacity: 0;

  pointer-events: none;

  transition:
    opacity 0.2s ease,
    transform 0.2s ease;

  z-index: 999999;
}

.bbae-toast.is-visible {
  opacity: 1;

  transform: translateX(-50%) translateY(0);
}
