.rag {
  background: var(--bg-2);
}

.rag__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.rag__points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.rag__point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.rag__point-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(198, 240, 0, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.rag__point h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 3px;
}

.rag__point p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Chat window */
.chat-window {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.chat-window__header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-window__avatar {
  width: 32px;
  height: 32px;
  background: var(--lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  color: #000;
  flex-shrink: 0;
}

.chat-window__name {
  font-size: 14px;
  font-weight: 600;
}

.chat-window__status {
  font-size: 12px;
  color: var(--lime);
}

.chat-window__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Messages */
.msg {
  max-width: 85%;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.6;
}

.msg--user {
  background: rgba(198, 240, 0, 0.1);
  border: 1px solid rgba(198, 240, 0, 0.2);
  color: var(--text);
  align-self: flex-end;
  border-radius: 10px 2px 10px 10px;
}

.msg--byta {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  align-self: flex-start;
  border-radius: 2px 10px 10px 10px;
}

@media (max-width: 768px) {
  .rag__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
