/* Talk Bubble Component - Shared across blog pages */
.talk-bubble {
  display: inline-block;
  position: relative;
  background-color: white;
  border: 4px solid black;
  border-radius: 30px;
}

.talk-bubble:before,
.talk-bubble:after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  z-index: 1;
}

.talk-bubble.tri-right.btm-left-in:before {
  left: 23px;
  right: auto;
  top: auto;
  bottom: -24px;
  border: 10px solid;
  border-color: black transparent transparent black;
}

.talk-bubble.tri-right.btm-left-in:after {
  left: 26px;
  right: auto;
  top: auto;
  bottom: -15px;
  border: 10px solid;
  border-color: white transparent transparent white;
}

@media (max-width: 768px) {
  .talk-bubble:before {
    left: 10px;
  }
  .talk-bubble:after {
    left: 8px;
  }
}

.logo-bubble {
  padding: 0.375rem 1rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
