/* Speech Bubble Block Styles */

.speech-bubble-block {
  padding: 0;
  margin: 40px 0;
}

.speech-bubble-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 100%;
}

.speech-bubble-header {
  display: flex;
  gap: 12px;
  align-items: center;
}

.speech-bubble-avatar {
  position: relative;
  flex-shrink: 0;
  width: 6.4rem;
  height: 6.4rem;
}

.speech-bubble-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 !important;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

.speech-bubble-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 12px;
  color: #999;
  text-align: center;
  background: #f5f5f5;
  border: 2px dashed #ddd;
  border-radius: 50%;
}

.speech-bubble-name {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.2;
  color: #000;
}

.speech-bubble-text {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.speech-bubble-message::before {
  position: absolute;
  top: -4px !important;
  left: 32px;
  box-sizing: border-box;
  width: 10px;
  height: 10px;
  content: "";
  background-color: #fff;
  rotate: 315deg;
  translate: -50%;
}

.speech-bubble-message::after {
  position: absolute;
  top: -5px !important;
  left: 32px;
  z-index: -1;
  box-sizing: border-box;
  width: 10px;
  height: 10px;
  content: "";
  background-color: #fff;
  border: 1px solid;
  border-color: #ccc #ccc transparent transparent;
  rotate: 315deg;
  translate: -50%;
}

.wp-block-custom-speech-bubble .speech-bubble-message::before {
  position: absolute;
  top: -4px !important;
  left: 32px;
  box-sizing: border-box;
  width: 10px;
  height: 10px;
  content: "";
  background-color: #fff;
  rotate: 315deg;
  translate: -50%;
}

.wp-block-custom-speech-bubble .speech-bubble-message::after {
  position: absolute;
  top: -5px !important;
  left: 32px;
  z-index: -1;
  box-sizing: border-box;
  width: 10px;
  height: 10px;
  content: "";
  background-color: #fff;
  border: 1px solid;
  border-color: #ccc #ccc transparent transparent;
  rotate: 315deg;
  translate: -50%;
}

/* Editor specific styles - using data attribute instead of class */
[class*="block-editor"] .speech-bubble-message::before {
  top: -9px !important;
}

[class*="block-editor"] .speech-bubble-message::after {
  top: -10px !important;
}

.speech-bubble-message {
  position: relative;
  min-height: 60px;
  padding: 32px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #000;
  overflow-wrap: break-word;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 12px;
}

.speech-bubble-message p {
  margin: 0 0 16px;
}

.speech-bubble-message p:last-child {
  margin-bottom: 0;
}

.speech-bubble-message strong {
  font-weight: bold;
}

.speech-bubble-message em {
  font-style: italic;
}

.speech-bubble-message a {
  color: #22a699;
  text-decoration: underline;
}

.speech-bubble-message a:hover {
  opacity: 0.8;
}

/* Two column layout support */
.wp-block-columns .speech-bubble-block {
  margin: 20px 0;
}

.wp-block-columns .speech-bubble-avatar {
  width: 6rem;
  height: 6rem;
}

.wp-block-columns .speech-bubble-name {
  margin-bottom: 6px;
  font-size: 1.2rem;
}

.wp-block-columns .speech-bubble-message {
  min-height: 50px;
  padding: 12px 16px;
  font-size: 1.2rem;
}

.wp-block-columns .speech-bubble-arrow {
  top: 12px;
}

/* Mobile responsive */
@media (width <= 768px) {
  .speech-bubble-container {
    gap: 12px;
  }

  .speech-bubble-avatar {
    width: 6rem;
    height: 6rem;
  }

  .speech-bubble-name {
    margin-bottom: 6px;
    font-size: 1.2rem;
  }

  .speech-bubble-message {
    min-height: 50px;
    padding: 12px 16px;
    font-size: 1.2rem;
  }

  .speech-bubble-arrow {
    top: 12px;
    left: -6px;
    border-top-width: 6px;
    border-right-width: 6px;
    border-bottom-width: 6px;
  }

  .wp-block-columns .speech-bubble-avatar {
    width: 5rem;
    height: 5rem;
  }

  .wp-block-columns .speech-bubble-name {
    font-size: 1.1rem;
  }

  .wp-block-columns .speech-bubble-message {
    min-height: 40px;
    padding: 10px 12px;
    font-size: 1.1rem;
  }

  .wp-block-columns .speech-bubble-arrow {
    top: 10px;
  }
}
