.CG_message--results {
  max-width: min(100%, 980px);
  width: 100%;
  padding: 0;
  background: transparent;
  color: var(--text);
  box-shadow: none;
  border-radius: 0;
}

.CG_message--system.CG_message--results {
  background: transparent;
  color: var(--text);
}

.RB_resultado {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.RB_resultado__lista {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.RB_resultado__item {
  display: grid;
  grid-template-columns: 33% minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.RB_resultado__indice {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 150px;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--brand);
  font-size: 18px;
  font-weight: 700;
}

.RB_resultado__contenido {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  padding: 20px;
}

.RB_resultado__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.RB_resultado__tituloWrap {
  min-width: 0;
}

.RB_resultado__titulo {
  color: #0f172a;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.15;
}

.RB_resultado__operacion {
  margin-top: 4px;
  color: #475569;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.RB_resultado__precio {
  color: #0f172a;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.RB_resultado__detalles,
.RB_resultado__ubicacion {
  color: #334155;
  font-size: 15px;
  line-height: 1.5;
}

.RB_resultado__ubicacion {
  color: #64748b;
}

@media (max-width: 640px) {
  .CG_message--results,
  .CG_message--system.CG_message--results {
    align-self: stretch;
    max-width: 100%;
    width: 100%;
  }

  .RB_resultado__item {
    grid-template-columns: 80px 1fr;
    gap: 14px;
    padding: 16px;
  }

  .RB_resultado__indice {
    width: 100%;
    height: 80px;
    font-size: 16px;
  }

  .RB_resultado__header {
    flex-direction: column;
    gap: 10px;
  }

  .RB_resultado__titulo {
    font-size: 18px;
  }

  .RB_resultado__precio {
    font-size: 20px;
  }
}
