.swad-moru-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  margin: 1.6em 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-sizing: border-box;
}

.swad-moru-character {
  flex: 0 0 90px;
  width: 90px;
  text-align: center;
}

.swad-moru-image {
  display: block;
  width: 90px !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  object-fit: contain;
}

.swad-moru-name {
  display: block;
  margin-top: 3px;
  color: #38545f;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.swad-moru-bubble {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  margin-top: 4px;
  padding: 14px 16px;
  border: 1px solid #b9e2f3;
  border-radius: 12px;
  background: #edf9fe;
  color: #26383f;
  font-size: 16px;
  line-height: 1.8;
  box-sizing: border-box;
}

.swad-moru-bubble::before,
.swad-moru-bubble::after {
  position: absolute;
  top: 25px;
  width: 0;
  height: 0;
  content: "";
}

.swad-moru-bubble::before {
  left: -11px;
  border-top: 9px solid transparent;
  border-right: 11px solid #b9e2f3;
  border-bottom: 9px solid transparent;
}

.swad-moru-bubble::after {
  left: -9px;
  border-top: 8px solid transparent;
  border-right: 10px solid #edf9fe;
  border-bottom: 8px solid transparent;
}

.swad-moru-bubble > :first-child {
  margin-top: 0;
}

.swad-moru-bubble > :last-child {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .swad-moru-box {
    gap: 8px;
    margin: 1.35em 0;
  }

  .swad-moru-character {
    flex-basis: 76px;
    width: 76px;
  }

  .swad-moru-image {
    width: 76px !important;
  }

  .swad-moru-name {
    font-size: 11px;
  }

  .swad-moru-bubble {
    margin-top: 2px;
    padding: 12px 13px;
    border-radius: 10px;
    font-size: 15px;
    line-height: 1.75;
  }

  .swad-moru-bubble::before,
  .swad-moru-bubble::after {
    top: 21px;
  }
}

