.thought-balloon {
  width: 100%;  
  border-radius: 0 0 60px 60px;
}
.thought-balloon * {
  margin: 0;
  padding: 0;
  line-height: 0;
}
.thought-balloon__container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-around;
}
.thought-balloon__text * {
  line-height: 1.50;
}

{# ---- Tablet Breakpoint ---- #}
@media (max-width: 992px) {
  .thought-balloon {
    border-radius: 0 0 40px 40px;
  }
  .thought-balloon__container {
    flex-direction: column;
  }
  .thought-balloon__image,
  .thought-balloon__text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

{# ---- Mobile Breakpoint ---- #}
@media (max-width: 765px) {
  .thought-balloon__image img {
    width: 100% !important;
    max-width: 200px !important;
    height: auto !important;
  }
}