.real-mentor-page .six-main {
  display: grid;
  gap: 18px;
}
.mentor-safety,
.mentor-next-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}
.mentor-safety {
  padding: 12px 14px;
  color: #34514a;
  background: #effcf6;
  font-weight: 800;
  line-height: 1.45;
}
.mentor-next-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  background: linear-gradient(135deg, #ffffff, #eef7ff);
}
.mentor-next-card h2,
.mentor-next-card p {
  margin: 0;
}
.mentor-next-card p {
  color: var(--muted);
}
.real-chat-panel {
  min-height: 560px;
  max-height: none;
}
.real-chat-panel .message p {
  white-space: normal;
}
.real-mentor-input {
  grid-template-columns: minmax(0, 1fr) 48px;
}
.real-mentor-input textarea {
  min-height: 64px;
  max-height: 150px;
  resize: vertical;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  line-height: 1.45;
}
.real-support-grid .support-card {
  align-items: start;
  min-height: 92px;
}
.real-tool-card {
  cursor: pointer;
}
.real-tool-card:hover,
.mentor-chips button:hover,
.topic-row:hover,
.history-row:hover {
  border-color: #c9d7ff;
  background: #f8fbff;
}
.mentor-profile .link-button {
  justify-self: end;
}
@media (max-width: 760px) {
  .mentor-next-card {
    align-items: stretch;
    flex-direction: column;
  }
  .mentor-next-card .primary-button {
    width: 100%;
  }
  .real-mentor-input {
    grid-template-columns: 1fr;
  }
}
