
.roy-talk {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 28px 0;
}

.roy-talk::before {
  content: "";
  flex: 0 0 68px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background-image: url("../images/roy-avatar.png");
  background-size: cover;
  background-position: center;
  border: 2px solid #ead9a4;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.roy-bubble {
  position: relative;
  max-width: 720px;
  padding: 15px 18px 14px;
  background: #fff8dc;
  border: 1px solid #ead9a4;
  border-radius: 18px;
  line-height: 1.8;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.roy-bubble::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 23px;
  width: 17px;
  height: 17px;
  background: #fff8dc;
  border-left: 1px solid #ead9a4;
  border-bottom: 1px solid #ead9a4;
  transform: rotate(45deg);
}

.roy-name {
  display: block;
  margin-bottom: 3px;
  color: #6b5a37;
  font-size: .9em;
  font-weight: 700;
  line-height: 1.4;
}

.roy-bubble p {
  margin: 0;
}

@media (max-width: 600px) {
  .roy-talk {
    gap: 10px;
    margin: 22px 0;
  }

  .roy-talk::before {
    flex-basis: 52px;
    width: 52px;
    height: 52px;
  }

  .roy-bubble {
    padding: 12px 14px;
    border-radius: 15px;
    line-height: 1.75;
  }

  .roy-bubble::before {
    left: -7px;
    top: 18px;
    width: 13px;
    height: 13px;
  }
}
